/* ================= GOOGLE FONT ================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');



/* ================= GLOBAL ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  background:#f8f6f1;
  color:#333;
  overflow-x:hidden;
}



/* ================= NAVBAR ================= */
nav{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;

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

  padding:14px 8%;

  background:rgba(11, 61, 46, 0.95);
  backdrop-filter:blur(8px);

  box-shadow:0 3px 15px rgba(0,0,0,0.15);
}

/* LOGO */
.logo img{
  width:140px;
  height:auto;
  border-radius:8px;
}

/* NAV LINKS */
nav ul{
  display:flex;
  align-items:center;
  gap:35px;
  list-style:none;
}

nav ul li a{
  text-decoration:none;
  color:white;
  font-size:16px;
  font-weight:500;
  transition:0.3s ease;
  position:relative;
}

nav ul li a:hover{
  color:#ffd54f;
}

/* UNDERLINE EFFECT */
nav ul li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#ffd54f;
  transition:0.3s;
}

nav ul li a:hover::after{
  width:100%;
}



/* ================= HERO SECTION ================= */
.hero{
  position:relative;
  width:100%;
  height:100vh;

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

  overflow:hidden;
  text-align:center;
}



/* ================= HERO SLIDER ================= */
.hero-slider{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  z-index:1;
}

/* SLIDES */
.slides{
  display:flex;
  width:600%;
  height:100%;
  animation:slide 30s infinite ease-in-out;
}

/* IMAGES */
.slides img{
  width:16.666%;
  height:100vh;
  object-fit:cover;
  flex-shrink:0;
}



/* ================= DARK OVERLAY ================= */
.overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;

  background:rgba(0,0,0,0.50);

  z-index:2;
}



/* ================= HERO TEXT ================= */
.hero-text{
  position:relative;
  z-index:3;
  max-width:850px;
  padding:20px;
}

.hero-text h1{
  font-size:72px;
  color:white;
  line-height:1.1;
  margin-bottom:25px;
  font-weight:700;

  text-shadow:0 5px 20px rgba(0,0,0,0.4);
}

.hero-text p{
  font-size:22px;
  color:#f1f1f1;
  line-height:1.8;
  margin-bottom:40px;

  text-shadow:0 3px 10px rgba(0,0,0,0.4);
}



/* ================= HERO BUTTONS ================= */
.hero-buttons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}



/* ================= MAIN BUTTON ================= */
.btn{
  display:inline-block;

  padding:15px 32px;

  background:#2e7d32;
  color:white;

  text-decoration:none;
  border-radius:10px;

  font-size:17px;
  font-weight:600;

  transition:0.3s ease;
}

.btn:hover{
  background:#1b5e20;
  transform:translateY(-4px);
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
}



/* ================= HERO WHATSAPP BUTTON ================= */
.hero-buttons .whatsapp-btn{
  display:flex;
  align-items:center;
  gap:10px;

  padding:15px 28px;

  background:#25d366;
  color:white;

  text-decoration:none;
  border-radius:10px;

  font-size:17px;
  font-weight:600;

  transition:0.3s ease;
}

.hero-buttons .whatsapp-btn i{
  font-size:22px;
}

.hero-buttons .whatsapp-btn:hover{
  background:#1ebe5d;
  transform:translateY(-4px);
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
}



/* ================= SLIDER ANIMATION ================= */
@keyframes slide{

  0%,14%{
    transform:translateX(0%);
  }

  16%,30%{
    transform:translateX(-16.666%);
  }

  32%,46%{
    transform:translateX(-33.333%);
  }

  48%,62%{
    transform:translateX(-50%);
  }

  64%,78%{
    transform:translateX(-66.666%);
  }

  80%,94%{
    transform:translateX(-83.333%);
  }

  100%{
    transform:translateX(0%);
  }
}



/* ================= VALUES SECTION ================= */
.values{
  padding:100px 8%;
  background:white;
  text-align:center;
}

.values h2{
  font-size:42px;
  color:#1b4332;
  margin-bottom:60px;
}

.value-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

/* CARD */
.card{
  background:#f8f6f1;
  padding:40px 30px;
  border-radius:18px;

  transition:0.3s ease;

  box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

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

.card h3{
  color:#1b4332;
  margin-bottom:18px;
  font-size:24px;
}

.card p{
  color:#555;
  line-height:1.8;
}



/* ================= FEATURES ================= */
.features{
  padding:100px 8%;

  background:#eef5ef;

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.feature-box{
  background:white;
  padding:40px 30px;

  border-radius:18px;

  text-align:center;

  transition:0.3s ease;

  box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

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

.feature-box h3{
  color:#1b4332;
  margin-bottom:18px;
  font-size:24px;
}

.feature-box p{
  color:#555;
  line-height:1.8;
}



/* ================= FOOTER ================= */
.footer{
  background:#163526;
  color:white;

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

  gap:50px;

  padding:70px 8%;
}

/* FOOTER HEADINGS */
.footer-box h3{
  font-size:24px;
  margin-bottom:20px;

  border-bottom:2px solid #d4a373;
  display:inline-block;

  padding-bottom:8px;
}

.footer-box p{
  color:#ddd;
  line-height:1.9;
  font-size:15px;
}

/* QUICK LINKS */
.footer-box ul{
  list-style:none;
}

.footer-box ul li{
  margin:15px 0;
}

.footer-box ul li a{
  color:white;
  text-decoration:none;
  transition:0.3s;
}

.footer-box ul li a:hover{
  color:#d4a373;
  padding-left:6px;
}



/* ================= SOCIAL ICONS ================= */
.social-icons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:20px;
}

.social-icons a{
  text-decoration:none;

  background:#d4a373;
  color:white;

  padding:10px 16px;

  border-radius:6px;

  transition:0.3s ease;
}

.social-icons a:hover{
  background:white;
  color:#1b4332;
}



/* ================= FOOTER LOGO ================= */
.footer-logo img{
  width:180px;
  border-radius:10px;
  margin-top:15px;
}



/* ================= COPYRIGHT ================= */
.footer-bottom{
  background:#081c15;
  color:white;

  text-align:center;

  padding:18px;

  font-size:14px;
}



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

  nav{
    flex-direction:column;
    gap:18px;
    padding:18px 5%;
  }

  nav ul{
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero{
    padding:0 5%;
  }

  .hero-text h1{
    font-size:52px;
  }

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

  .values h2{
    font-size:36px;
  }
}



/* ================= SMALL DEVICES ================= */
@media(max-width:768px){

  .logo img{
    width:120px;
  }

  nav ul{
    gap:15px;
  }

  nav ul li a{
    font-size:15px;
  }

  .hero{
    min-height:100vh;
  }

  .hero-text h1{
    font-size:42px;
  }

  .hero-text p{
    font-size:17px;
    line-height:1.7;
  }

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

  .btn,
  .hero-buttons .whatsapp-btn{
    width:100%;
    justify-content:center;
  }

  .values,
  .features,
  .footer{
    padding:80px 5%;
  }

  .footer{
    text-align:center;
  }

  .social-icons{
    justify-content:center;
  }

  .footer-box h3{
    display:inline-block;
  }
}



/* ================= EXTRA SMALL DEVICES ================= */
@media(max-width:480px){

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

  .hero-text p{
    font-size:16px;
  }

  .btn,
  .hero-buttons .whatsapp-btn{
    font-size:15px;
    padding:14px 20px;
  }

  .values h2{
    font-size:30px;
  }

  .card,
  .feature-box{
    padding:30px 20px;
  }
}