.header-style-1 .header-middle-ptb-1 {
    padding: 5px 0;
}

.card-2 .heading-card a {
    color: var(--color-heading);
    font-size: 16px;
}
 .banner-img, .banner-img img {
    border-radius: 10px;
    height: 228px;
}
.categories-dropdown-wrap.style-2 ul li {
    border: 0;
    border-radius: 0;
    height: 24px;
    line-height: 24px;
    margin-bottom: 16px;
    padding: 16px;
    font-weight: 700;
}

.categories-dropdown-wrap.style-2 ul li a {
    font-weight: 700;
}
.card-2 .heading-card {
    overflow: hidden;
    padding: 0 10px;
    text-overflow: ellipsis;
    white-space: pre-line;
    height: 52px;
}

.banner-img .banner-text h4 {
    font-weight: 700;
    margin-bottom: 15px;
    min-height: 100px;
    color: #c02223;
    background-color: #ffea3d54;
    padding: 6px;
}

.categories-dropdown-wrap.style-2 {
    border: 1px solid rgba(var(--color-brand-rgb), .4);
    border-radius: 10px;
    padding-top: 15px;
}

  /* Container styling */
  .section {
    padding: 60px 20px;
    
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fffaf3;
  }

  h2 {
    font-size: 2em;
    color: #d89b00;
    margin-bottom: 20px;
    text-align: center;
  }

  p, li {
    font-size: 1.1em;
    line-height: 1.8;
  }

  ul {
    padding-left: 20px;
  }

  /* Animation */
  .slide-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideLeft 1s forwards;
  }

  .slide-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideRight 1s forwards;
  }

  @keyframes slideLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Animation delay for stagger effect */
  .slide-delay-1 { animation-delay: 0.2s; }
  .slide-delay-2 { animation-delay: 0.4s; }
  .slide-delay-3 { animation-delay: 0.6s; }
  .slide-delay-4 { animation-delay: 0.8s; }
  .slide-delay-5 { animation-delay: 1s; }

 

    h1 {
      font-size: 2.4em;
      color: #d89b00;
      margin-bottom: 10px;
    }

    p.subtitle {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 50px;
    }

    .board-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .director-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 20px;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      opacity: 0;
    }

    .director-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }

    .director-photo {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 15px;
      border: 4px solid #d89b00;
    }

    h3 {
      margin: 10px 0 5px;
      color: #222;
    }

    span.role {
      display: block;
      font-size: 0.95em;
      color: #777;
      margin-bottom: 10px;
    }

    p.bio {
      font-size: 0.95em;
      color: #555;
      line-height: 1.6;
    }

    /* Animation setup */
    .slide-left, .slide-right, .slide-up {
      opacity: 0;
      transform: translateY(50px);
      animation: fadeInUp 1s forwards;
    }

    .slide-left { transform: translateX(-60px); animation: slideInLeft 1s forwards; }
    .slide-right { transform: translateX(60px); animation: slideInRight 1s forwards; }

    @keyframes slideInLeft {
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes slideInRight {
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeInUp {
      to { opacity: 1; transform: translateY(0); }
    }

    /* Delay classes for staggered appearance */
    .delay-1 { animation-delay: 0.2s; }
    .delay-2 { animation-delay: 0.4s; }
    .delay-3 { animation-delay: 0.6s; }
    .delay-4 { animation-delay: 0.8s; }

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: inherit;
}