
    /* General Styling */
       body {
      font-family: 'Roboto', sans-serif;
      background-color: #f9f9f9;
      color: #333;
      margin: 0;
      padding: 0;
    }

    .container {
      margin-top: 50px;
    }

    h2 {
      text-align: center;
      margin-bottom: 30px;
    }

    .unit-table {
      width: 100%;
      margin-bottom: 30px;
      border-collapse: collapse;
    }

    .unit-table th, .unit-table td {
      padding: 10px;
      text-align: left;
      border: 1px solid #ddd;
    }

    .unit-table th {
      background-color: #007bff;
      color: white;
    }

    .unit-table tr:nth-child(even) {
      background-color: #f2f2f2;
    }

    .unit-table tr:hover {
      background-color: #ddd;
    }

    .unit-table td {
      font-size: 14px;
    }

    .unit-title {
      font-weight: bold;
      font-size: 16px;
    }

    .unit-details {
      font-style: italic;
    }

    .member-title {
      font-weight: 500;
    }

  
    /* Header Image Styling */
    .header-image {
      width: 100%;
      height: auto;
      object-fit: cover;
      filter: brightness(95%);
      position: relative;
    }

    /* Scrolling Images */
    .scrolling-images-wrapper {
      width: 100%;
      overflow: hidden;
    }

    .scrolling-images {
        padding-top: 10px;
      display: flex;
      gap: 15px;
      animation: scrollImages 20s linear infinite;
    }

    .scrolling-images img {
      max-width: 300px;
      width: 100%;
      height: auto;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .scrolling-images img:hover {
      transform: scale(1.05);
    }

    @keyframes scrollImages {
        0% {
          transform: translateX(100%);
        }
        100% {
          transform: translateX(-100%);
        }
      }
      
    /* Description Section */
    .description-section {
      background-color: #fff;
      padding: 50px;
      border-radius: 10px;
      box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
      margin-top: -50px;
      z-index: 1;
    }

    .description-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #007bff;
      margin-bottom: 30px;
    }

    .description-item {
      margin-bottom: 25px;
    }

    .description-item h3 {
      font-size: 1.8rem;
      font-weight: 600;
      color: #333;
      margin-bottom: 15px;
    }

    .description-item ul {
      font-size: 1.1rem;
      padding-left: 20px;
      list-style-type: disc;
      color: #555;
    }

    .description-item p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #333;
    }

    .footer {
      background-color:rgb(160, 0, 0);
      color: #fff;
      text-align: center;
      padding: 20px;
    }

    /* Smooth 3D Animation */
    .animate-3d {
      transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }

    .animate-3d:hover {
      transform: scale(1.05) rotateY(15deg);
      box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    }


    .gallery-img {
        width: 100%;
        height: 200px; /* Set a fixed height */
        object-fit: cover; /* Ensures the image covers the area while maintaining its aspect ratio */
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .gallery-img:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    }
    .image-container {
        margin-bottom: 15px;
    }

    .team-member {
        border: 2px solid #ddd;
        padding: 15px;
        text-align: center;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .team-member img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 15px;
    }
    /* For smaller screens, center the text */
    @media (max-width: 576px) {
        .team-member h4 {
            font-size: 1.2rem;
        }
        .team-member p {
            font-size: 0.9rem;
        }
    }
