   /* ==========================================
   ALUMNI SPEECH / FEEDBACK
========================================== */

.alumni-feedback-section {
  background: #f8f9fc;
}


/* Section Title */

.alumni-feedback-section .section-title {
  max-width: 850px;
  margin: 0 auto;
}

.alumni-feedback-section .section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #293681;
  margin-bottom: 10px;
}

.alumni-feedback-section .section-title h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1d1d1d;
}



/* ==========================================
   ALUMNI PROFILE CARD
========================================== */

.alumni-profile-card {
  max-width: 1000px;
  margin: 0 auto 40px;
  background: #ffffff;
  border: 1px solid #e4e6ef;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}


/* ==========================================
   PROFILE IMAGE
========================================== */

.alumni-image-box {
  width: 100%;
  padding: 25px 25px 0;
  text-align: center;
  background: #ffffff;
}

.alumni-profile-image {
  /* width: 255px; */
  height: 180px;
  object-fit: cover;
  display: inline-block;
  border-radius: 4px;
}


/* ==========================================
   PROFILE DETAILS
========================================== */

.alumni-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #e5e5e5;
  margin-top: 25px;
}

.alumni-info-row {
  display: flex;
  align-items: flex-start;
  padding: 13px 20px;
  border-bottom: 1px solid #e8e8e8;
}

.alumni-info-row:nth-child(odd) {
  border-right: 1px solid #e8e8e8;
}

.alumni-label {
  width: 130px;
  flex-shrink: 0;
}

.alumni-value {
  font-size: 14px;
  color: #111;
  font-weight: 700;
  line-height: 1.5;
}


/* ==========================================
   FEEDBACK CONTENT
========================================== */

.alumni-feedback-content {
  padding: 25px 30px 30px;
  border-top: 1px solid #e8e8e8;
}

.alumni-feedback-content p:last-child {
  margin-bottom: 0;
}


/* ==========================================
   MULTIPLE PROFILE SPACING
========================================== */

.alumni-profile-card + .alumni-profile-card {
  margin-top: 35px;
}


/* ==========================================
   HOVER EFFECT
========================================== */

.alumni-profile-card {
  transition: all 0.3s ease;
}

.alumni-profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.09);
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 767px) {

  .alumni-feedback-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .alumni-feedback-section .section-title h2 {
    font-size: 27px;
  }

  .alumni-feedback-section .section-description {
    font-size: 14px;
  }

  .alumni-image-box {
    padding: 20px 15px 0;
  }

  .alumni-profile-image {
    width: 220px;
    height: 160px;
  }

  .alumni-details {
    grid-template-columns: 1fr;
  }

  .alumni-info-row {
    padding: 11px 15px;
  }

  .alumni-info-row:nth-child(odd) {
    border-right: none;
  }

  .alumni-label {
    width: 115px;
    font-size: 13px;
  }

  .alumni-value {
    font-size: 13px;
  }

  .alumni-feedback-content {
    padding: 20px;
  }

  .alumni-feedback-content p {
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
  }

}
  /* ================================
   EEE FACULTY CARDS
================================ */

.faculty-section {
    background: #fffaf6;
}


/* Faculty Card */

.faculty-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eeeeee;
}

.faculty-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
}


/* Image */

.faculty-image {
    width: 100%;
    height: 335px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(
        135deg,
        #214a9a,
        #08a99a
    );
}

.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Fallback initials */

.faculty-image-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 60px;
    font-weight: 700;
}


/* Green line */

.faculty-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: #08b49f;
}


/* Content */

.faculty-card-content {
    padding: 18px 20px 20px;
}


/* Name */

.faculty-card-content h3 {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.35;
    color: #3e793f;
    font-weight: 700;
}


/* Qualification */

.faculty-qualification i {
    color: #214a9a;
    margin-right: 5px;
}

.faculty-qualification span {
    margin-right: 5px;
}


/* Designation */

.faculty-designation {
    color: #bbb47c;
    font-size: 15px;
    font-weight: 600;
    margin-top: 8px;
}

.faculty-designation i {
    margin-right: 5px;
}


/* Button */

.faculty-view-btn {
    width: 100%;
    border: 0;
    margin-top: 15px;
    padding: 10px 18px;
    border-radius: 30px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(90deg, #bab47c, #3e783f);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faculty-view-btn i {
    margin-right: 7px;
}

.faculty-card:hover .faculty-view-btn {
    letter-spacing: 0.3px;
}


/* Tablet */

@media (max-width: 991px) {

    .faculty-image {
        height: 320px;
    }

}


/* Mobile */

@media (max-width: 575px) {

    .faculty-image {
        height: 350px;
    }

    .faculty-card-content h3 {
        font-size: 19px;
    }

}
/* ==========================================
   EEE LABORATORY IMAGE GALLERY
========================================== */

.lab-gallery-section {
  margin-top: 60px;
  padding-top: 45px;
  border-top: 1px solid #e8e8e8;
}

.lab-gallery-section .section-description {
  max-width: 700px;
  margin: 12px auto 0;
  color: #777;
  line-height: 1.7;
}

.lab-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  height: 250px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.lab-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.lab-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.14);
}

.lab-gallery-card:hover img {
  transform: scale(1.08);
}

.lab-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  transition: all 0.35s ease;
}

.lab-gallery-overlay span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #293681;
  font-size: 17px;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.35s ease;
}

.lab-gallery-card:hover .lab-gallery-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.lab-gallery-card:hover .lab-gallery-overlay span {
  opacity: 1;
  transform: scale(1);
}


/* Gallery spacing */

.lab-gallery-item {
  display: block;
  text-decoration: none;
}


/* Tablet */

@media (max-width: 991px) {

  .lab-gallery-card {
    height: 230px;
  }

}


/* Mobile */

@media (max-width: 575px) {

  .lab-gallery-section {
    margin-top: 40px;
    padding-top: 35px;
  }

  .lab-gallery-card {
    height: 220px;
    border-radius: 10px;
  }

  .lab-gallery-section .section-title h2 {
    font-size: 26px;
  }

}
.lab-accordion {
    width: 100%;
}

.lab-accordion-item {
    margin-bottom: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.lab-accordion-header {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    transition: all 0.3s ease;
}

.lab-accordion-header span {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lab-accordion-header span i {
    font-size: 20px;
}

.lab-accordion-header:hover {
    background: #f8f8f8;
}

.lab-accordion-item.active .lab-accordion-header {
    background: #f5f5f5;
}

.accordion-icon {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.lab-accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.lab-accordion-content {
    display: none;
    padding: 25px;
    border-top: 1px solid #e5e5e5;
}

.lab-accordion-item.active .lab-accordion-content {
    display: block;
}

.lab-description {
    margin-bottom: 25px;
}

.lab-description p {
    margin-bottom: 0;
    line-height: 1.8;
}

.lab-accordion-content .po-table-wrapper {
    width: 100%;
}

@media (max-width: 767px) {

    .lab-accordion-header {
        padding: 16px;
        font-size: 16px;
    }

    .lab-accordion-header span {
        gap: 10px;
    }

    .lab-accordion-content {
        padding: 15px;
    }

    .lab-accordion-content .table {
        min-width: 650px;
    }
}
