/* ====== GENERAL ====== */
    body {
        font-family: 'Titillium Web', sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f8f9fa;
        color: #000000;
    }

    .hero-header {
        position: relative;
        height: 400px;
        background-color: #091535;
        /* background: url('../images/2211.w026.n002.2762B.p1.2762\ edited.jpg') center center / cover no-repeat; */
        display: flex;
        align-items: flex-end; 
    }

    .hero-overlay {
        width: 100%;
        padding: 2rem;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 80%);
    }

    .hero-texts {
        color: #fff;
        text-align: left;
        max-width: 1000px;
        margin: 0 auto;
    }

    .hero-texts h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-texts p {
        font-size: 1.2rem;
        color: #f1f1f1;
    }

        /* ====== GENERAL ====== */
    body {
        font-family: 'Titillium Web', sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f8f9fa;
        color: #000000;
    }

    .hero-header {
        position: relative;
        height: 400px;
        background-color: #091535;
        /* background: url('../images/2211.w026.n002.2762B.p1.2762\ edited.jpg') center center / cover no-repeat; */
        display: flex;
        align-items: flex-end; 
    }

    .hero-overlay {
        width: 100%;
        padding: 2rem;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 80%);
    }

    .hero-texts {
        color: #fff;
        text-align: left;
        max-width: 1000px;
        margin: 0 auto;
    }

    .hero-texts h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-texts p {
        font-size: 1.2rem;
        color: #f1f1f1;
    }

    /* ===== ADVISORS & TRUSTEES SECTION ===== */
    .advisors-section {
      max-width: 1200px;
      margin: 60px auto;
      padding: 20px;
      background-color: #ffffff;
    }

    .section-header h2 {
      font-size: 2rem;
      color: #00395a;
      border-left: 4px solid #e2b902;
      padding-left: 10px;
      margin-bottom: 40px;
    }

    .advisors-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 30px;
    }

    .advisor-card {
      background: #f9fbfd;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 25px;
    }

    .advisor-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .advisor-photo img {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
      /* border: 3px solid #e2b902; */
    }

    .advisor-content h3 {
      font-size: 1.3rem;
      color: #00395a;
      margin-bottom: 5px;
    }

    .advisor-content .designation {
      color: #e2b902;
      font-weight: 600;
      margin-bottom: 10px;
      font-size: 1rem;
    }

    .advisor-content .bio {
      font-size: 0.95rem;
      color: #444;
      line-height: 1.6;
      text-align: justify;
      margin-top: 10px;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .advisors-grid {
        grid-template-columns: 1fr;
      }
      .advisor-content .bio {
        text-align: left;
      }
    }
