

/* About Hero Section Start */
#about_hero_section {
  position: relative;
  width: 100%;
  height: 400px;
  background-image: url("../img/home/page-hero-img.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#about_hero_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 87, 28, 0.5);
  z-index: 1;
}

.about_hero_content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.about_hero_content h1 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about_hero_btn {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.about_hero_btn a {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
  border: 2px solid var(--white);
}

.about_hero_btn a:first-child {
  background-color: var(--white);
  color: var(--primary-color);
}

.about_hero_btn a:first-child:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.about_hero_btn a:last-child {
  background-color: transparent;
  color: var(--white);
}

.about_hero_btn a:last-child:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* About Hero Section End */


/* News & Events Section Start */

#news_events_section {
  padding: 50px 20px;
  max-width: 1300px;
  margin: auto;
}

#news_events_section .news_events_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

#news_events_section .news_events_grid .news_events_card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

#news_events_section .news_events_grid .news_events_card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.news_events_grid .news_events_card .news_events_image_wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.news_events_grid .news_events_card .news_events_image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news_events_grid .news_events_card:hover .news_events_image_wrapper img {
  transform: scale(1.08);
}

.news_events_grid .news_events_card .news_events_content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news_events_grid .news_events_card .news_events_content .news_events_title {
  font-size: 20px;
  font-weight: bold;
  color: var(--black);
  margin-bottom: 12px;
  text-align: center;
}

.news_events_grid .news_events_card .news_events_content .news_events_description {
  font-weight: 400;
  font-family: var(--secondary-font);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news_events_grid .news_events_card .news_events_content .news_events_button {
  text-align: center;
}

.news_events_grid .news_events_card .news_events_content .news_events_button a {
  font-family: var(--secondary-font);
  display: inline-block;
  background: var(--green-color);
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  padding: 10px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.4s;
  border: none;
}

.news_events_grid .news_events_card .news_events_content .news_events_button a:hover {
  background: var(--red-color);
}

@media (max-width: 1024px) {
  #news_events_section .news_events_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  #news_events_section .news_events_grid {
    grid-template-columns: 1fr;
  }
}

/* News & Events Section End */