.logoText {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}

.bgImgSection {
  background-attachment: fixed;
}

/* education section */

.education-wrapper {
  font-family: system-ui, -apple-system, sans-serif;
  background-color: #f8f9fa;
  padding: 40px 20px;
}

.education-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.education-wrapper .edu-section {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.education-wrapper .edu-header {
  background: linear-gradient(135deg, #4baf47, #3d9c3a);
  color: #fff;
  padding: 30px;
  text-align: center;
  position: relative;
}

.education-wrapper .edu-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
}

.education-wrapper .edu-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #fff;
}

.education-wrapper .edu-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 300;
}

.education-wrapper .edu-content {
  padding: 40px;
}

.education-wrapper .edu-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-wrapper .edu-item:last-child {
  border-bottom: none;
}

/* .education-wrapper .edu-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(75, 175, 71, 0.15);
  background: rgba(75, 175, 71, 0.02);
  border-radius: 8px;
  margin: 0 -20px;
  padding: 30px 20px;
} */

.education-wrapper .degree-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4baf47, #5bc450);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(75, 175, 71, 0.3);
}

.education-wrapper .degree-details {
  flex: 1;
}

.education-wrapper .degree-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
  line-height: 1.3;
}

.education-wrapper .degree-field {
  font-size: 1.1rem;
  color: #4baf47;
  font-weight: 600;
  margin-bottom: 6px;
}

.education-wrapper .university-name {
  font-size: 1rem;
  color: #7f8c8d;
  font-weight: 500;
}

.education-wrapper .achievement-badge {
  position: absolute;
  top: 15px;
  right: 0;
  background: linear-gradient(135deg, #4baf47, #3d9c3a);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px 0 0 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.education-wrapper .timeline-connector {
  position: absolute;
  left: 30px;
  top: 60px;
  width: 2px;
  height: calc(100% - 30px);
  background: linear-gradient(to bottom, #4baf47, #e8f5e8);
  transform: translateX(-50%);
}

.education-wrapper .edu-item:last-child .timeline-connector {
  display: none;
}

@media (max-width: 768px) {
  .education-wrapper .edu-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .education-wrapper .timeline-connector {
    display: none;
  }

  .education-wrapper .edu-title {
    font-size: 2rem;
  }

  .education-wrapper .edu-content {
    padding: 30px 20px;
  }

  .education-wrapper .achievement-badge {
    position: static;
    margin: 10px auto 0;
    display: inline-block;
    border-radius: 20px;
  }
}

/* end education section */

/* research section */

.agroforestry-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fffe 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.agroforestry-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(75, 175, 71, 0.03) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.section-header-research {
  text-align: center;
  margin-bottom: 60px;
  transform: translateY(0);
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title-research {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title-research::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4baf47, #66c962);
  border-radius: 2px;
}

.section-subtitle-research {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.research-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(75, 175, 71, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.research-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4baf47, #66c962);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.research-card:hover::before {
  transform: scaleX(1);
}

.research-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(75, 175, 71, 0.15);
}

.card-icon-research {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4baf47, #66c962);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
}

.card-icon-research::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border: 2px solid rgba(75, 175, 71, 0.2);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.card-icon-research svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.card-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 20px;
  line-height: 1.3;
}

.card-description {
  color: #666;
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
}

.highlight-list {
  list-style: none;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateX(5px);
}

.highlight-bullet {
  width: 8px;
  height: 8px;
  background: #4baf47;
  border-radius: 50%;
  margin-right: 15px;
  margin-top: 8px;
  flex-shrink: 0;
  position: relative;
}

.highlight-bullet::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(75, 175, 71, 0.3);
  border-radius: 50%;
  top: -4px;
  left: -4px;
}

.highlight-text {
  font-weight: 500;
  color: #333;
}

.species-name {
  font-style: italic;
  color: #4baf47;
  font-weight: 600;
  /* text-transform: math-auto; */
}

.achievement-badge {
  display: inline-block;
  background: rgba(75, 175, 71, 0.1);
  color: #4baf47;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 4px 2px;
  border: 1px solid rgba(75, 175, 71, 0.2);
  transition: all 0.3s ease;
}

.achievement-badge:hover {
  background: #4baf47;
  color: white;
  transform: translateY(-2px);
}

.special-mention {
  background: linear-gradient(135deg, rgba(75, 175, 71, 0.1), rgba(75, 175, 71, 0.05));
  border-left: 4px solid #4baf47;
  padding: 15px 20px;
  margin-top: 20px;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #555;
}

@media (max-width: 768px) {
  .section-container {
    padding: 0 20px;
  }

  .section-title-research {
    font-size: 2.2rem;
  }

  .research-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .research-card {
    padding: 30px 25px;
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.4s;
}

.fade-in:nth-child(4) {
  animation-delay: 0.6s;
}

/* end research section */

/* journal books */

.publications-section {
  padding: 90px 0;
}

.publications-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

.publication-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(75, 175, 71, 0.1);
  border: 1px solid rgba(75, 175, 71, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.publication-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #4baf47, #5cbf58);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.publication-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(75, 175, 71, 0.2);
}

.publication-card:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.year-badge {
  display: inline-block;
  background: #4baf47;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(75, 175, 71, 0.3);
}

.authors {
  font-size: 1.05em;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.authors .highlight {
  color: #4baf47;
  font-weight: 600;
}

.chapter-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 15px;
  line-height: 1.4;
}

.book-details {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.publication-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.isbn {
  background: #f8f9fa;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.9em;
  color: #666;
  font-family: "Courier New", monospace;
}

.doi-link {
  background: #4baf47;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 500;
  transition: background 0.3s ease;
}

.doi-link:hover {
  background: #3d8f3a;
}

.stats-section {
  margin-top: 0;
}

.stats {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(75, 175, 71, 0.1);
}

.stats h2 {
  color: #4baf47;
  margin-bottom: 20px;
  font-size: 2em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  padding: 20px;
  background: linear-gradient(135deg, #4baf47, #5cbf58);
  color: white;
  border-radius: 10px;
  text-align: center;
}

.stat-number {
  font-size: 2.5em;
  font-weight: bold;
  display: block;
}

.stat-label {
  font-size: 1em;
  opacity: 0.9;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .publication-card {
    padding: 25px;
  }

  .publication-info {
    flex-direction: column;
    gap: 10px;
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.publication-card:nth-child(even) {
  animation-delay: 0.2s;
}

.publication-card:nth-child(odd) {
  animation-delay: 0.1s;
}

/* end journal books */

/* lead talks */

.lead-talks-section {
  padding: 90px 0;
}

.talks-timeline {
  position: relative;
  padding-left: 30px;
}

.talks-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #4baf47, #5cbf58);
  border-radius: 2px;
}

.talk-entry {
  position: relative;
  background: white;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(75, 175, 71, 0.1);
  border: 1px solid rgba(75, 175, 71, 0.1);
  transition: all 0.3s ease;
  margin-left: 40px;
}

.talk-entry::before {
  content: "";
  position: absolute;
  /* left: -55px; */
  left: -60px;
  top: 30px;
  width: 12px;
  height: 12px;
  background: #4baf47;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px #4baf47;
}

.talk-entry:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(75, 175, 71, 0.2);
}

.talk-entry:hover::before {
  transform: scale(1.3);
  background: #5cbf58;
  box-shadow: 0 0 0 3px #5cbf58;
}

.talk-date-badge {
  display: inline-block;
  background: #4baf47;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 600;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(75, 175, 71, 0.3);
}

.talk-role {
  display: inline-block;
  background: rgba(75, 175, 71, 0.1);
  color: #4baf47;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85em;
  font-weight: 600;
  margin-bottom: 15px;
  margin-left: 10px;
  border: 1px solid rgba(75, 175, 71, 0.2);
}

.talk-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 15px;
  line-height: 1.4;
}

.talk-title .highlight {
  color: #4baf47;
  background: rgba(75, 175, 71, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.talk-event {
  color: #666;
  margin-bottom: 12px;
  line-height: 1.5;
  font-style: italic;
}

.talk-venue {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-weight: 500;
}

.talk-venue::before {
  content: "📍";
  font-size: 1.1em;
}

.talk-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.talk-type {
  background: #f8f9fa;
  color: #666;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.85em;
  font-weight: 500;
}

.international-flag {
  display: inline-block;
  background: linear-gradient(45deg, #4baf47, #5cbf58);
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.8em;
  font-weight: 600;
  margin-left: 10px;
}

.talks-summary-section {
  margin-top: 60px;
}

.talks-summary {
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(75, 175, 71, 0.1);
}

.talks-summary .summary-title {
  color: #4baf47;
  margin-bottom: 20px;
  font-size: 2em;
}

.summary-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.summary-stat-item {
  padding: 20px;
  background: linear-gradient(135deg, #4baf47, #5cbf58);
  color: white;
  border-radius: 10px;
  text-align: center;
}

.summary-stat-number {
  font-size: 2.5em;
  font-weight: bold;
  display: block;
}

.summary-stat-label {
  font-size: 1em;
  opacity: 0.9;
  margin-top: 5px;
}

.topics-cloud-section {
  margin-top: 40px;
}

.topics-cloud {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(75, 175, 71, 0.1);
}

.topics-cloud .cloud-title {
  text-align: center;
  color: #4baf47;
  margin-bottom: 25px;
  font-size: 1.5em;
}

.topics-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.topic-tag {
  background: rgba(75, 175, 71, 0.1);
  color: #4baf47;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 500;
  border: 1px solid rgba(75, 175, 71, 0.2);
  transition: all 0.3s ease;
}

.topic-tag:hover {
  background: #4baf47;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .talks-timeline {
    padding-left: 20px;
  }

  .talk-entry {
    margin-left: 25px;
    padding: 25px;
  }

  .talk-entry::before {
    /* left: -40px; */
    left: -35px;
  }

  .talk-meta {
    flex-direction: column;
    gap: 10px;
  }
}

.fade-in-animation {
  animation: fadeInSlide 0.8s ease-out;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.talk-entry:nth-child(even) {
  animation-delay: 0.2s;
}

.talk-entry:nth-child(odd) {
  animation-delay: 0.1s;
}

/* end lead talks */

/* journal */

.publications-container {
  padding: 60px 24px;
}

.publications-header {
  text-align: center;
  margin-bottom: 64px;
}

.publications-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.publications-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4baf47, #6bc967);
  border-radius: 2px;
}

.publications-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  font-weight: 400;
  margin-top: 24px;
}

.publications-grid {
  display: grid;
  gap: 32px;
}

.publication-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(75, 175, 71, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.publication-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4baf47, #6bc967);
}

.publication-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(75, 175, 71, 0.15);
  border-color: rgba(75, 175, 71, 0.2);
}

.publication-year {
  display: inline-block;
  background: #4baf47;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.publication-authors {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
  line-height: 1.5;
}

.author-highlight {
  color: #4baf47;
  font-weight: 700;
}

.publication-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #34495e;
  margin-bottom: 16px;
  line-height: 1.4;
}

.publication-journal {
  font-size: 1rem;
  color: #4baf47;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 8px;
}

.publication-details {
  font-size: 0.95rem;
  color: #7f8c8d;
  font-weight: 500;
}

.publication-volume {
  color: #34495e;
  font-weight: 600;
}

@media (max-width: 768px) {
  .publications-container {
    padding: 40px 16px;
  }

  .publications-title {
    font-size: 2.2rem;
  }

  .publication-card {
    padding: 24px;
  }

  .publications-header {
    margin-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .publications-title {
    font-size: 1.8rem;
  }

  .publication-card {
    padding: 20px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.publication-card:nth-child(1) {
  animation-delay: 0.1s;
}

.publication-card:nth-child(2) {
  animation-delay: 0.2s;
}

.publication-card:nth-child(3) {
  animation-delay: 0.3s;
}

.publication-card:nth-child(4) {
  animation-delay: 0.4s;
}

.publication-card:nth-child(5) {
  animation-delay: 0.5s;
}

.publication-card:nth-child(6) {
  animation-delay: 0.6s;
}

.publication-card:nth-child(7) {
  animation-delay: 0.7s;
}

.publication-card:nth-child(8) {
  animation-delay: 0.8s;
}

/* end journal */

/* achievements section*/

.achievements-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #f8f9f2 100%);
}

.section-title {
  font-size: 4.5rem;
  font-weight: 900;
  color: #2c3e50;
  margin-bottom: 20px;
  letter-spacing: -3px;
  position: relative;
}

.section-subtitle {
  font-size: 1.5rem;
  color: #4baf47;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-bottom: 30px;
}

.section-divider {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #4baf47, #66c962);
  border-radius: 2px;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 600px;
  font-weight: 400;
}

.awards-list {
  list-style: none;
}

.award-entry {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 60px;
  padding: 50px 0;
  border-bottom: 1px solid rgba(75, 175, 71, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.award-entry:last-child {
  border-bottom: none;
}

.award-entry:hover {
  background: rgba(75, 175, 71, 0.02);
  padding-left: 20px;
  padding-right: 20px;
  margin-left: -20px;
  margin-right: -20px;
  border-radius: 16px;
}

.award-year {
  position: sticky;
  top: 50px;
  font-size: 3rem;
  font-weight: 800;
  color: #4baf47;
  line-height: 1;
  opacity: 0.8;
}

.award-content {
  position: relative;
}

.award-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.2;
}

.award-organization {
  font-size: 1.2rem;
  color: #4baf47;
  font-weight: 600;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.org-badge {
  display: inline-block;
  background: rgba(75, 175, 71, 0.1);
  color: #4baf47;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.award-description {
  font-size: 1.1rem;
  color: #495057;
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 700px;
}

.award-highlight {
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  color: #2c3e50;
  font-weight: 600;
  font-style: italic;
}

.award-highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: #4baf47;
}

.award-tags {
  display: flex;
  gap: 10px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.tag {
  background: #fff;
  color: #4baf47;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(75, 175, 71, 0.2);
  transition: all 0.2s ease;
}

.tag:hover {
  background: #4baf47;
  color: #fff;
}

.award-index {
  position: absolute;
  left: -40px;
  top: 50px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(75, 175, 71, 0.03);
  line-height: 1;
  pointer-events: none;
  z-index: -1;
}

.timeline-connector {
  position: absolute;
  left: 60px;
  top: 0;
  bottom: -50px;
  width: 2px;
  background: linear-gradient(180deg, transparent, #4baf47, transparent);
  opacity: 0.3;
}

.award-entry:last-child .timeline-connector {
  display: none;
}

@media (max-width: 1024px) {
  .award-entry {
    grid-template-columns: 100px 1fr;
    gap: 40px;
  }

  .award-year {
    font-size: 2.5rem;
  }

  .award-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .achievements-section {
    padding: 80px 20px;
  }

  .section-title {
    font-size: 3rem;
    letter-spacing: -2px;
  }

  .section-subtitle {
    font-size: 1.2rem;
    letter-spacing: 4px;
  }

  .award-entry {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0;
  }

  .award-year {
    font-size: 2rem;
    position: static;
    color: #4baf47;
    margin-bottom: 10px;
  }

  .award-title {
    font-size: 1.6rem;
  }

  .award-index {
    display: none;
  }

  .timeline-connector {
    display: none;
  }
}

/* Scroll animations */
.award-entry {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease forwards;
}

.award-entry:nth-child(1) {
  animation-delay: 0.2s;
}

.award-entry:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtle background pattern */
.achievements-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(75, 175, 71, 0.02) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.achievements-section {
  position: relative;
}

/* end achievements section*/

.abtContentContainer p {
  text-align: justify;
}

/* gallery */

.galleryContainer {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.galleryContainer:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.galleryContainer img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.galleryContainer:hover img {
  transform: scale(1.05);
}

/* Custom overlay class */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.galleryContainer:hover .gallery-overlay {
  opacity: 1;
  visibility: visible;
}

.overlay-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
}

.galleryContainer:hover .overlay-content {
  transform: translateY(0);
}

.overlay-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.overlay-description {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
  margin-bottom: 12px;
}

.overlay-meta {
  font-size: 0.8rem;
  opacity: 0.8;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 8px;
  margin-top: 8px;
}

.gallerySection {
  padding: 90px 0;
}

/* end gallery */

/* video gallery */

.video-gallery-section {
  padding: 90px 0;
}

.videoGalleryContainer {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.videoGalleryContainer:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.1);
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.videoGalleryContainer iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 12px 12px 0 0;
  transition: transform 0.3s ease;
}

.videoGalleryContainer:hover iframe {
  transform: scale(1.02);
}

.video-title {
  padding: 20px 24px;
  background: #ffffff;
  position: relative;
}

.video-title h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-duration {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
}

/* Optional: Add a subtle gradient overlay for better text readability */
.video-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
  pointer-events: none;
}

/* end video gallery */

/* books */
.books-container {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #fff;
  line-height: 1.6;
}

.books-header {
  text-align: center;
  margin-bottom: 50px;
}

.books-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: #4baf47;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.books-subtitle {
  font-size: 1.2rem;
  color: #666;
  font-weight: 300;
}

.books-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  padding: 90px 0;
}

.book-card {
  background: linear-gradient(135deg, #f6f7f1 0%, #fff 100%);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(75, 175, 71, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(75, 175, 71, 0.1);
  position: relative;
  overflow: hidden;
}

.book-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4baf47, #66c261);
}

.book-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(75, 175, 71, 0.15);
}

.book-number {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #4baf47;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.book-authors {
  color: #4baf47;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1rem;
}

.book-title {
  color: #333;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.book-publication {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.book-isbn {
  color: #888;
  font-size: 0.9rem;
  font-family: "Courier New", monospace;
  background: rgba(75, 175, 71, 0.05);
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 15px;
}

.book-link {
  display: inline-block;
  background: #4baf47;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.book-link:hover {
  background: #3a9938;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(75, 175, 71, 0.3);
}

.book-link::after {
  content: " →";
  margin-left: 5px;
}

@media (max-width: 768px) {
  .books-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .book-card {
    padding: 20px;
  }

  .books-title {
    font-size: 2.5rem;
  }

  .books-container {
    padding: 30px 15px;
  }
}

@media (max-width: 600px) {
  .books-grid {
    grid-template-columns: 1fr;
  }

  .book-card {
    margin: 0;
  }
}

/* end books */

/* Consultancies */

.consultancies-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  overflow: hidden;
}

.background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.03;
  background: #4baf47;
}

.bg-circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.bg-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation: float 25s ease-in-out infinite reverse;
}

.bg-circle-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 10%;
  animation: float 30s ease-in-out infinite;
}

.leaf-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.02;
  background-image: repeating-linear-gradient(45deg, #4baf47 0px, #4baf47 1px, transparent 1px, transparent 15px);
}
.consultancy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.consultancy-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(75, 175, 71, 0.1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.consultancy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(75, 175, 71, 0.15);
  border-color: rgba(75, 175, 71, 0.3);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4baf47, #5fc251);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(75, 175, 71, 0.3);
}

.card-icon::before {
  content: "🌿";
  font-size: 24px;
}

.consultancy-card:nth-child(2) .card-icon::before {
  content: "🎋";
}

.consultancy-card:nth-child(3) .card-icon::before {
  content: "🌳";
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.card-content {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.location-tag {
  background: rgba(75, 175, 71, 0.1);
  color: #4baf47;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(75, 175, 71, 0.2);
  transition: all 0.3s ease;
}

.location-tag:hover {
  background: rgba(75, 175, 71, 0.2);
  transform: scale(1.05);
}

.card-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(75, 175, 71, 0.1), rgba(75, 175, 71, 0.05));
  border-radius: 0 20px 0 50px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@media (max-width: 768px) {
  .consultancies-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .consultancy-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .consultancy-card {
    padding: 30px 25px;
  }

  .bg-circle-1,
  .bg-circle-2,
  .bg-circle-3 {
    display: none;
  }
}

/* end Consultancies */

/* current assignments */

.assignments-section {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9f5 0%, rgba(75, 175, 71, 0.03) 100%);
  overflow: hidden;
}

.assignments-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.assignments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.assignment-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(75, 175, 71, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(75, 175, 71, 0.1);
  overflow: hidden;
}

.assignment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4baf47, #5fbf52);
}

.assignment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(75, 175, 71, 0.12), 0 8px 16px rgba(0, 0, 0, 0.04);
  border-color: #4baf47;
}

.card-number {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 40px;
  height: 40px;
  background: rgba(75, 175, 71, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #4baf47;
}

.assignment-role {
  font-size: 0.9rem;
  color: #4baf47;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.assignment-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e2d;
  margin-bottom: 16px;
  line-height: 1.3;
}

.assignment-journal {
  font-size: 1rem;
  color: #6b7c6e;
  font-style: italic;
  margin-bottom: 20px;
}

.assignment-details {
  font-size: 0.95rem;
  color: #5a6b5d;
  line-height: 1.6;
}

/* Animated Background Elements */
.bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(75, 175, 71, 0.05);
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.circle-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: -3%;
  animation-delay: 2s;
}

.circle-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 5%;
  animation-delay: 4s;
}

.floating-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #4baf47;
  border-radius: 50%;
  animation: dot-float 8s ease-in-out infinite;
  opacity: 0.3;
}

.dot-1 {
  top: 25%;
  right: 20%;
  animation-delay: 0s;
}

.dot-2 {
  top: 70%;
  left: 15%;
  animation-delay: 3s;
}

.dot-3 {
  bottom: 30%;
  right: 10%;
  animation-delay: 6s;
}

.wave-line {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4baf47, transparent);
  opacity: 0.1;
  animation: wave-move 10s linear infinite;
}

.wave-1 {
  top: 30%;
  left: -100px;
  animation-delay: 0s;
}

.wave-2 {
  bottom: 40%;
  right: -100px;
  animation-delay: 5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

@keyframes dot-float {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.3;
  }
  33% {
    transform: translateY(-15px);
    opacity: 0.6;
  }
  66% {
    transform: translateY(15px);
    opacity: 0.2;
  }
}

@keyframes wave-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100vw);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .assignments-section {
    padding: 60px 20px;
  }

  .assignments-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .assignment-card {
    padding: 30px 25px;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .assignment-card {
    padding: 25px 20px;
  }

  .card-number {
    top: 15px;
    right: 20px;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}
/* end current assignments */
