

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#fff8f2;
color:#333;
}


/* ABOUT SECTION */

.about-section{
padding:90px 10%;
}

.about-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
flex-wrap:wrap;
}

.about-image img{
width:100%;
max-width:450px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.about-content{
max-width:600px;
}

.about-content h1{
font-size:36px;
color:#86c227;
margin-bottom:20px;
}

.about-content p{
font-size:15px;
line-height:1.9;
margin-bottom:18px;
color:#555;
}

.about-btn{
display:inline-block;
margin-top:15px;
padding:12px 28px;
background:#86c227;
color:#fff;
text-decoration:none;
border-radius:30px;
font-size:14px;
transition:.3s;
}

.about-btn:hover{
background:#a93226;
}


/* MISSION */

/* MISSION SECTION */

.mission{
background:#f9f9f9;
padding:80px 10%;
}

/* FLEX CONTAINER */

.mission-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:50px;
flex-wrap:wrap;
}

/* IMAGE */

.mission-img{
flex:1;
}

.mission-img img{
width:100%;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
transition:0.4s;
}

.mission-img img:hover{
transform:scale(1.03);
}

/* CONTENT */

.mission-content{
flex:1;
}

.mission-content h2{
font-size:34px;
color:#86c227;
margin-bottom:20px;
}

.mission-content p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:15px;
}

/* BUTTON */

.mission-btn{
background:#86c227;
color:#fff;
border:none;
padding:12px 25px;
border-radius:30px;
cursor:pointer;
font-size:14px;
transition:0.3s;
}

.mission-btn:hover{
background:#6ea91d;
transform:translateY(-2px);
}

/* RESPONSIVE */

@media(max-width:768px){

.mission-container{
flex-direction:column;
text-align:center;
}

.mission-content h2{
font-size:28px;
}

}


/* BRAND SECTION */

.brand-section{
padding:80px 10%;
background:#fff8f2;
}

.brand-title{
text-align:center;
margin-bottom:50px;
}

.brand-title h2{
font-size:32px;
color:#86c227;
}

.brand-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.brand-card{
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.3s;
}

.brand-card:hover{
transform:translateY(-6px);
}

.brand-card h3{
color:#86c227;
margin-bottom:15px;
font-size:20px;
}

.brand-card p{
font-size:14px;
line-height:1.8;
color:#555;
}


/* PROMOTER SECTION */

.promoter{
padding:80px 10%;
background:#f3f3f3;
}

.promoter-container{
display:flex;
gap:40px;
align-items:center;
flex-wrap:wrap;
}

.promoter-img{
background:#fff;
padding:20px;
text-align:center;
box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.promoter-img img{
width:260px;
height:300px;
object-fit:cover;
}

.promoter-img h3{
margin-top:15px;
font-size:20px;
}

.promoter-img span{
font-size:14px;
color:#777;
}

.promoter-text{
flex:1;
}

.promoter-text h2{
margin-bottom:15px;
font-size:24px;
}

.promoter-text p{
line-height:1.8;
margin-bottom:12px;
color:#555;
}


/* TEAM SECTION */

.team{
padding:90px 10%;
text-align:center;
background:#fff;
}

.team h2{
font-size:32px;
margin-bottom:50px;
}

.team-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}


/* FLIP CARD */

.flip-card{
background:transparent;
width:100%;
height:320px;
perspective:1000px;
}

.flip-card-inner{
position:relative;
width:100%;
height:100%;
transition:transform 0.8s;
transform-style:preserve-3d;
}

.flip-card:hover .flip-card-inner{
transform:rotateY(180deg);
}

.flip-card-front,
.flip-card-back{
position:absolute;
width:100%;
height:100%;
backface-visibility:hidden;
background:#fff;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.1);
padding:20px;
}

/* FRONT IMAGE */

.flip-card-front{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
}

.flip-card-front img{
width:140px;
height:140px;
border-radius:50%;
object-fit:cover;
margin-bottom:15px;
}

.flip-card-front h3{
font-size:18px;
margin-bottom:5px;
}

.flip-card-front p{
font-size:13px;
color:#777;
}

/* BACK SIDE */

.flip-card-back{
transform:rotateY(180deg);
display:flex;
flex-direction:column;
padding:20px;
overflow-y:auto;   /* SCROLL ENABLE */
}

/* SCROLLBAR STYLE */

.flip-card-back::-webkit-scrollbar{
width:6px;
}

.flip-card-back::-webkit-scrollbar-thumb{
background:#999;
border-radius:10px;
}

.flip-card-back h3{
margin-bottom:10px;
}

.flip-card-back p{
font-size:14px;
line-height:1.7;
color:#555;
}
/* RESPONSIVE */

@media(max-width:900px){

.about-container{
flex-direction:column;
text-align:center;
}

.promoter-container{
flex-direction:column;
text-align:center;
}

.about-image img{
max-width:350px;
}

}

