/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Poppins, Arial, sans-serif;
  color:#333;
  line-height:1.6;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

.center{text-align:center}

/* =====================
   TOP CONTACT BAR
===================== */
.top-contact-bar{
  background: linear-gradient(90deg, #2f5d3b, #4eb866);
  padding: 8px 0;
  font-size: 14px;
}

.top-contact-flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-email a{
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.top-social{
  display: flex;
  gap: 16px;
}

.top-social a{
  color: #fff;
  font-size: 18px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.top-social a:hover{
  transform: scale(1.15);
  opacity: 0.85;
}

/* Hide top bar on mobile */
@media (max-width: 768px){
  .top-contact-bar{
    display: none;
  }
}

/* =====================
   HEADER / NAV
===================== */
.header{
  background:#fff;
  border-bottom:1px solid #eee;
}

.header-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

.logo{
  font-size:24px;
  font-weight:700;
  color:#2f5d3b;
}

/* Bootstrap menu underline animation */
.navbar-nav .nav-link{
  position: relative;
  padding: 8px 12px;
  font-weight: 500;
  color: #2f5d3b;
}

.navbar-nav .nav-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #2f5d3b;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after{
  width: 100%;
}

/* =====================
   HERO
===================== */
.hero{
  background:#e7f1ea;
  padding:100px 0;
  text-align:center;
}

.hero h1 span{
  color:#2f5d3b;
}

/* BUTTONS */
.btn{
  display:inline-block;
  background:#2f5d3b;
  color:#fff;
  padding:12px 30px;
  margin-top:20px;
  text-decoration:none;
  border-radius:4px;
}

.btn.light{
  background:#fff;
  color:#2f5d3b;
  border:1px solid #2f5d3b;
}

/* =====================
   SECTIONS
===================== */
.section{
  padding:80px 0;
}

.light-bg{background:#f8f8f8}

.dark-bg{
  background:#2f5d3b;
  color:#fff;
}

.dark-bg .card{
  color:#333;
}

/* =====================
   GRID / CARDS
===================== */
.grid-3{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.card,
.icon-card{
  background:#fff;
  padding:30px;
  border-radius:6px;
}

.card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:6px;
  margin-bottom:15px;
}

.icon-card i{
  font-size:48px;
  color:#2f5d3b;
  margin-bottom:15px;
}

/* =====================
   TWO COLUMN
===================== */
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.responsive-img{
  width:100%;
  height:auto;
  border-radius:8px;
}

/* =====================
   FORM
===================== */
.form input,
.form textarea{
  width:100%;
  padding:12px;
  margin-bottom:12px;
  border:1px solid #ddd;
  border-radius:4px;
}

/* =====================
   FOOTER
===================== */
.footer{
  background:#111;
  color:#ccc;
  padding:60px 0;
}

.footer h4{
  color:#fff;
}
/* SECTION */
.feature-section{
  background:#f6faf7;
}

/* CARD */
.feature-card{
  background:#049948;
  padding:45px 35px;
  border-radius:12px;
  text-align:center;
  transition:all 0.4s ease;
  animation: fadeUp 0.9s ease both;
}

.feature-card:hover{
  transform: translateY(-10px);
  box-shadow:0 25px 60px rgba(47,93,59,0.12);
}

/* ICON */
.feature-icon{
  width:90px;
  height:90px;
  margin:0 auto 25px; 
  display:flex;
  align-items:center;
  justify-content:center;
}

.feature-icon i{
  font-size:42px;
  color:#fff;
}

/* TITLE */
.feature-card h3{
  font-size:22px;
  font-weight:600;
  margin-bottom:15px;
  color:#fff;
}

/* TEXT */
.feature-card p{
  font-size:15.5px;
  line-height:1.7;
  color:#fff;
  margin-bottom:30px;
}

/* BUTTON */
.feature-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 22px;
  border:1px solid #fff;
  border-radius:30px;
  font-size:14px;
  font-weight:500;
  color:#fff;
  text-decoration:none;
  transition:all 0.3s ease;
}

.feature-btn:hover{
  background:#2f5d3b;
  color:#fff;
}

/* ANIMATION */
.delay-1{animation-delay:0.1s}
.delay-2{animation-delay:0.25s}
.delay-3{animation-delay:0.4s}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(35px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

