/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#f4f6f5;
  color:#333;
}

/* ================= HEADER WRAPPER ================= */
header{
  position:fixed;
  top:20px;
  left:0;
  width:100%;
  height: 10%;
  display:flex;
  justify-content:center;
  z-index:1000;
}

/* INNER CONTAINER */
.header-inner{
  width:90%;
  max-width:1200px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 30px;
  border-radius:50px;
  background:transparent;
  color:white;

  transition:all 0.4s ease;
}

/* SCROLL EFFECT */
header.scrolled .header-inner{
  background:white;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* LOGO */
.logo img{
  width:90px;
  margin-top: 1px;
}

/* NAV */
.nav-links{
  display:flex;
  align-items:center;
}

.nav-links a{
  margin:0 18px;
  text-decoration:none;
  color:white;
}

header.scrolled .nav-links a{
  color:#333;
}

/* BUTTON */
.contact-btn{
  padding:10px 20px;
  border-radius:30px;
  background:white;
  color:#39a935;
  border:none;
  cursor:pointer;
}











/* ================= BOTTOM NAV ================= */
.mobile-bottom-nav{
  position:fixed;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  width:90%;
  max-width:420px;

  background:white;
  border-radius:50px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);

  display:none;
  justify-content:space-around;
  padding:12px;
  z-index:1000;
}

.nav-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  font-size:12px;
  cursor:pointer;
}

/* ================= MOBILE ================= */
@media(max-width:900px){

  /* KEEP HEADER */
  header{
    display:flex;
    top:10px;
  }

  .header-inner{
    width:100%;

  }

  /* HIDE DESKTOP NAV */
  .nav-links{
    display:none;
  }

  /* SHOW HAMBURGER */
  .hamburger{
    display:flex;
  }

  /* SMALLER LOGO */
  .logo img{
    width:70px;
  }

  /* SHOW BOTTOM NAV */
  .mobile-bottom-nav{
    display:flex;
  }
}







/* ================= HERO ================= */
.hero{
  background:#39a935;
  color:white;
  min-height:100vh;   /* 🔥 full height */
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  padding:120px 80px 100px;
}

/* CONTAINER */
.hero-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  max-width:1200px;
  margin:auto;
}

/* ================= LEFT ================= */
.hero-content{
  max-width:520px;
  z-index:3;
}

.hero h1{
  font-size:52px;
  line-height:1.2;
  margin-bottom:20px;
}

.hero p{
  font-size:16px;
  opacity:0.9;
  margin-bottom:25px;
}

/* BUTTON */
.btn{
  padding:12px 28px;
  border-radius:30px;
  border:none;
  background:white;
  color:#39a935;
  font-weight:500;
  cursor:pointer;
  transition:0.3s;
}

.btn:hover{
  transform:translateY(-2px);
}

/* ================= RIGHT ================= */
.hero-visual{
  position:relative;
  width:450px;
  height:450px;
}

/* MILK */
.milk-img{
  position:absolute;
  width:100%;
  z-index:2;
  animation:milkFloat 6s ease-in-out infinite;
}

/* LEAVES */
.leaf-img{
  position:absolute;
  width:260px;
  top:10%;
  left:-40px;
  z-index:1;
  opacity:0.8;

  animation:leafFloat 8s ease-in-out infinite;
}

/* ================= ANIMATIONS ================= */
@keyframes milkFloat{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-15px); }
  100%{ transform:translateY(0); }
}

@keyframes leafFloat{
  0%{ transform:translateY(0) rotate(0deg); }
  50%{ transform:translateY(-25px) rotate(4deg); }
  100%{ transform:translateY(0) rotate(0deg); }
}

/* ================= WAVE ================= */
.wave{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
}

/* ================= MOBILE ================= */
@media(max-width:900px){

  .hero{
    padding:120px 20px 100px;
    text-align:center;
  }

  .hero-container{
    flex-direction:column;
    gap:40px;
  }

  

  .hero p{
    font-size:14px;
  }

  .hero-visual{
    width:280px;
    height:280px;
  }

  .leaf-img{
    width:180px;
    left:-20px;
    top:0;
  }
}
/* TRUST BADGE */
.trust-badge{
  display:inline-block;
  background:rgba(255,255,255,0.15);
  padding:8px 14px;
  border-radius:20px;
  font-size:13px;
  margin-bottom:15px;
  backdrop-filter:blur(6px);
}

/* HEADLINE */
.hero h1{
  font-size:54px;
  line-height:1.2;
  font-weight:600;
  margin-bottom:20px;
}

/* HIGHLIGHT */
.hero h1 span{
  color:#dfffe0;
}

/* SUBTEXT */
.hero p{
  font-size:17px;
  opacity:0.95;
  margin-bottom:30px;
  max-width:480px;
}

/* BUTTON GROUP */
.hero-actions{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  margin-bottom:15px;
}

/* PRIMARY CTA */
.btn.primary{
  background:white;
  color:#39a935;
  font-weight:600;
  box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

/* SECONDARY CTA */
.btn.secondary{
  background:transparent;
  border:1px solid white;
  color:white;
}

/* HOVER EFFECT */
.btn.primary:hover{
  transform:translateY(-3px);
}

.btn.secondary:hover{
  background:white;
  color:#39a935;
}

/* SOCIAL PROOF */
.social-proof{
  font-size:13px;
  opacity:0.9;
}

/* MOBILE */
@media(max-width:900px){

  .hero h1{
    font-size:32px;
  }

  .hero p{
    font-size:14px;
  }

  .hero-actions{
    justify-content:center;
  }

  .trust-badge{
    font-size:12px;
  }
}


/* ================= WRAPPER ================= */
.features-section{
  display:flex;
  align-items:center;
  gap:50px;
  background:#f4f6f5;
   position:relative;
  z-index:2;
  margin-bottom: 30px;
}

/* ================= LEFT IMAGE ================= */
.features-image{
  flex:0 0 200px;
}

.features-image img{
  width:100%;
  border-radius:20px;
}

/* ================= FEATURES ================= */
.features{
  display:flex;
  gap:50px;
  flex-wrap:wrap;
}

.feature{
  text-align:center;
  }

/* ICON */
.icon-box{
  width:70px;
  height:70px;
  border-radius:50%;
  background:#e6f4ea;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
  font-size:26px;
  color:#39a935;

  box-shadow:0 10px 25px rgba(57,169,53,0.15);
  transition:0.3s;
}

.feature:hover .icon-box{
  transform:translateY(-5px);
}

/* ================= MOBILE ================= */
@media(max-width:900px){

  .features-section{
    flex-direction:row;
    gap:15px;
    padding:20px 10px;
  }

  /* IMAGE STAYS STATIC */
  .features-image{
    flex:0 0 120px;
  }

  .features-image img{
    height:160px;
    object-fit:cover;
  }

  /* FEATURES SCROLL */
  .features{
    flex-wrap:nowrap;
    overflow-x:auto;
    gap:15px;

    -webkit-overflow-scrolling:touch;
  }

  .features::-webkit-scrollbar{
    display:none;
  }

  .feature{
    flex:0 0 auto;
    min-width:110px;

   
    padding:12px;
    border-radius:16px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
  }

  .icon-box{
    width:55px;
    height:55px;
    font-size:20px;
  }

  .feature p{
    font-size:12px;
  }
}



/* ================= MOBILE ================= */
@media(max-width:900px){

  header{
    padding:15px 20px;
  }

  .logo img{
    width:100px;
    height:50px;
  }

  nav a{
    display:none;
  }

  .hero{
    padding:140px 20px 120px;
    text-align:center;
  }

  .hero h1{
    font-size:34px;
  }

  .milk-img{
    position:static;
    transform:none;
    margin-top:30px;
    width:240px;
  }

 .features{
    display:flex;
    flex-direction:row !important;   /* 🔥 force row */
    flex-wrap:nowrap !important;
    overflow-x:auto;
    gap:15px;
    padding:20px 15px;
    justify-content:flex-start;
  }

  .text-section{
    flex-direction:column;
    text-align:center;
    gap:20px;
  }
}


/* ================= ABOUT ================= */
.about{
  min-height:100vh;   /* 🔥 full screen */
  display:flex;
  align-items:center;
  background:#F4F6F5;   /* ❌ removed green */
  padding:80px 40px;
}

/* CONTAINER */
.about-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  width:100%;
}

/* ================= CONTENT ================= */
.about-content{
  flex:1;
  max-width:500px;
}

/* TAG */
.about-tag{
  display:inline-block;
  background:#e6f4ea;
  color:#39a935;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  margin-bottom:15px;
}

/* HEADING */
.about h2{
  font-size:38px;
  margin-bottom:20px;
  color:#222;
}

.about h2 span{
  color:#39a935;
}

/* TEXT */
.about p{
  font-size:15px;
  line-height:1.6;
  margin-bottom:15px;
  color:#555;
}

/* FEATURES */
.about-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin:20px 0;
  font-size:14px;
}

/* BUTTON */
.about-btn{
  padding:12px 26px;
  border-radius:30px;
  border:none;
  background:#39a935;
  color:white;
  font-weight:600;
  cursor:pointer;
}

/* ================= VIDEO ================= */
.about-video{
  position:relative;
  flex:1;
  max-width:420px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.about-video video{
  width:100%;
  display:block;
}

/* PLAY BUTTON */
.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:70px;
  height:70px;
  background:white;
  color:#39a935;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  cursor:pointer;
}

/* ================= MOBILE ================= */
@media(max-width:900px){

  .about{
    padding:60px 20px;
    
  }

  .about-container{
    flex-direction:column;   /* 🔥 stack */
    gap:30px;
  }

  /* TEXT FIRST */
  .about-content{
    order:1;
    text-align:center;
  }

  /* VIDEO SECOND */
  .about-video{
    order:2;
    max-width:100%;
  }

  .about h2{
    font-size:26px;
  }

  .about p{
    font-size:14px;
  }

  .about-features{
    font-size: 10px;
  
    display: grid;

    
  }

  .play-btn{
    width:60px;
    height:60px;
    font-size:20px;
  }
}














/* ================= PROCESS ================= */
.process{
  padding:120px 40px;
  background:#f8faf8;
  text-align:center;
}

/* TITLE */
.heading{
  font-size:30px;
  font-weight:600;
  margin-bottom:80px;
  color:#47b81b;
}

/* WRAPPER */
.process-wrapper{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:50px;
  max-width:1200px;
  margin:auto;
}

/* STEP */
.step{
  text-align:center;
  max-width:260px;
  position:relative;
}

/* STEP NUMBER */
.step::before{
  content:attr(data-step);
  position:absolute;
  top:-20px;
  left:50%;
  transform:translateX(-50%);
  background:#39a935;
  color:white;
  font-size:12px;
  padding:6px 12px;
  border-radius:20px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* CIRCLE */
.circle{
  width:190px;
  height:190px;
  background:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;

  box-shadow:0 20px 60px rgba(0,0,0,0.08);
  transition:0.4s ease;
}

/* IMAGE */
.circle img{
  width:130px;
}

/* HOVER EFFECT */
.step:hover .circle{
  transform:translateY(-12px) scale(1.03);
  box-shadow:0 25px 70px rgba(0,0,0,0.12);
}

/* TEXT */
.step p{
  margin-top:20px;
  font-size:15px;
  color:#444;
  line-height:1.6;
}

/* LINE */
.line{
  width:120px;
  height:3px;
  background:linear-gradient(90deg,#39a935,#7be495);
  border-radius:10px;
  opacity:0.8;
}
.process-title{
  font-size:38px;
  font-weight:600;
  line-height:1.3;
  color:#222;
  margin-bottom:20px;
}

.process-title span{
  display:inline-block;
  color:#39a935;
  position:relative;
  margin-bottom: 25px;
}


/* ================= MOBILE (PREMIUM TIMELINE) ================= */
@media(max-width:900px){

  .process{
    padding:70px 15px;
  }

  .process h2{
    font-size:22px;
    margin-bottom:40px;
  }

  /* 🔥 HORIZONTAL STRIP */
  .process-wrapper{
    display:flex;
    flex-direction:row;
    gap:20px;

    overflow-x:auto;
    padding:10px 5px;

    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }

  .process-wrapper::-webkit-scrollbar{
    display:none;
  }
   .process-title{
    font-size:24px;
    line-height:1.4;
  }

  .process-title span::after{
    height:4px;
  }

  /* REMOVE CARD STYLE */
  .step{
    flex:0 0 auto;
    width:140px;
    max-width:none;

    background:none;
    padding:0;
    box-shadow:none;
  }

  /* KEEP ONLY ROUND CIRCLE */
  .circle{
    width:100px;
    height:100px;
    margin:auto;
  }

  .circle img{
    width:70px;
  }

  /* TEXT */
  .step p{
    font-size:13px;
    text-align:center;
    margin-top:12px;
  }

  /* REMOVE LINE */
  .line{
    display:none;
  }

  /* STEP NUMBER SMALL BADGE */
  .step::before{
    top:-10px;
    font-size:10px;
    padding:4px 8px;
  }

  /* SNAP EFFECT */
  .step{
    scroll-snap-align:center;
  }
}



/* ================= GALLERY ================= */
.gallery{
  background-color: #39a935;
  color:white;
  padding:100px 40px 0;
  position:relative;
  overflow:hidden;
}

/* HEADER */
.gallery-header{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:50px;
}

.gallery h2{
  font-size:42px;
  line-height:1.3;
}

.tag{
  display:block;
  font-size:14px;
  margin-bottom:10px;
  opacity:0.8;
}

/* CONTROLS */
.gallery-controls button{
  width:50px;
  height:50px;
  border-radius:50%;
  border:none;
  background:#dfddd9;
  color:#333;
  font-size:20px;
  cursor:pointer;
  margin-left:10px;
}

/* SLIDER */
.gallery-wrapper{
  display:flex;
  gap:30px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding-bottom:60px;
}

.gallery-wrapper::-webkit-scrollbar{
  display:none;
}

/* CARD */
.gallery-card{
  min-width:280px;
  height:380px;
  border-radius:20px;
  overflow:hidden;
  flex:0 0 auto;
  box-shadow:0 15px 40px rgba(0,0,0,0.3);
  transition:0.3s;
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-card:hover{
  transform:translateY(-10px);
}

/* WAVE */
.gallery-wave{
  position:absolute;
  bottom:-1px;
  left:0;
  width:100%;
  height:120px;
}

/* ================= MOBILE ================= */
@media(max-width:900px){

  .gallery{
    padding:70px 20px 0;
  }

  .gallery-header{
    flex-direction:column;
    gap:20px;
  }

  .gallery h2{
    font-size:26px;
  }

  .gallery-controls{
    align-self:flex-start;
  }

  .gallery-card{
    min-width:220px;
    height:300px;
  }
}

/* ================= WHY ================= */
.why{
  background:#F4F6F5;
  padding:100px 40px;
  text-align:center;
}

/* HEADER */
.why-header .tag{
  display:inline-block;
  font-size:13px;
  margin-bottom:10px;
  color:#94e439;
}

.why h2{
  font-size:42px;
  color:#49bb14;
  margin-bottom:70px;
}

/* CONTAINER */
.why-container{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:50px;
  max-width:1200px;
  margin:auto;
}

/* COLUMNS */
.why-col{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:30px;
}

/* ITEM */
.why-item{
  display:flex;
  align-items:flex-start;
  gap:15px;
  text-align:left;
}

/* ICON */
.icon{
  width:50px;
  height:50px;
  background:#66c915;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
}

/* TEXT */
.why-item h4{
  font-size:16px;
  margin-bottom:5px;
  color:#3b2b1f;
}

.why-item p{
  font-size:14px;
  color:#6b5a4a;
}

/* CENTER IMAGE */
.why-center img{
  width:300px;
}

/* ================= MOBILE ================= */
@media(max-width:900px){

  .why{
    padding:70px 20px;
  }

  .why h2{
    font-size:26px;
  }

  .why-container{
    flex-direction:column;
    gap:40px;
  }

  .why-col{
    width:100%;
  }

  .why-item{
    justify-content:center;
    text-align:center;
  }

  .why-center img{
    width:200px;
  }
}



/* ================= TESTIMONIAL ================= */
.testimonial{
  position:relative;
  background:url('https://res.cloudinary.com/dzwxkhkvi/image/upload/q_auto/f_auto/v1776599741/testimonials_hzfpwh.jpg') center/cover no-repeat;
  padding:120px 40px;
  color:rgb(77, 58, 58);
  overflow:hidden;
}

/* OVERLAY */
.testimonial-overlay{
  position:absolute;
  inset:0;
  background:rgba(185, 211, 195, 0.75);
}

/* CONTAINER */
.testimonial-container{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

/* LEFT CONTENT */
.testimonial-content{
  flex:1;
  max-width:520px;
}

/* TAG */
.tag{
  font-size:13px;
  color:#000000;
  letter-spacing:1px;
}

/* HEADING */
.testimonial h2{
  font-size:42px;
  margin:20px 0 30px;
  line-height:1.3;
}

/* ================= SLIDER ================= */
.testimonial-slider{
  position:relative;
  min-height:160px;
}

/* SLIDE */
.slide{
  position:absolute;
  width:100%;
  opacity:0;
  transform:translateX(40px);
  transition:all 0.5s ease;
}

.slide.active{
  opacity:1;
  transform:translateX(0);
}

/* STARS */
.stars{
  color:#47e617;
  margin-bottom:10px;
}

/* TEXT */
.slide p{
  font-size:15px;
  line-height:1.6;
  margin-bottom:20px;
  opacity:0.9;
}

/* USER */
.user{
  display:flex;
  align-items:center;
  gap:12px;
}

.user img{
  width:45px;
  height:45px;
  border-radius:50%;
}

.user h4{
  font-size:15px;
}

.user span{
  font-size:13px;
  opacity:0.7;
}

/* CONTROLS */
.controls{
  margin-top:20px;
}

.controls button{
  width:45px;
  height:45px;
  border-radius:50%;
  border:none;
  background:#06b323;
  color:#ced1cc;
  margin-right:10px;
  cursor:pointer;
  transition:0.3s;
}

.controls button:hover{
  transform:scale(1.1);
}

/* DOTS */
.dots{
  margin-top:15px;
}

.dots span{
  display:inline-block;
  width:10px;
  height:10px;
  margin:5px;
  background:#f1f0f0;
  border-radius:50%;
  cursor:pointer;
  transition:0.3s;
}

.dots span.active{
  background:#0cc00c;
  transform:scale(1.3);
}

/* RIGHT IMAGE */
.testimonial-image{
  flex:1;
  position:relative;
}

.testimonial-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 20px 60px rgba(206, 204, 204, 0.4);
}

/* FLOATING BADGE */
.floating-badge{
  position:absolute;
  bottom:20px;
  left:20px;
  background:rgba(255,255,255,0.1);
  backdrop-filter:blur(10px);
  padding:12px 16px;
  border-radius:12px;
  display:flex;
  align-items:center;
  gap:10px;
}

/* AVATARS */
.avatars img{
  width:28px;
  height:28px;
  border-radius:50%;
  border:2px solid white;
  margin-left:-8px;
}

.avatars img:first-child{
  margin-left:0;
}

/* ================= MOBILE ================= */
@media(max-width:900px){

  .testimonial{
    padding:80px 20px;
  }

  .testimonial-container{
    flex-direction:column;
    gap:40px;
  }

  .testimonial h2{
    font-size:26px;
  }

  .slide p{
    font-size:14px;
  }

  .testimonial-image img{
    border-radius:15px;
  }

  .floating-badge{
    position:static;
    margin-top:15px;
  }
}



/* ================= BLOG ================= */
.blogs{
  padding:100px 20px;
  background:#f9faf9;
  text-align:center;
}

/* HEADER */
.blog-tag{
  display:inline-block;
  background:#e6f4ea;
  color:#39a935;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  margin-bottom:10px;
}

.blogs h2{
  font-size:34px;
  margin-bottom:50px;
  color:#222;
}

/* WRAPPER */
.blog-wrapper{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
}

/* CARD */
.blog-card{
  width:320px;
  background:white;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:0.4s;
  text-align:left;
}

/* IMAGE */
.blog-img{
  position:relative;
  overflow:hidden;
}

.blog-img img{
  width:100%;
  height:200px;
  object-fit:cover;
  transition:0.4s;
}

/* CATEGORY BADGE */
.category{
  position:absolute;
  top:12px;
  left:12px;
  background:#39a935;
  color:white;
  font-size:12px;
  padding:4px 10px;
  border-radius:20px;
}

/* HOVER EFFECT */
.blog-card:hover img{
  transform:scale(1.1);
}

.blog-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 60px rgba(0,0,0,0.12);
}

/* CONTENT */
.blog-content{
  padding:20px;
}

.meta{
  font-size:12px;
  color:#888;
  margin-bottom:8px;
}

.blog-content h3{
  font-size:18px;
  margin-bottom:10px;
}

.blog-content p{
  font-size:14px;
  color:#666;
  margin-bottom:10px;
}

.blog-content a{
  color:#39a935;
  font-weight:500;
  text-decoration:none;
}

/* ================= MOBILE (PREMIUM SWIPE) ================= */
@media(max-width:900px){

  .blogs{
    padding:70px 15px;
  }

  .blogs h2{
    font-size:24px;
  }

  /* SLIDER STYLE */
  .blog-wrapper{
    flex-wrap:nowrap;
    overflow-x:auto;
    gap:15px;
    padding-bottom:10px;
  }

  .blog-wrapper::-webkit-scrollbar{
    display:none;
  }

  .blog-card{
    flex:0 0 auto;
    min-width:260px;
  }

}


/* ================= FAQ ================= */
.faq{
  padding:100px 20px;
  background:#f9faf9;
  text-align:center;
}

.faq-tag{
  display:inline-block;
  background:#e6f4ea;
  color:#39a935;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  margin-bottom:10px;
}

.faq h2{
  font-size:32px;
  margin-bottom:50px;
  color:#222;
}

/* CONTAINER */
.faq-container{
  max-width:800px;
  margin:auto;
}

/* ITEM */
.faq-item{
  background:white;
  border-radius:14px;
  margin-bottom:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  overflow:hidden;
  transition:0.3s;
}

/* QUESTION */
.faq-question{
  width:100%;
  padding:18px 20px;
  font-size:16px;
  font-weight:500;
  text-align:left;
  border:none;
  background:none;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* ICON */
.faq-question .icon{
  font-size:20px;
  color:#39a935;
  transition:0.3s;
}

/* ANSWER */
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
  text-align:left;
  padding:0 20px;
}

.faq-answer p{
  padding-bottom:15px;
  color:#555;
  font-size:14px;
}

/* ACTIVE */
.faq-item.active .faq-answer{
  max-height:150px;
}

.faq-item.active .icon{
  transform:rotate(45deg); /* + → × */
}

/* ================= MOBILE ================= */
@media(max-width:900px){

  .faq{
    padding:70px 15px;
  }

  .faq h2{
    font-size:24px;
  }

  .faq-question{
    font-size:15px;
    padding:16px;
  }

  .faq-answer p{
    font-size:13px;
  }

}


/* ================= FOOTER ================= */
.footer{
  background:linear-gradient(135deg,#1f3d2b,#102716);
  color:#ddd;
  padding:70px 30px 20px;
}

/* CONTAINER */
.footer-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}

/* COLUMN */
.footer-col{
  flex:1;
  min-width:220px;
}

/* BRAND */
.footer-col h3{
  color:white;
  margin-bottom:15px;
}

.footer-col p{
  font-size:14px;
  line-height:1.6;
  color:#bbb;
}

/* LINKS */
.footer-col a{
  display:block;
  color:#ccc;
  margin-bottom:8px;
  text-decoration:none;
  transition:0.3s;
}

.footer-col a:hover{
  color:#7be495;
  transform:translateX(4px);
}

/* BUTTON */
.footer-btn{
  margin-top:15px;
  padding:10px 20px;
  border:none;
  border-radius:30px;
  background:#1bb616;
  color:white;
  cursor:pointer;
  transition:0.3s;
}

.footer-btn:hover{
  background:#26be21;
}

/* BOTTOM */
.footer-bottom{
  margin-top:10px;
  margin-bottom: 70px;
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:15px;
  text-align:center;
  font-size:13px;
  color:#aaa;
}

/* DEV CREDIT */
.footer-bottom .dev{
  display:block;
  margin-top:8px;
}

.footer-bottom a{
  color:#7be495;
  text-decoration:none;
  font-weight:500;
}

/* ================= MOBILE ================= */
@media(max-width:900px){

  .footer{
    padding:50px 20px 20px;
  }

  .footer-container{
    flex-direction:column;
    gap:30px;
    text-align:center;
  }

  .footer-col a{
    display:inline-block;
    margin:5px 10px;
  }

  .footer-btn{
    width:100%;
    max-width:250px;
  }

}




