/*====================================================
LONGAFIVI COMPANY LIMITED
Premium Corporate Website
Theme Color : #008C32
====================================================*/


/*==============================
ROOT VARIABLES
==============================*/

:root{

--primary:#008C32;
--primary-dark:#006d27;
--secondary:#000000;
--white:#ffffff;
--light:#f8f9fa;
--gray:#6c757d;
--dark:#222222;
--gold:#d4af37;

--shadow:0 15px 45px rgba(0,0,0,.12);

--radius:18px;

--transition:.4s ease;

}




/*==============================
RESET
==============================*/

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Inter',sans-serif;
font-size:16px;
line-height:1.8;
color:#444;
background:#fff;
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

transition:var(--transition);

}

ul{

list-style:none;

padding:0;

margin:0;

}

.section-padding{

padding:120px 0;

}

.container{

max-width:1320px;

}


/*==============================
TYPOGRAPHY
==============================*/

h1,h2,h3,h4,h5{

font-family:'Poppins',sans-serif;
font-weight:700;
color:#111;

}

h1{

font-size:70px;
line-height:1.15;

}

h2{

font-size:48px;
margin-bottom:20px;

}

h3{

font-size:34px;

}

p{

color:#666;

}

.subtitle{

display:inline-block;

color:var(--primary);

font-weight:700;

letter-spacing:2px;

margin-bottom:15px;

text-transform:uppercase;

}


/*==============================
SCROLLBAR
==============================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:var(--primary);

border-radius:50px;

}

::-webkit-scrollbar-track{

background:#eee;

}


/*==============================
BUTTONS
==============================*/

.btn-brand{

background:var(--primary);

color:#fff;

padding:14px 35px;

border-radius:50px;

font-weight:600;

transition:.4s;

border:none;

}

.btn-brand:hover{

background:#000;

color:#fff;

transform:translateY(-4px);

box-shadow:0 15px 35px rgba(0,0,0,.2);

}

.btn-outline-light{

padding:14px 35px;

border-radius:50px;

font-weight:600;

}


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

.top-bar{

background:#000;

color:#fff;

padding:10px 0;

font-size:14px;

}

.top-contact{

display:flex;

gap:30px;

}

.top-contact i{

color:var(--primary);

margin-right:8px;

}

.top-social{

display:flex;

justify-content:flex-end;

gap:12px;

}

.top-social a{

width:36px;

height:36px;

background:rgba(255,255,255,.08);

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

color:#fff;

}

.top-social a:hover{

background:var(--primary);

transform:translateY(-3px);

}


/*==============================
NAVBAR
==============================*/

.navbar{

padding:20px 0;

transition:.4s;

z-index:999;

}

.navbar.scrolled{

background:#fff;

box-shadow:0 10px 40px rgba(0,0,0,.08);

padding:12px 0;

}

.navbar-brand img{

height:60px;

transition:.4s;

}

.nav-link{

font-weight:600;

margin-left:25px;

color:#fff;

position:relative;

}

.navbar.scrolled .nav-link{

color:#222;

}

.nav-link::after{

content:"";

position:absolute;

left:0;

bottom:-6px;

width:0;

height:2px;

background:var(--primary);

transition:.4s;

}

.nav-link:hover::after,

.nav-link.active::after{

width:100%;

}

.navbar-toggler{

border:none;

box-shadow:none;

color:#fff;

}

.navbar.scrolled .navbar-toggler{

color:#000;

}


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

.hero-section{

height:100vh;

position:relative;

overflow:hidden;

}

.heroSwiper{

width:100%;

height:100vh;

}

.swiper-slide{

position:relative;

}

.hero-image{

width:100%;

height:100vh;

object-fit:cover;

transform:scale(1);

animation:zoomHero 12s linear infinite;

}

.overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:
linear-gradient(
90deg,
rgba(0,0,0,.75),
rgba(0,140,50,.35)
);

z-index:1;

}

.hero-content{

position:absolute;

top:50%;

left:0;

transform:translateY(-50%);

max-width:760px;

z-index:10;

color:#fff;

}

.hero-content h5{

color:#fff;

letter-spacing:3px;

font-size:18px;

margin-bottom:20px;

}

.hero-content h1{

color:#fff;

font-size:72px;

font-weight:800;

margin-bottom:30px;

}

.hero-content p{

font-size:20px;

color:#fff;

margin-bottom:40px;

max-width:620px;

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}


/*==============================
SWIPER
==============================*/

.swiper-button-next,

.swiper-button-prev{

color:#fff;

width:55px;

height:55px;

background:rgba(255,255,255,.12);

border-radius:50%;

backdrop-filter:blur(8px);

}

.swiper-button-next:hover,

.swiper-button-prev:hover{

background:var(--primary);

}

.swiper-pagination-bullet{

background:#fff;

opacity:.6;

}

.swiper-pagination-bullet-active{

background:var(--primary);

opacity:1;

}


/*==============================
ANIMATIONS
==============================*/

@keyframes zoomHero{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

.floating{

animation:float 4s infinite;

}

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

.about{
    background:#fff;
    position:relative;
}

.about-image{
    position:relative;
}

.about-image img{
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    transition:.5s;
}

.about-image img:hover{
    transform:scale(1.03);
}

.experience-card{
    position:absolute;
    right:-20px;
    bottom:40px;
    width:180px;
    background:var(--primary);
    color:#fff;
    text-align:center;
    border-radius:20px;
    padding:25px;
    box-shadow:0 20px 45px rgba(0,0,0,.2);
}

.experience-card h2{
    color:#fff;
    font-size:48px;
    margin-bottom:5px;
}

.experience-card span{
    font-size:15px;
    letter-spacing:1px;
}

.about-features{
    margin-top:35px;
}

.feature{
    display:flex;
    align-items:center;
    margin-bottom:18px;
    font-weight:600;
    color:#333;
}

.feature i{
    color:var(--primary);
    margin-right:15px;
    font-size:20px;
}


/*====================================================
STATISTICS
====================================================*/

.stats-section{
    background:#0d1117;
    color:#fff;
    padding:90px 0;
}

.stat-card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(10px);
    border-radius:20px;
    text-align:center;
    padding:45px 25px;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.stat-card:hover{
    transform:translateY(-12px);
    background:var(--primary);
}

.stat-card i{
    font-size:48px;
    margin-bottom:20px;
    color:#fff;
}

.stat-card h2{
    font-size:54px;
    color:#fff;
    margin-bottom:10px;
}

.stat-card span{
    font-size:26px;
    font-weight:700;
    color:#fff;
}

.stat-card p{
    color:#ddd;
    margin:0;
}


/*====================================================
CEO SECTION
====================================================*/

.ceo-section{
    background:#f8fafc;
}

.ceo-section img{
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.ceo-section .lead{
    font-size:24px;
    color:var(--primary);
    font-style:italic;
    margin:30px 0;
    line-height:1.6;
}

.signature{
    margin-top:40px;
    padding-left:25px;
    border-left:5px solid var(--primary);
}

.signature h5{
    margin-bottom:5px;
    color:#111;
}

.signature span{
    color:#666;
    font-weight:500;
}


/*====================================================
VISION • MISSION • VALUES
====================================================*/

.vmv{
    background:#fff;
}

.vmv-card{
    background:#fff;
    border-radius:24px;
    padding:45px 35px;
    text-align:center;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
    position:relative;
    overflow:hidden;
}

.vmv-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:var(--primary);
}

.vmv-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.vmv-card i{
    width:90px;
    height:90px;
    background:linear-gradient(135deg,var(--primary),#00b44d);
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 30px;
    font-size:34px;
}

.vmv-card h3{
    margin-bottom:20px;
}

.vmv-card p{
    color:#666;
}

.values-list{
    margin-top:25px;
}

.values-list li{
    padding:10px 0;
    border-bottom:1px solid #eee;
    font-weight:500;
}

.values-list li:last-child{
    border-bottom:none;
}


/*====================================================
SECTION TITLES
====================================================*/

.section-title{
    margin-bottom:35px;
}

.section-title h2{
    font-size:46px;
    line-height:1.2;
}

.section-description{
    max-width:700px;
    margin:0 auto;
    color:#777;
    font-size:18px;
}


/*====================================================
GLASS CARD
====================================================*/

.glass-card{
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.3);
    border-radius:22px;
    padding:40px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}


/*====================================================
IMAGE HOVER
====================================================*/

.zoom-image{
    overflow:hidden;
    border-radius:20px;
}

.zoom-image img{
    transition:.6s;
}

.zoom-image:hover img{
    transform:scale(1.08);
}


/*====================================================
DECORATIVE SHAPES
====================================================*/

.circle-shape{
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(0,140,50,.08);
    filter:blur(10px);
    z-index:-1;
}

.circle-one{
    top:-120px;
    left:-120px;
}

.circle-two{
    right:-120px;
    bottom:-120px;
}


/*====================================================
ANIMATED UNDERLINE
====================================================*/

.title-line{
    width:80px;
    height:4px;
    background:var(--primary);
    margin:20px auto 0;
    border-radius:20px;
}


/*====================================================
SMOOTH TRANSITIONS
====================================================*/

.about,
.stats-section,
.ceo-section,
.vmv{
    transition:all .4s ease;
}
/*====================================================
SERVICES SECTION
====================================================*/

.services{
    background:#f8fafc;
    position:relative;
}

.service-card{
    background:#ffffff;
    border-radius:22px;
    padding:40px 30px;
    text-align:center;
    transition:all .4s ease;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    position:relative;
    overflow:hidden;
    height:100%;
    border:1px solid #eef1f5;
}

.service-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:var(--primary);
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 70px rgba(0,0,0,.12);
}

.service-icon{
    width:90px;
    height:90px;
    margin:0 auto 30px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,var(--primary),#00b44d);
    color:#fff;
    font-size:34px;
    transition:.4s;
}

.service-card:hover .service-icon{
    transform:rotateY(180deg);
}

.service-card h4{
    margin-bottom:18px;
    color:#111;
}

.service-card p{
    color:#666;
    margin-bottom:0;
    font-size:15px;
    line-height:1.8;
}


/*====================================================
FEATURED AGRIBUSINESS CARD
====================================================*/

.featured-service{
    background:linear-gradient(135deg,#008C32,#0a6f2d);
    color:#fff;
}

.featured-service h4,
.featured-service p{
    color:#fff;
}

.featured-service .service-icon{
    background:#ffffff;
    color:var(--primary);
}

.featured-service::after{
    content:"NEW";
    position:absolute;
    top:18px;
    right:-36px;
    background:#FFD54F;
    color:#111;
    font-weight:700;
    padding:8px 40px;
    transform:rotate(45deg);
    font-size:12px;
}


/*====================================================
INDUSTRIES
====================================================*/

.industries{
    background:#fff;
}

.industry-card{
    background:#ffffff;
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    font-weight:600;
    color:#333;
    height:100%;
}

.industry-card:hover{
    background:var(--primary);
    color:#fff;
    transform:translateY(-10px);
}

.industry-card i{
    display:block;
    font-size:42px;
    margin-bottom:18px;
    color:var(--primary);
    transition:.4s;
}

.industry-card:hover i{
    color:#fff;
}


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

.why-us{
    background:#0d1117;
    color:#fff;
}

.why-us h2,
.why-us .subtitle{
    color:#fff;
}

.why-us img{
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.why-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-top:28px;
    padding:20px;
    border-radius:18px;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(8px);
    transition:.4s;
}

.why-item:hover{
    background:rgba(0,140,50,.25);
    transform:translateX(8px);
}

.why-item i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    flex-shrink:0;
}

.why-item h5{
    color:#fff;
    margin-bottom:8px;
}

.why-item p{
    color:#d8d8d8;
    margin-bottom:0;
}


/*====================================================
SECTION BACKGROUND DECORATION
====================================================*/

.services::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(0,140,50,.05);
    right:-120px;
    top:80px;
    z-index:0;
}

.services .container,
.industries .container,
.why-us .container{
    position:relative;
    z-index:2;
}


/*====================================================
CARD HOVER GLOW
====================================================*/

.service-card:hover,
.industry-card:hover{
    box-shadow:
        0 20px 60px rgba(0,140,50,.18),
        0 10px 25px rgba(0,0,0,.08);
}


/*====================================================
ICON ANIMATION
====================================================*/

.service-icon i,
.industry-card i{
    transition:transform .5s ease;
}

.service-card:hover .service-icon i{
    transform:scale(1.15);
}

.industry-card:hover i{
    transform:scale(1.12);
}


/*====================================================
RESPONSIVE ADJUSTMENTS
====================================================*/

@media(max-width:991px){

.service-card{
    padding:30px 25px;
}

.why-item{
    flex-direction:column;
    text-align:center;
}

.why-item i{
    margin:auto;
}

}

@media(max-width:767px){

.service-icon{
    width:75px;
    height:75px;
    font-size:28px;
}

.industry-card{
    padding:25px 15px;
}

.featured-service::after{
    font-size:10px;
    padding:6px 34px;
}

}

/*====================================================
QUALITY SECTION
====================================================*/

.quality-section{
    background:linear-gradient(135deg,#f8fafc,#ffffff);
}

.quality-section img{
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    transition:.4s;
}

.quality-section img:hover{
    transform:scale(1.03);
}

.quality-section p{
    margin-bottom:20px;
}


/*====================================================
CERTIFICATES
====================================================*/

.certificates{
    background:#ffffff;
}

.certificate-card{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 15px 45px rgba(0,0,0,.10);
    cursor:pointer;
}

.certificate-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:.6s;
}

.certificate-card:hover img{
    transform:scale(1.08);
}

.certificate-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:25px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.88)
    );
    color:#fff;
}

.certificate-overlay h5{
    color:#fff;
    margin:0;
}


/*====================================================
CONTACT
====================================================*/

.contact{
    background:#f8fafc;
}

.contact-info{
    margin-top:35px;
}

.contact-item{
    display:flex;
    gap:20px;
    margin-bottom:28px;
    align-items:flex-start;
}

.contact-item i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    flex-shrink:0;
}

.contact-item h5{
    margin-bottom:5px;
}

.contact-form{
    background:#fff;
    padding:45px;
    border-radius:22px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.contact-form .form-control{
    border-radius:14px;
    padding:16px 18px;
    border:1px solid #d9d9d9;
    margin-bottom:18px;
    box-shadow:none;
}

.contact-form .form-control:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 .2rem rgba(0,140,50,.15);
}


/*====================================================
MAP
====================================================*/

.map-section iframe{
    width:100%;
    height:500px;
    border:0;
    display:block;
}


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

footer{
    background:#000;
    color:#d9d9d9;
    padding:90px 0 30px;
}

.footer-logo{
    max-height:70px;
    margin-bottom:25px;
}

footer h5{
    color:#fff;
    margin-bottom:25px;
}

footer ul li{
    margin-bottom:12px;
}

footer ul li a{
    color:#d9d9d9;
    transition:.3s;
}

footer ul li a:hover{
    color:var(--primary);
    padding-left:8px;
}

.newsletter{
    display:flex;
    margin-top:20px;
}

.newsletter input{
    flex:1;
    border:none;
    padding:15px;
    border-radius:50px 0 0 50px;
    outline:none;
}

.newsletter button{
    border:none;
    background:var(--primary);
    color:#fff;
    padding:0 28px;
    border-radius:0 50px 50px 0;
    transition:.3s;
}

.newsletter button:hover{
    background:var(--gold);
    color:#111;
}

footer hr{
    border-color:rgba(255,255,255,.08);
    margin:50px 0 25px;
}

.copyright{
    text-align:center;
}

.copyright p{
    color:#aaa;
    margin:0;
}


/*====================================================
FLOATING BUTTONS
====================================================*/

.whatsapp-btn,
.back-to-top{

position:fixed;
right:25px;
width:58px;
height:58px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:24px;
z-index:999;
transition:.4s;
box-shadow:0 12px 35px rgba(0,0,0,.20);

}

.whatsapp-btn{

background:#25D366;
bottom:100px;

}

.back-to-top{

background:var(--primary);
bottom:30px;

}

.whatsapp-btn:hover,
.back-to-top:hover{

transform:translateY(-6px);

}


/*====================================================
ANIMATION HELPERS
====================================================*/

.fade-up{

opacity:0;
transform:translateY(40px);
transition:.7s;

}

.fade-up.show{

opacity:1;
transform:translateY(0);

}

.shadow-hover{

transition:.4s;

}

.shadow-hover:hover{

box-shadow:0 25px 70px rgba(0,0,0,.15);

}


/*====================================================
RESPONSIVE
====================================================*/

@media (max-width:1200px){

.hero-content h1{
font-size:60px;
}

}

@media (max-width:992px){

.section-padding{
padding:90px 0;
}

.hero-content{
max-width:100%;
padding:0 20px;
}

.hero-content h1{
font-size:48px;
}

.hero-content p{
font-size:18px;
}

.navbar{
background:#000;
}

.contact-form{
margin-top:40px;
}

.experience-card{
right:20px;
bottom:20px;
}

}

@media (max-width:768px){

h2{
font-size:34px;
}

.hero-content h1{
font-size:38px;
}

.hero-content p{
font-size:17px;
}

.hero-buttons{
flex-direction:column;
}

.top-bar{
display:none;
}

.newsletter{
flex-direction:column;
gap:15px;
}

.newsletter input,
.newsletter button{
border-radius:50px;
width:100%;
}

.contact-form{
padding:30px;
}

.whatsapp-btn,
.back-to-top{

width:50px;
height:50px;
font-size:20px;

}

}

@media (max-width:576px){

.section-padding{
padding:70px 0;
}

.hero-content h1{
font-size:30px;
}

.subtitle{
font-size:13px;
}

.btn-brand{

padding:12px 24px;

}

.service-card,
.vmv-card,
.contact-form{

padding:25px;

}

}

/*====================================================
END OF STYLE.CSS
====================================================*/
