.news-announcement {
    overflow: hidden; /* Hides content outside the container */
    white-space: nowrap; /* Keeps all content on a single line */
    box-sizing: border-box;
    /* Use Bootstrap utility classes for styling, e.g., bg-light, p-2 */
    background: #EAF6EC;
  border-bottom: 1px solid #CFE8D6;
  padding: 6px 0;
  position: relative;
}

.news-announcement::before,
.news-announcement::after {
  content: '';
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  z-index: 2;
}

.news-announcement::before {
  left: 0;
  background: linear-gradient(to right, #EAF6EC, transparent);
}

.news-announcement::after {
  right: 0;
  background: linear-gradient(to left, #EAF6EC, transparent);
}

.highlight {
  color: #6A8F3D;
  font-weight: 600;
}

.news-content {
    display: inline-block;
    padding-left: 100%; /* Starts content off-screen to the right */
    animation: marquee 22s linear infinite; /* Adjust duration to control speed */
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2F5D3A;
}

.news-content:hover {
    animation-play-state: paused; /* Pauses animation on hover */
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


.navbar-item.active > a {
  color: #2e7d32;
  font-weight: 600;
  border-bottom: 2px solid #2e7d32;
}
.navbar-item.active > .navbar-link {
  color: #2e7d32;
  font-weight: 600;
  border-bottom: 2px solid #2e7d32;
}
.header-social {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;              /* space between icons */
}
.header-social li {
  margin: 0;
  padding: 0;
}
.header-social a {
    padding: 6px;          /* control clickable area */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.header-social li a {
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    color: var(--primary);
    background: var(--white);
    text-shadow: var(--primary-tshadow);
    -webkit-box-shadow: var(--primary-bshadow);
    box-shadow: var(--primary-bshadow);
    transition: all 
linear 0.3s;
    -webkit-transition: all 
linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.header-social a:hover {
  background: #e8f5e9;   /* light green bg */
  color: #2e7d32;
}
.header-social a::before,
.header-social a:hover::before {
  color: #2e7d32 !important;
}
.header-part {
  position: relative;
  transition: all 0.3s ease;
}

.header-part.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);

  animation: fadeInDown 0.7s cubic-bezier(0.22, 1, 0.36, 1);;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.banner-part {
  min-height: 420px;
  width: 100%;
  background-image: url("../images/bannerbg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-part::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
}

.banner-part {
  position: relative;
  overflow: hidden;
}

.banner-part::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.75) 0%,
    rgba(255,255,255,0.9) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.banner-part > * {
  position: relative;
  z-index: 2;
}
.banner-part {
  background-blend-mode: soft-light;
  filter: saturate(0.95);
}
.banner-part {
  min-height: 420px;
  max-height: 560px;
  /*height: calc(100vh - 220px); */
  display: flex;
  align-items: center;
}
.banner-part .row {
  height: 100%;
  align-items: center;
}

.banner-part img {
  height: 95%;          /* HERO SIZE */
  max-height: 560px;   /* safety cap */
  width: auto;
  object-fit: contain;
  transform: translateY(-8%);
}
.banner-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
}
.banner-content h1{
  color: #1f2933;   /* near-black, not harsh */
  font-weight: 700;
  letter-spacing: -0.4px;
}
.banner-content .accent{
 color: #2e7d32; /* your brand green */
}
.banner-content p{
  color: #4b5563;
  line-height: 1.65;
  max-width: 520px;
  font-size: 16px;
}
.banner-btn{
  .banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 28px;
  width: auto;

  background-color: #2e7d32;
  color: #fff;
  border-radius: 6px;

  font-weight: 600;
  text-decoration: none;
}

}
.section-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
  color: #1f2933;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #2e7d32;
  margin: 10px auto 0;
  border-radius: 2px;
}
.suggest-card {
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
  height: 150px;
}
.suggest-card img {
  transition: transform 0.35s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suggest-card:hover img {
  transform: scale(1.05);
}

.suggest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.suggest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.05)
  );
  border-radius: inherit;
  pointer-events: none;
}
.suggest-card h5 {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  text-align: center;

  color: #fff;
  font-weight: 600;
  font-size: 16px;
  z-index: 2;
  margin: 0;
  line-height: 1.3;
}
.suggest-slider .slick-arrow {
  /*background: rgba(37, 101, 40, 0.15);*/
  color: #256528;
  border: 1px solid rgba(37, 101, 40, 0.3);
  background: transparent;
  opacity: 1;
  visibility: visible;
}

.suggest-slider .slick-arrow:hover {
  background: rgba(37, 101, 40, 0.15);
}


@media (max-width: 768px) {
  .banner-part {
    min-height: fit-content;
    height: auto;
    /*padding: 40px 15px;*/
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .banner-part img {
    /*height: auto;*/
    max-height: 360px;
    transform: translateY(-10%);
  }
}
.featured-intro {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.featured-intro h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2e2e2e;
  position: relative;
}

.featured-intro h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #2e7d32;
  margin: 12px auto 0;
  border-radius: 2px;
}
.featured-banner {
  margin-bottom: 24px;
}
.featured-img {
  max-height: 87vh;      
  width: 100%;
  object-fit: fill;
  object-position: center;
  display: block;
  border-radius: 10px;   
}
.f-btn{
  position: absolute;
  bottom: 69px;
  right: 230px;
  width: 300px;
}
.f-btn.btn {
  transition: all 0.2s ease;
  color: #fffffff;
  background: #119744;
}

.f-btn.btn:hover {
  color: #119744;
  background-color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(34, 139, 34, 0.35);
}

.f-btn.btn:active {
  color: #119744;
  background-color: white;
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(34, 139, 34, 0.25);
}


@media (min-width: 768px) {
  .suggest-slider .slick-arrow {
    opacity: 0;
    visibility: hidden;
  }
  .suggest-slider:hover .slick-arrow {
    opacity: 0.8;
    visibility: visible;
  }

}

.section-desc {
  max-width: 900px;
  margin: 12px auto 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
  letter-spacing: 0.2px;
}
.card{
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  cursor: pointer;
}
.card-image {
  height: 180px;
  object-fit: cover;
  width: 100%;
  display: block;
}
.card-btn {
  margin-top: auto;
  margin-bottom: 8px;
  font-size: 12.5px;
  padding: 5px 14px;
  border-radius: 18px;
  min-width: unset;
}
.card-body {
  display: flex;
  flex-direction: column;
}

.card-img-wrap {
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card-img-wrap img {
  transition: transform 0.35s ease, filter 0.35s ease;
}

.card-img-wrap:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}
.card-img-wrap::after {
  content: "Tap to explore";
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 11px;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 4px 8px;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-img-wrap:hover::after {
  opacity: 1;
}


.card-img-wrap {
  position: relative;
}

.card-img-wrap::after {
  content: "Tap to explore";
  position: absolute;
  bottom: 14px;
  left: 72%;
  display: inline-flex;
  white-space: nowrap;   
  transform: translateX(-50%);
  font-size: 11px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.4px;
  opacity: 0.85;
}
.dcard-img-wrap{
  position: relative;
}
.dcard-img-wrap::after {
  content: "Tap to explore";
  position: absolute;
  bottom: 14%;
  left: 72%;
  transform: translateX(-50%);
  
  padding: 4px 10px;
  font-size: 11px;
  line-height: 1;
  
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  
  white-space: nowrap;
  pointer-events: none;
}
.dcard-image{
  height: 180px;
  object-fit: cover;
  width: 100%;
  display: block;
 object-position: center top; 
}
.explore-btn{
  margin-top: 20px;
  margin-bottom: 6px;
  border-radius: 20px;
  position: relative;
}
/* Hide this hint on desktop */
@media (min-width: 992px) {
  .card-img-wrap::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .card-img-wrap::after {
    animation: tapHint 2.5s ease-in-out infinite;
  }
}

@keyframes tapHint {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.9; }
}


@media (max-width: 768px) {
  .suggest-slider::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(
      to left,
      rgba(248, 249, 248, 0.65),
      rgba(248, 249, 248, 0.0)
    );
  }
}
@media (max-width: 768px) {
  .f-btn {
    bottom: 30px;
    right: 24px;
    font-size: 14px;
    padding: 8px 14px;
    width: 160px;
  }
}

@media (max-width: 768px) {
  .static-card .card {
    margin-bottom: 12px;
  }
}
@media (max-width: 786px) {
  .card-btn {
    padding: 6px 0;
    font-size: 12px;
    width: 200px;
  max-width: 100%;
  margin: 12px auto 0; /* centers horizontally */
  padding: 6px 0;
  border-radius: 20px;
  text-align: center;
  display: block;
  }
}
/*@media (max-width: 576px) {
  .f-btn {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    min-width: 75%;
    bottom: 20px;
  }
}*/