*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Plus Jakarta Sans',sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Plus Jakarta Sans',sans-serif;
  background:#f6f6f2;
  color:#111;
}

.container{
  width:90%;
  max-width:1350px;
  margin:auto;
}

.header{
  position:fixed;
  top:18px;
  left:50%;
  transform:translateX(-50%);

  width:92%;

  background:
  rgba(255,255,255,0.82);

  backdrop-filter:blur(18px);

  border:
  1px solid rgba(255,255,255,0.15);

  border-radius:24px;

  z-index:999;

  transition:0.4s;

  box-shadow:
  0 10px 40px rgba(0,0,0,0.06);
}

.header.hide{
  transform:
  translateX(-50%)
  translateY(-120%);
}

.header.scrolled{
  top:10px;

  background:
  rgba(255,255,255,0.92);

  box-shadow:
  0 15px 40px rgba(0,0,0,0.08);
}

.header.scrolled .logo-img{
  width:145px;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:10px 24px;
}

.logo{
  margin-right:auto;
}
.logo-img{
  width:170px;
  height:auto;

  display:block;

  transition:0.3s ease;
}

.nav-links{
  display:flex;
  gap:30px;
  list-style:none;
  margin-right:40px;
}

.nav-links a{
  text-decoration:none;
  color:#111;
  font-weight:600;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:16px 34px;

background:
linear-gradient(
  135deg,
  #f4d06f,
  #e0b94f
);

color:#0b2418;

  text-decoration:none;

  border-radius:999px;

  border:none;

  cursor:pointer;

  font-weight:700;

  letter-spacing:0.3px;

  transition:0.35s ease;

  box-shadow:
  0 15px 40px rgba(224,185,79,0.28);
}

.btn:hover{

  transform:
  translateY(-5px)
  scale(1.03);

  box-shadow:
  0 20px 50px rgba(224,185,79,0.35);

  background:
linear-gradient(
  135deg,
  #ffe08a,
  #d9ad26
  );
}

.hero-buttons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  margin-top:35px;
}

.secondary-btn{
  padding:16px 26px;
  font-size:15px;

  background:
  linear-gradient(
    135deg,
    #f4d06f,
    #e0b94f
  );

  color:#0b2418;

  box-shadow:
  0 15px 40px rgba(224,185,79,0.28);

  transition:all 0.3s ease;
}

.secondary-btn:hover{

  background:
  linear-gradient(
    135deg,
    #ffe08a,
    #d9ad26
  );

  color:#0b2418;
}

.hero{
  padding:180px 0 120px;
  background:
  linear-gradient(to right, rgba(255,255,255,0.95), rgba(255,255,255,0.7)),
  url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1600&auto=format&fit=crop');

  background-size:cover;
  background-position:center;
}

.hero .btn{
  display:inline-block;
}

.hero-grid{
  display:flex;
  justify-content:flex-start;
  align-items:center;

  min-height:85vh;
}

.hero-content{
  width:100%;
  max-width:1400px;
  margin:auto;
  text-align:center;
}

.hero h1{
  font-size:clamp(3.8rem, 5vw, 6.5rem);
  font-weight:800;
  line-height:0.9;
  letter-spacing:-4px;
  text-transform:uppercase;
  text-align:center;

  width:100%;
  max-width:1600px;

  margin:0 auto;

  text-wrap:balance;
}

.hero span{
  color:#5fa33f;
}

.hero p{
  max-width:700px;
  margin:35px auto;
}

.hero-card{
  background:
  linear-gradient(
  135deg,
  #0c4f33,
  #082717
  );

  color:white;

  padding:60px;

  border-radius:35px;

  max-width:850px;

  margin:80px auto 0;

  box-shadow:
  0 25px 60px rgba(0,0,0,0.2);
}

.hero-card h2{
  font-size:42px;
  line-height:1.2;
  margin-bottom:30px;
}

.hero-card ul{
  line-height:2.2;
  font-size:18px;
}

.why-section{
  padding:140px 0;
  background:
  linear-gradient(
    to bottom,
    #f7f7f4,
    #eef2eb
  );
}

.why-grid{
  display:grid;

  grid-template-columns:
  1fr 1fr;

  gap:60px;

  align-items:center;

  margin-bottom:120px;
}

.section-label{
  display:inline-block;

  font-size:14px;

  font-weight:700;

  letter-spacing:2px;

  color:#0d6b3d;

  margin-bottom:20px;
}

.why-left h2{
  font-size:54px;

  line-height:1.1;

  margin-bottom:30px;

  max-width:700px;
}

.why-text{
  font-size:18px;

  line-height:1.8;

  color:#555;

  margin-bottom:20px;

  max-width:650px;
}

.info-card{
  background:
  linear-gradient(
    135deg,
    #0b4d2d,
    #062f1c
  );

  padding:50px;

  border-radius:30px;

  color:white;

  box-shadow:
  0 20px 60px
  rgba(0,0,0,0.15);
}

.info-card h3{
  font-size:32px;

  margin-bottom:30px;
}

.info-card ul{
  display:flex;

  flex-direction:column;

  gap:20px;
}

.info-card li{
  line-height:1.7;

  font-size:18px;
}

.values-container{
  margin-top:100px;
}

.values-heading{
  text-align:center;

  margin-bottom:60px;
}

.values-heading h2{
  font-size:50px;

  max-width:700px;

  margin:auto;

  line-height:1.2;
}

.values-grid{
  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:30px;
}

.value-card{
  background:white;

  padding:40px;

  border-radius:24px;

  box-shadow:
  0 10px 30px
  rgba(0,0,0,0.06);

  transition:0.3s;
}

.value-card:hover{
  transform:translateY(-8px);
}

.value-card h3{
  font-size:24px;

  margin-bottom:20px;

  color:#0b4d2d;
}

.value-card p{
  color:#555;

  line-height:1.8;
}

.section-title{
  text-align:center;

  font-size:clamp(2.8rem,5vw,4.8rem);

  color:white;

  font-weight:800;

  margin-bottom:20px;

  letter-spacing:-3px;
}

.services{
  background:
  linear-gradient(
    135deg,
    #06341f,
    #0b4d2d,
    #082717
  );

  padding:140px 0;
}

.services-btn{
  text-align:center;
  margin-top:50px;
}

.service-btn{
  display:inline-flex;

  align-items:center;
  justify-content:center;

  width:fit-content;

  margin-top:auto;

  padding:14px 30px;

  border-radius:999px;

  text-decoration:none;

  font-weight:700;

  font-size:14px;

  background:
  linear-gradient(
    135deg,
    #f4d06f,
    #d9ad26
  );

  color:#0b2418;

  transition:0.35s ease;

  box-shadow:
  0 12px 30px rgba(224,185,79,0.25);
}

.service-btn:hover{
  transform:
  translateY(-5px);

  box-shadow:
  0 18px 40px rgba(224,185,79,0.35);

  background:
  linear-gradient(
    135deg,
    #ffe08a,
    #d9ad26
  );
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
  margin-top:60px;
}

.service-card{
  background:white;
  border-radius:28px;
  padding:40px;
  padding-bottom:50px;

  transition:0.3s;

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

  position:relative;

  display:flex;
  flex-direction:column;

  height:100%;
}

.service-btn{
  width:fit-content;

  margin-top:auto;

  margin-bottom:10px;
}

.service-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background:linear-gradient(to right,#0d5b38,#4caf50);
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:
  0 25px 60px rgba(13,91,56,0.15);
}

.service-card img{
  width:70px;
  height:70px;
  object-fit:contain;
  margin-bottom:30px;
}

.service-card h3{
  font-size:34px;
  line-height:1.2;
  margin-bottom:25px;
  color:#0d5b38;
  font-weight:800;
}

.service-card p{
  font-size:17px;
  line-height:1.9;
  color:#555;
  margin-bottom:25px;
}

.service-card ul{
  padding-left:20px;
}

.service-card li{
  margin-bottom:14px;
  color:#333;
  line-height:1.7;
}

.card{
  background:white;
  padding:40px;
  border-radius:24px;
  border:1px solid #e7e7e7;
  transition:0.4s;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

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

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

.card ul{
  line-height:2;
}

.support{
        padding:150px 0;
  background:
  linear-gradient(rgba(4,33,20,0.92),
  rgba(4,33,20,0.92)),
  url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1600&auto=format&fit=crop');

  background-size:cover;
  background-position:center;
}

.support-header{
  text-align:center;
  margin-bottom:70px;
}

.support-card{
  transition:
  transform 0.3s ease,
  box-shadow 0.3s ease;
}

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

    box-shadow:
  0 25px 60px rgba(13,91,56,0.20);
}

.support-header span{
  color:#6dd18f;
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
}

.support-header h2{
  font-size:60px;
  color:white;
  margin:20px 0;
  font-weight:800;
}

.support-header p{
  color:#d8d8d8;
  font-size:18px;
}

.white{
  color:white;
}

.support-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;

  justify-content:center;
}

.support-card{
  background:white;
  padding:35px;
  border-radius:25px;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.support-card h3{
  color:#0d5b38;
  margin-bottom:20px;
  font-size:26px;
  line-height:1.3;
}

.preview-list li,
.hidden-content li{
  margin-bottom:12px;
  line-height:1.7;
  color:#444;
}

.hidden-content{
  display:none;
  margin-top:15px;
}

.support-card.active .hidden-content{
  display:block;
}

.toggle-btn{
  margin-top:20px;
  border:none;
  background:none;
  color:#0d5b38;
  font-weight:700;
  cursor:pointer;
  font-size:15px;
}


.consultation{
  padding:140px 0;

  background:
  linear-gradient(
    to bottom,
    #f7f7f4,
    #eef2eb
  );
}

.consultation-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:80px;
  align-items:center;
}

.consult-text{
  font-size:19px;
  line-height:1.9;
  color:#444;
  margin-bottom:40px;
  max-width:650px;
}

.consult-box{
  background:white;

  padding:35px;

  border-radius:24px;

  margin-bottom:35px;

  box-shadow:
  0 15px 40px rgba(0,0,0,0.06);

  transition:0.3s;
}

.consult-box:hover{
  transform:translateY(-8px);
}

.consult-box h3{
  margin-bottom:20px;
  font-size:28px;
  color:#0d5b38;
}

.consult-box ul{
  display:flex;
  flex-direction:column;
  gap:18px;

  padding-left:20px;
}

.consult-box li{
  line-height:1.8;
  color:#444;
  font-size:17px;
}

.consult-bottom{
  font-size:18px;
  line-height:1.9;
  color:#555;

  margin-bottom:40px;

  max-width:650px;
}

.consult-right img{
  width:100%;
  height:700px;

  object-fit:cover;

  border-radius:35px;

  box-shadow:
  0 25px 60px rgba(0,0,0,0.12);

  transition:0.4s;
}

.consult-right img:hover{
  transform:translateY(-10px);
}

.consult-left{
  max-width:700px;
}

.consult-left h2{
  font-size:64px;
  line-height:1;
  margin:20px 0 30px;
  font-weight:800;
}

.consult-left p{
  line-height:1.8;
  margin-bottom:20px;
}

.consult-left ul{
  line-height:2;
  margin-bottom:30px;
}

.testimonials{
  padding:150px 0;

  background:
  linear-gradient(
    to bottom,
    #f4f7f2,
    #eef3ee
  );
}

.testimonial-header{
  text-align:center;
  margin-bottom:70px;
}

.testimonial-header span{
  color:#0d5b38;
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
}

.testimonial-header h2{
  font-size:60px;
  margin:20px 0;
  color:#111;
  font-weight:800;
}

.testimonial-header p{
  color:#666;
  font-size:18px;
}


.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.testimonial-card{
  background:white;
  padding:40px;
  border-radius:28px;
  box-shadow:
  0 15px 40px rgba(0,0,0,0.06);
  transition:0.3s;

  transition:0.4s;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  min-height:420px;
}

.testimonial-card:hover{
  transform:translateY(-8px);
  box-shadow:
  0 20px 40px rgba(0,0,0,0.08);
}

.testimonial-text{
  line-height:2;
  color:#444;
  margin-bottom:40px;
  font-size:17px;
}

.stars{
  color:#f4b400;

  font-size:22px;

  margin-bottom:20px;

  letter-spacing:4px;
}

.client-info{
  display:flex;
  align-items:center;
  gap:15px;

  margin-top:auto;
}

.client-info img{
  width:70px;
  height:70px;
  border-radius:50%;
  object-fit:cover;
}

.client-info h4{
  color:#0d5b38;
  margin-bottom:5px;
}

.client-info span{
  color:#666;
  font-size:14px;
}

.testimonial{
  background:white;
  padding:40px;
  border-radius:25px;
  border:1px solid #eee;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  position:relative;
}
.testimonial::before{
  content:"“";
  font-size:80px;
  position:absolute;
  top:10px;
  left:20px;
  color:#0d5b38;
  opacity:0.15;
}

.testimonial p{
  line-height:1.8;
  margin-bottom:20px;
}


.footer{
  background:
  linear-gradient(
    135deg,
    #071a14,
    #0a241c
  );

  color:white;

  padding:90px 0 35px;

  position:relative;

  overflow:hidden;
}

.footer::before{
  content:"";
  position:absolute;

  width:450px;
  height:450px;

  background:
  rgba(76,175,80,0.08);

  border-radius:50%;

  filter:blur(100px);

  top:-180px;
  right:-100px;
}

.footer-top{
  width:90%;
  max-width:1200px;

  margin:auto;

  display:grid;

  grid-template-columns:
  0.9fr 1.1fr;

  align-items:center;

  gap:80px;

  padding-bottom:55px;

  border-bottom:
  1px solid rgba(255,255,255,0.08);

  position:relative;
  z-index:2;
}

.footer-left{
  display:flex;
  justify-content:center;
  align-items:center;
}

.footer-logo{
  width:220px;

  padding:22px;

  border-radius:28px;

background:
linear-gradient(
  135deg,
  #f7e6b5,
  #f3d77a
);

  box-shadow:
  0 15px 40px rgba(243,215,122,0.18);

  object-fit:contain;

  transition:0.35s ease;
}

.footer-logo:hover{
  transform:
  translateY(-8px)
  scale(1.03);

  box-shadow:
  0 30px 70px rgba(255,179,71,0.45);
}

.footer-center{
  text-align:center;
}

.footer-center h4{
  font-size:14px;

  color:#8fd3a8;

  margin-bottom:14px;

  letter-spacing:1px;

  font-weight:600;
}

.footer-center h2{
  font-size:clamp(2.8rem,5vw,4.5rem);

  line-height:0.95;

  font-weight:800;

  letter-spacing:-2px;

  margin-bottom:28px;

  max-width:700px;

  margin-left:auto;
  margin-right:auto;
}

.footer-socials{
  display:flex;

  justify-content:center;

  gap:14px;

  margin-bottom:30px;
}

.footer-socials a{
  width:52px;
  height:52px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

background:
rgba(255,255,255,0.10);

  transition:0.3s ease;
}

.footer-socials a:hover{
  transform:translateY(-5px);

  background:
  linear-gradient(
    135deg,
    #f4d06f,
    #d9ad26
  );

  box-shadow:
  0 10px 30px rgba(224,185,79,0.35);
}

.footer-socials img{
  width:22px;
}

.footer-btn{
  display:inline-flex;

  align-items:center;
  justify-content:center;

  padding:18px 34px;

  border-radius:999px;

background:
linear-gradient(
  135deg,
  #f4d06f,
  #d9ad26
);

color:#0b2418;

  text-decoration:none;

  font-weight:700;

  font-size:15px;

  transition:0.3s ease;
}

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

.footer-right{
  justify-self:end;
}

.footer-right h3{
  font-size:24px;

  margin-bottom:20px;
}

.footer-right ul{
  list-style:none;

  display:flex;
  flex-direction:column;

  gap:14px;
}

.footer-right a{
  color:#d7e7dd;

  text-decoration:none;

  font-size:16px;

  transition:0.3s ease;
}

.footer-right a:hover{
  color:#6dd18f;
}

.footer-contact{
  text-align:center;
margin-top:50px;
  padding:40px 20px 30px;

  position:relative;
  z-index:2;
}

.footer-contact p{
  font-size:20px;

  font-weight:700;

  margin-bottom:10px;
}

.footer-contact a{
  color:#6dd18f;

  text-decoration:none;
}

.footer-contact span{
  color:#9fb4aa;

  font-size:15px;
}

.footer-bottom{
  width:90%;
  max-width:1200px;

  margin:auto;

  text-align:center;

  border-top:
  1px solid rgba(255,255,255,0.08);

  padding-top:25px;

  position:relative;
  z-index:2;
}

.footer-bottom p:first-child{
  margin-bottom:14px;

  color:#d7e7dd;

  font-size:15px;
}

.footer-bottom p:last-child{
  color:#8ca399;

  font-size:14px;

  line-height:1.7;

  max-width:900px;

  margin:auto;
}

/* MOBILE */

@media(max-width:768px){

  .footer-top{
    grid-template-columns:1fr;

    text-align:center;
  }

  .footer-left{
    justify-content:center;
  }

  .footer-right{
    justify-self:center;
  }

  .footer-center h2{
    font-size:3rem;
  }

  .footer-contact p{
    font-size:18px;
  }

    .hero-buttons{
    flex-direction:column;
    align-items:center;
  }

  .secondary-btn{
    width:100%;
    max-width:340px;
  }
}



#topBtn{
  position:fixed;

  bottom:110px;
  right:25px;

  width:58px;
  height:58px;

  border:none;
  border-radius:50%;

  background:
  linear-gradient(
    135deg,
    #22c55e,
    #15803d
  );

  color:white;

  font-size:24px;
  font-weight:700;

  cursor:pointer;

  display:none;

  z-index:99999;

  box-shadow:
  0 15px 40px rgba(34,197,94,0.30);

  transition:0.35s ease;
}

#topBtn:hover{
  transform:
  translateY(-6px)
  scale(1.08);

  box-shadow:
  0 20px 50px rgba(34,197,94,0.40);
}


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

@media(max-width:1100px){

  .service-grid,
  .support-grid,
  .testimonial-grid,
  .values-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .consultation-grid,
  .why-grid{
    grid-template-columns:1fr;
  }

  .consult-right img{
    height:500px;
  }

  .hero h1{
    font-size:4.5rem;
  }

  .support-header h2,
  .testimonial-header h2,
  .consult-left h2,
  .why-left h2{
    font-size:4rem;
  }
}

/* MOBILE */

@media(max-width:768px){

  .container{
    width:92%;
  }

  .nav{
    padding:12px 18px;
  }

  .nav-links{
    display:none;
  }

  .logo-img{
    width:140px;
  }

  .header.scrolled .logo-img{
    width:125px;
  }

  .btn{
    padding:14px 26px;
    font-size:14px;
  }

  .hero{
    padding:160px 0 90px;
  }

  .hero-grid{
    min-height:auto;
  }

.hero h1{
  font-size:2.5rem;
  line-height:1;
  letter-spacing:-2px;
}

.hero h1 br{
  display:none;
}

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

  .why-left h2,
  .values-heading h2,
  .support-header h2,
  .consult-left h2,
  .testimonial-header h2,
  .footer-center h2{
    font-size:2.5rem;
    line-height:1.1;
  }

  .service-grid,
  .support-grid,
  .testimonial-grid,
  .values-grid{
    grid-template-columns:1fr;
  }

  .service-card,
  .support-card,
  .testimonial-card,
  .value-card,
  .consult-box{
    padding:30px;
  }

  .consult-right img{
    height:400px;
  }

  .consultation-grid,
  .why-grid,
  .footer-top{
    grid-template-columns:1fr;
  }

  .footer{
    text-align:center;
  }

  .footer-logo{
    width:180px;
  }

  .footer-contact p{
    font-size:17px;
  }

  .footer-bottom p:last-child{
    font-size:13px;
    line-height:1.8;
  }

  #topBtn{
    width:52px;
    height:52px;
    font-size:20px;
    right:20px;
    bottom:20px;
  }
}

/* SMALL PHONES */

@media(max-width:480px){

  .hero h1{
    font-size:2.4rem;
  }

  .support-header h2,
  .testimonial-header h2,
  .consult-left h2,
  .why-left h2,
  .footer-center h2{
    font-size:2rem;
  }

  .service-card h3,
  .support-card h3{
    font-size:1.5rem;
  }

  .testimonial-card{
    min-height:auto;
  }

  .footer-logo{
    width:160px;
  }

  .footer-btn{
    width:100%;
  }
}

/* MOBILE MENU */

.menu-toggle{
  display:none;

  font-size:32px;

  cursor:pointer;

  color:#0b2418;

  font-weight:700;
}

/* MOBILE */

@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;

    top:100%;

    left:0;

    width:100%;

    background:white;

    flex-direction:column;

    align-items:center;

    gap:25px;

    padding:30px 0;

    border-radius:0 0 24px 24px;

    box-shadow:
    0 20px 40px rgba(0,0,0,0.08);

    display:none;
  }

  .nav-links.active{
    display:flex;
  }

  .nav .btn{
    display:none;
  }
}

/* CHATBOT */
#boei_button{
  bottom:105px !important;
  right:22px !important;
}

/* SCROLL TOP BUTTON */
#topBtn{
  position:fixed;

  bottom:30px;
  right:22px;

  width:58px;
  height:58px;

  border:none;
  border-radius:50%;

  background:
  linear-gradient(
    135deg,
    #22c55e,
    #15803d
  );

  color:white;

  font-size:24px;
  font-weight:700;

  cursor:pointer;

  display:none;

  z-index:99999;

  box-shadow:
  0 15px 40px rgba(34,197,94,0.30);

  transition:0.35s ease;
}