html, body{
overflow-x:hidden;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins;
}

body{
background:#fff;
color:#222;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.navbar{
position:absolute;
top:0;
width:100%;
z-index:1000;
padding:20px 0;
transition:all 0.3s ease;
}

.navbar.scrolled{
position:fixed;
top:0;
background:#4e5e40e6;
backdrop-filter:blur(10px);
padding:15px 0;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.nav-flex{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
color:#fff;
font-size:28px;
font-weight:600;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:30px;
}

nav ul li a{
color:#fff;
text-decoration:none;
font-weight:500;
}

.hero{
height:100vh;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.4);
z-index:-1;
}

.hero-content h1{
font-size:70px;
}

.hero-content p{
font-size:24px;
margin:20px 0;
}

.hero-btn{
padding:12px 28px;
background:#fbc734;
color:#1a1a1a;
text-decoration:none;
border-radius:30px;
}

.about{
padding:100px 0;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about img{
width:100%;
border-radius:10px;
}

.products{
padding:100px 0;
text-align:center;
}

.product-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
margin-top:40px;
}

.product-card{
background:#fafafa;
padding:20px;
border-radius:10px;
}

.product-card img{
width:100%;
border-radius:10px;
}

.gallery{
padding:80px 0;
text-align:center;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:30px;
}

.gallery-grid img{
width:100%;
border-radius:8px;
}

.cta{
background:#2e7d32;
color:white;
text-align:center;
padding:80px 20px;
}

footer{
background:#111;
color:white;
text-align:center;
padding:20px;
}

.about-section{
margin-top:30px;
padding:70px 0;
background:#f9fafb;
}

.about-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:18px;
box-shadow:0 20px 50px rgba(0,0,0,0.15);
transition:transform .4s ease;
}

.about-image img:hover{
transform:scale(1.05);
}

.about-content h2{
font-size:42px;
margin-bottom:20px;
color:#1a1a1a;
}

.about-lead{
font-size:20px;
font-weight:500;
color:#2e7d32;
margin-bottom:15px;
}

.about-content p{
font-size:16px;
line-height:1.7;
color:#555;
margin-bottom:25px;
}

.about-features{
display:flex;
gap:25px;
margin-bottom:35px;
}

.feature{
display:flex;
align-items:center;
gap:10px;
background:white;
padding:10px 15px;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.feature span{
font-size:22px;
}

.feature p{
margin:0;
font-size:14px;
font-weight:500;
}

.about-btn{
display:inline-block;
background:#f4a300;
color:white;
padding:14px 32px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:all .3s ease;
}

.about-btn:hover{
background:#d78e00;
transform:translateY(-2px);
}

.products-section{
padding:70px 0;
background:linear-gradient(180deg,#ffffff,#f7f9f7);
}

.section-header{
text-align:center;
margin-bottom:70px;
}

.section-header h2{
font-size:42px;
color:#1b1b1b;
margin-bottom:10px;
}

.section-header p{
color:#666;
font-size:18px;
}

.products-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:50px;
}

.product-card{
background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 20px 45px rgba(0,0,0,0.08);
transition:all .35s ease;
}

.product-card:hover{
transform:translateY(-10px);
box-shadow:0 30px 60px rgba(0,0,0,0.15);
}

.product-image{
position:relative;
overflow:hidden;
}

.product-image img{
width:100%;
height:280px;
object-fit:cover;
transition:transform .5s ease;
}

.product-card:hover img{
transform:scale(1.08);
}

.product-tag{
position:absolute;
top:15px;
left:15px;
background:#2e7d32;
color:white;
padding:6px 14px;
border-radius:20px;
font-size:13px;
font-weight:500;
}

.product-tag.ripe{
background:#f4a300;
}

.product-info{
padding:25px;
text-align:center;
}

.product-info h3{
font-size:22px;
margin-bottom:10px;
color:#1a1a1a;
}

.product-info p{
font-size:15px;
color:#555;
margin-bottom:18px;
}

.product-btn{
display:inline-block;
padding:10px 22px;
background:#2e7d32;
color:white;
border-radius:25px;
text-decoration:none;
font-size:14px;
font-weight:500;
transition:all .3s ease;
}

.product-btn:hover{
background:#256628;
transform:translateY(-2px);
}


.gallery-section{
margin-top:30px;
padding:60px 0;
background:#fafafa;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:50px;
}

.gallery-item{
position:relative;
overflow:hidden;
border-radius:14px;
}

.gallery-item img{
width:100%;
height:250px;
object-fit:cover;
transition:transform .5s ease;
}

.gallery-item:hover img{
transform:scale(1.1);
}

.gallery-overlay{
position:absolute;
bottom:0;
left:0;
right:0;
background:linear-gradient(transparent,rgba(0,0,0,0.7));
color:white;
padding:20px;
opacity:0;
transition:.4s;
}

.gallery-item:hover .gallery-overlay{
opacity:1;
}


.cta-section{
padding:120px 20px;
background:#2e7d32;
text-align:center;
color:white;
}

.cta-content h2{
font-size:42px;
margin-bottom:15px;
}

.cta-content p{
max-width:650px;
margin:auto;
margin-bottom:35px;
font-size:18px;
}

.cta-buttons{
display:flex;
justify-content:center;
gap:20px;
}

.cta-primary{
background:#f4a300;
padding:14px 32px;
border-radius:30px;
color:white;
text-decoration:none;
font-weight:600;
}

.cta-secondary{
border:2px solid white;
padding:12px 30px;
border-radius:30px;
color:white;
text-decoration:none;
}

.cta-primary:hover{
background:#d78e00;
}

.cta-secondary:hover{
background:white;
color:#222;
}


.footer{
background:#111;
color:#ddd;
padding:70px 0 20px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.footer h3{
color:white;
margin-bottom:10px;
}

.footer h4{
margin-bottom:15px;
color:white;
}

.footer-links ul{
list-style:none;
}

.footer-links a{
color:#ccc;
text-decoration:none;
line-height:30px;
}

.footer-links a:hover{
color:#f4a300;
}

.footer-bottom{
text-align:center;
margin-top:40px;
border-top:1px solid #333;
padding-top:20px;
font-size:14px;
}

html{
scroll-behavior:smooth;
}



/* MOBILE MENU */

.menu-toggle{
display:none;
font-size:28px;
color:white;
cursor:pointer;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}


/* TABLET */

@media (max-width: 992px){

.about-wrapper{
grid-template-columns:1fr;
gap:40px;
}

.products-grid{
grid-template-columns:1fr;
}

.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

.footer-grid{
grid-template-columns:1fr 1fr;
}

.hero-content h1{
font-size:50px;
}

}


/* MOBILE */

@media (max-width: 768px){

.menu-toggle{
display:block;
}

nav ul{
position:absolute;
top:70px;
left:0;
width:100%;
background:#111;
flex-direction:column;
align-items:center;
display:none;
padding:20px 0;
}

nav ul.active{
display:flex;
}

nav ul li{
margin:10px 0;
}

.hero-content h1{
font-size:38px;
}

.hero-content p{
font-size:18px;
}

.about-section{
padding:80px 20px;
}

.products-section{
padding:80px 20px;
}

.gallery-grid{
grid-template-columns:1fr;
}

.cta-content h2{
font-size:32px;
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

}


/* SMALL MOBILE */

@media (max-width:480px){

.hero-content h1{
font-size:32px;
}

.section-header h2{
font-size:30px;
}

.product-image img{
height:220px;
}

}

@media (max-width:768px){

.about-section{
padding:80px 20px;
}

.about-wrapper{
grid-template-columns:1fr;
gap:30px;
}

.about-content h2{
font-size:30px;
}

.about-lead{
font-size:18px;
}

.about-features{
flex-direction:column;
gap:15px;
}

.feature{
width:100%;
}

.about-btn{
padding:12px 24px;
font-size:14px;
}

}

@media (max-width:992px){

.about-wrapper{
grid-template-columns:1fr;
gap:40px;
}

.about-image{
order:1;
}

.about-content{
order:2;
}

.about-content h2{
font-size:36px;
}

.about-features{
flex-wrap:wrap;
}

}

@media (max-width:480px){

.about-content h2{
font-size:26px;
}

.about-content p{
font-size:14px;
}

.about-lead{
font-size:16px;
}

}

.logo img{
height:60px;
width:auto;
display:block;
}

.whatsapp-button{
position:fixed;
bottom:24px;
right:24px;

display:flex;
align-items:center;
gap:10px;

background:#25D366;
color:white;

padding:10px 16px;
border-radius:50px;

font-size:14px;
font-weight:500;
text-decoration:none;

box-shadow:0 8px 20px rgba(0,0,0,0.25);
transition:all .25s ease;

z-index:9999;
}

.whatsapp-button:hover{
background:#20bd5a;
transform:translateY(-2px);
}

.wa-icon{
width:32px;
height:32px;

background:white;
border-radius:50%;

display:flex;
align-items:center;
justify-content:center;
}

.wa-icon img{
width:18px;
height:18px;
}

.mango-features{
text-align:center;
margin-bottom:40px;
font-weight:500;
color:#444;
}

.mango-features p{
margin:6px 0;
}

.product-points{
text-align:left;
margin-top:10px;
padding-left:18px;
color:#555;
}

.product-points li{
margin:5px 0;
}

.season-tag{
position:absolute;
bottom:15px;
right:15px;
background:#e53935;
color:white;
padding:6px 12px;
font-size:12px;
border-radius:20px;
font-weight:500;
}


.mango-features-slider{
overflow:hidden;
margin:40px auto;
background:#f7f9f7;
padding:20px 0;
border-radius:12px;
max-width:100%;
}

.features-track{
display:flex;
gap:40px;
animation:scrollFeatures 25s linear infinite;
}

.feature-item{
display:flex;
align-items:center;
gap:10px;
background:white;
padding:10px 18px;
border-radius:30px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
font-size:15px;
font-weight:500;
color:#333;
}

.feature-item img{
width:24px;
height:24px;
}

@keyframes scrollFeatures{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}

.mango-features-slider:hover .features-track{
animation-play-state:paused;
}

.hero-badge{
margin-bottom:20px;
display:flex;
justify-content:center;
}

.hero-badge img{
width:150px;
height:150px;
object-fit:contain;
border-radius:50%;
background:rgba(255,255,255,0.9);
padding:8px;
box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

@media (max-width:768px){

.hero-badge img{
width:110px;
height:110px;
}

}

.hero-badge img{
animation:floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge{
0%{transform:translateY(0);}
50%{transform:translateY(-8px);}
100%{transform:translateY(0);}
}

@media (max-width:768px){

.menu-toggle{
display:block;
font-size:28px;
color:white;
cursor:pointer;
}

nav ul{
position:absolute;
top:70px;
left:0;
width:100%;
background:#6f8184;

flex-direction:column;
align-items:center;

display:none;

padding:20px 0;
gap:14px;

box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

nav ul.active{
display:flex;
}

nav ul li{
margin:0;
}

nav ul li a{
font-size:17px;
font-weight:500;
color:white;
padding:4px 0;
display:block;
}

nav ul li a:hover{
color:#ffd54f;
}

}

@media (max-width:768px){

.navbar{
padding:12px 0;
}

.logo img{
height:48px;
}

}

nav ul{
transition:all 0.3s ease;
}

.menu-toggle{
display:none;
flex-direction:column;
justify-content:center;
align-items:flex-end;
cursor:pointer;
gap:5px;
}

.menu-toggle span{
display:block;
width:26px;
height:3px;
background:white;
border-radius:2px;
}

@media (max-width:768px){

.menu-toggle{
display:flex;
margin-left:auto;
}

}

.hero-content h1{
font-size:65px;
margin-bottom:10px;
margin-top:0;
}

.hero-content p{
font-size:19px;
margin-top:0;
margin-bottom:20px;
line-height:1.4;
}

.hero-badge{
margin-bottom:10px;
display:flex;
justify-content:center;
}

.feature-item{
flex-shrink:0;
}

.footer{
background:#151b22;
color:#d7d7d7;
padding:80px 0 20px;
}

.footer-main{
display:grid;
grid-template-columns:2fr 1fr 1fr 1.2fr;
gap:50px;
align-items:flex-start;
}

.footer-logo{
display:flex;
align-items:center;
gap:14px;
margin-bottom:20px;
}

.footer-logo img{
width:60px;
height:60px;
border-radius:50%;
object-fit:cover;
}

.footer-logo h3{
font-size:34px;
color:#fff;
margin:0;
}

.footer-brand p{
line-height:1.8;
color:#cfcfcf;
margin-bottom:30px;
max-width:450px;
}

.footer-socials{
display:flex;
gap:14px;
flex-wrap:wrap;
}

.footer-socials a{
text-decoration:none;
color:white;
background:#223028;
padding:10px 16px;
border-radius:30px;
font-size:14px;
transition:.3s;
}

.footer-socials a:hover{
background:#f4a300;
}

.footer-column h4{
font-size:24px;
color:#fff;
margin-bottom:20px;
position:relative;
}

.footer-column h4::after{
content:"";
position:absolute;
left:0;
bottom:-8px;
width:40px;
height:3px;
background:#f4a300;
border-radius:10px;
}

.footer-column ul{
list-style:none;
padding:0;
}

.footer-column ul li{
margin-bottom:16px;
}

.footer-column ul li a{
color:#d7d7d7;
text-decoration:none;
transition:.3s;
}

.footer-column ul li a:hover{
color:#f4a300;
padding-left:4px;
}

.footer-contact-item{
display:flex;
gap:14px;
margin-bottom:22px;
align-items:flex-start;
}

.footer-contact-item span{
font-size:22px;
}

.footer-contact-item p{
font-size:13px;
color:#aaa;
margin-bottom:4px;
}

.footer-contact-item strong{
color:white;
font-size:15px;
}

.payment-strip{
margin-top:60px;
padding:22px 30px;
border:1px solid rgba(255,255,255,0.08);
border-radius:20px;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
background:rgba(255,255,255,0.03);
}

.payment-left{
font-weight:600;
color:#fff;
}

.payment-methods{
display:flex;
gap:14px;
flex-wrap:wrap;
}

.payment-methods span{
padding:10px 18px;
border:1px solid rgba(255,255,255,0.08);
border-radius:30px;
font-size:14px;
}

.footer-bottom{
text-align:center;
margin-top:40px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,0.08);
font-size:14px;
}

@media (max-width:992px){

.footer-main{
grid-template-columns:1fr;
gap:40px;
}

.payment-strip{
flex-direction:column;
align-items:flex-start;
}

}

/* =========================
LEGAL POLICIES PAGE
Add this in style.css
========================= */

.page-banner{
position:relative;
padding:180px 0 100px;
background:linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
url("../assets/images/mango-farm.jpg");
background-size:cover;
background-position:center;
text-align:center;
color:white;
}

.page-banner-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:1;
}

.page-banner .container{
position:relative;
z-index:2;
}

.page-banner h1{
font-size:56px;
font-weight:700;
margin-bottom:15px;
}

.page-banner p{
font-size:18px;
max-width:700px;
margin:0 auto;
line-height:1.7;
}


/* POLICY TOP NAV */

.policy-nav{
background:#ffffff;
padding:30px 0;
box-shadow:0 8px 30px rgba(0,0,0,0.04);
}

.policy-links{
display:flex;
justify-content:center;
align-items:center;
gap:20px;
flex-wrap:wrap;
}

.policy-links a{
text-decoration:none;
padding:12px 22px;
border-radius:30px;
background:#f8f8f8;
color:#2e2e2e;
font-size:15px;
font-weight:500;
transition:all .3s ease;
border:1px solid #ececec;
}

.policy-links a:hover{
background:#f4a300;
color:white;
border-color:#f4a300;
transform:translateY(-2px);
}


/* POLICY CONTENT */

.policy-page{
padding:80px 0;
background:#fafaf7;
}

.policy-page .container{
max-width:1000px;
background:#ffffff;
padding:60px;
border-radius:20px;
box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

.policy-block{
padding-bottom:50px;
margin-bottom:50px;
border-bottom:1px solid #eeeeee;
}

.policy-block:last-child{
border-bottom:none;
margin-bottom:0;
padding-bottom:0;
}

.policy-block h2{
font-size:36px;
font-weight:700;
color:#1a1a1a;
margin-bottom:20px;
position:relative;
}

.policy-block h2::after{
content:"";
position:absolute;
left:0;
bottom:-10px;
width:60px;
height:4px;
background:#f4a300;
border-radius:20px;
}

.policy-block h3{
font-size:22px;
font-weight:600;
color:#2e7d32;
margin-top:35px;
margin-bottom:12px;
}

.policy-block p{
font-size:16px;
line-height:1.9;
color:#555;
margin-bottom:10px;
}


/* MOBILE RESPONSIVE */

@media (max-width:992px){

.page-banner h1{
font-size:42px;
}

.policy-page .container{
padding:40px;
}

.policy-block h2{
font-size:30px;
}

}

@media (max-width:768px){

.page-banner{
padding:150px 0 80px;
}

.page-banner h1{
font-size:34px;
}

.page-banner p{
font-size:15px;
padding:0 10px;
}

.policy-nav{
padding:20px 0;
}

.policy-links{
gap:12px;
}

.policy-links a{
padding:10px 16px;
font-size:14px;
}

.policy-page{
padding:50px 0;
}

.policy-page .container{
padding:28px 22px;
border-radius:14px;
}

.policy-block{
padding-bottom:35px;
margin-bottom:35px;
}

.policy-block h2{
font-size:26px;
}

.policy-block h3{
font-size:18px;
margin-top:24px;
}

.policy-block p{
font-size:14px;
line-height:1.8;
}

}

@media (max-width:480px){

.page-banner h1{
font-size:28px;
}

.policy-links{
flex-direction:column;
align-items:stretch;
}

.policy-links a{
text-align:center;
}

.policy-block h2{
font-size:22px;
}

}