/* Start custom CSS for html, class: .elementor-element-f757111 */.faculty-section {
  padding: 60px 20px;
  background: #f5f7fa;
}

.faculty-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1300px;
  margin: auto;
}

.faculty-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  padding-bottom: 20px;
}

.faculty-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.faculty-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.faculty-card h3 {
  font-size: 17px;
  margin: 15px 10px 5px;
  font-weight: 700;
}

.designation {
  color: #0066cc;
  font-weight: 600;
  margin-bottom: 8px;
}

.qualification {
  font-size: 13px;
  padding: 0 15px;
  color: #555;
  margin-bottom: 6px;
}

.mobile {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}/* End custom CSS */