.imef-guideline {
  margin-top: 3rem;
  background-color: #f9f9f9;
  padding: 3rem 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  font-family: 'Open Sans', sans-serif;
}

.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: #1a5276;
  margin-bottom: 2rem;
  text-align: center;
}

.guideline-box {
  background: #ffffff;
  border-left: 5px solid #74c5b5;
  padding: 1.5rem 1.8rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(116, 197, 181, 0.15);
  transition: all 0.3s ease-in-out;
}

.guideline-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(116, 197, 181, 0.25);
}

.guideline-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a5276;
  margin-bottom: 1rem;
}

.guideline-box p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.guideline-list {
  list-style-type: none;
  padding-left: 1rem;
}

.guideline-list li {
  padding: 0.5rem 0;
  font-size: 16px;
  color: #444;
  position: relative;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}
.event-banner-container {
  width: 100%;
  padding: 3rem 0; /* space on top and bottom */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  animation: fadeInUp 1.5s ease-in-out both;
}

.event-banner-full {
  max-width: 90%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: floatIn 2s ease forwards;
}

/* Fade in from bottom */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional slight zoom on load */
@keyframes floatIn {
  0% {
    transform: scale(0.97);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


.guideline-list li:nth-child(1) { animation-delay: 0.2s; }
.guideline-list li:nth-child(2) { animation-delay: 0.4s; }
.guideline-list li:nth-child(3) { animation-delay: 0.6s; }
.guideline-list li:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.event-banner-container {
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1.5s ease-in-out both;
  }
  
  .event-banner-full {
    max-width: 55%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* optional enhanced image shadow */
    animation: floatIn 2s ease forwards;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes floatIn {
    0% {
      transform: scale(0.98);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  .greener-course-section {
    padding: 40px 20px;
    background-color: #f9fdfb;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
  }
  
  .green-title {
    color: #27ae60;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    font-size: 28px;
  }
  
  .green-paragraph {
    color: #2d7a50;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
  }
  
  
  .greener-course-section h3 {
    margin-top: 30px;
    color: #1a5276;
    font-weight: 600;
  }
  
  .greener-course-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2d2d2d;
    margin-bottom: 20px;
  }
  
  .pcf-list {
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 30px;
  }
  
  .pcf-list li {
    margin-bottom: 10px;
    color: #34495e;
    font-size: 1.05rem;
    line-height: 1.6;
  }
  .event-banner-zoom-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    transition: all 0.3s ease;
  }
  
  .zoomable-banner {
    width: 100%;
    transition: transform 0.5s ease;
    cursor: zoom-in;
  }
  
  .zoomable-banner:hover {
    transform: scale(1.5);
    cursor: zoom-out;
  }
  
  
  