
  <style>
    body {
      font-family: Arial, sans-serif;
      background-color:  #002147;
      margin: 0;
      padding: 0;
    }

    .container {
      padding: 20px;
      max-width: 100%;
      margin: auto;
    }

    .row-container {
      display: flex;
      flex-wrap: nowrap;
      gap: 20px;
    }

    .left-section {
      width: 60%;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .left-section .card {
      flex: 1 1 calc(33.33% - 13.33px);
      background-color:  #002147; 
     /* background-color:  #002147; #FFF1E8; */
      color: white;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      min-height: 230px;
    }

    .card h2 {
      text-align: center;
      color: #ffd700;
      margin-bottom: 15px;
    }

    .peo-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .peo-item {
      background-color: rgba(255, 255, 255, 0.1);
      padding: 10px;
      border-left: 4px solid #ffd700;
      border-radius: 6px;
    }

    .right-section {
      width: 40%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hod-card {
      background-color: #002147;
      color: white;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .hod-card img {
      width: 180px;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .hod-info {
      display: flex;
      flex-direction: column;
    }

    .hod-name {
      font-size: 18px;
      font-weight: bold;
      color: #001a4d;
      margin-bottom: 5px;
    }

    .hod-info p {
      font-size: 14px;
      margin: 5px 0;
      line-height: 1.5;
      text-align: justify;
    }

    @media (max-width: 992px) {
      .row-container {
        flex-wrap: wrap;
      }

      .left-section,
      .right-section {
        width: 100%;
      }

      .left-section .card {
        flex: 1 1 calc(50% - 10px);
      }

      .hod-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .hod-card img {
        margin-bottom: 15px;
      }

      .hod-info p {
        text-align: center;
      }
    }

    @media (max-width: 600px) {
      .left-section .card {
        flex: 1 1 100%;
      }
    }
  </style>

