/* ===== GLOBAL ===== */
body {
  font-family: 'Hubot Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
}

/* ===== FACULTY VALUES SECTION ===== */
.faculty-values-section {
  padding: 80px 0;
  background: #F7F6EC;
}

.faculty-value-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 32px 28px;
  height: 100%;
  border: 2px solid #F7F6EC;
  box-shadow: 0 10px 28px rgba(232, 64, 42, 0.08);
  transition: all 0.3s ease;
}

.faculty-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(232, 64, 42, 0.12);
  border-color: #E8402A;
}

/* ICON */
.faculty-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E8402A, #F08C1C);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(232, 64, 42, 0.25);
}

.faculty-icon i {
  font-size: 24px;
  color: #FFFFFF;
}

/* TEXT */
.faculty-value-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faculty-value-card p {
  font-size: 14.5px;
  color: #000000;
  line-height: 1.65;
}

/* MOBILE */
@media (max-width: 768px) {
  .faculty-values-section {
    padding: 60px 0;
  }
}
/* ===== FACULTY SHOWCASE ===== */
.faculty-showcase-section {
  padding: 90px 0;
  background: #FFFFFF;
}

/* HEADER */
.faculty-showcase-header h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
}

.faculty-showcase-header p {
  max-width: 620px;
  color: #000000;
  font-size: 15.5px;
}

.faculty-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #000000;
  margin-left: 16px;
}

.faculty-meta i {
  color: #E8402A;
}

/* CARD */
.faculty-card {
  background: #FFFFFF;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid #F7F6EC;
  box-shadow: 0 12px 30px rgba(232, 64, 42, 0.08);
  transition: all 0.3s ease;
}

.faculty-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(232, 64, 42, 0.15);
  border-color: #E8402A;
}

/* IMAGE */
.faculty-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* INFO */
.faculty-info {
  padding: 18px 18px 22px;
}

.faculty-info h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.faculty-info .designation {
  display: block;
  font-size: 14px;
  color: #000000;
  margin-bottom: 10px;
}

.faculty-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faculty-info ul li {
  font-size: 13.5px;
  color: #000000;
  margin-bottom: 6px;
}

.faculty-info ul i {
  margin-right: 8px;
  color: #E8402A;
}

/* MOBILE */
@media (max-width: 768px) {
  .faculty-showcase-header h2 {
    font-size: 26px;
  }

  .faculty-meta {
    margin-top: 12px;
  }
}
/* ===== FACULTY PHILOSOPHY SECTION ===== */
.faculty-philosophy-section {
  padding: 120px 0;
  background: radial-gradient(circle at top, #000000, #000000 70%);
  color: #FFFFFF;
  text-align: center;
}

/* QUOTE */
.faculty-quote {
  max-width: 900px;
  margin: 0 auto 22px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
}

.quote-divider {
  width: 60px;
  height: 3px;
  background: rgba(255,255,255,0.35);
  margin: 0 auto 26px;
  border-radius: 2px;
}

/* DESCRIPTION */
.faculty-quote-desc {
  max-width: 820px;
  margin: 0 auto 60px;
  font-size: 16px;
  line-height: 1.7;
  color: #FFFFFF;
}

/* STATS */
.faculty-stats {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}

.stat-item h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 6px;
}

.stat-item span {
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #FFFFFF;
}

/* MOBILE */
@media (max-width: 768px) {
  .faculty-quote {
    font-size: 26px;
  }

  .faculty-stats {
    gap: 34px;
  }

  .stat-item h3 {
    font-size: 26px;
  }
}
/* ===== FACULTY CTA SECTION ===== */
.faculty-cta-section {
  padding: 90px 0;
  background: #F7F6EC;
}

.faculty-cta-box {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 2px solid #F7F6EC;
  box-shadow: 0 12px 30px rgba(232, 64, 42, 0.08);
}

/* TEXT */
.faculty-cta-content {
  max-width: 640px;
}

.faculty-cta-content h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.faculty-cta-content p {
  font-size: 15.5px;
  color: #000000;
  line-height: 1.7;
}

/* ACTIONS */
.faculty-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-faculty-primary {
  background: #E8402A;
  color: #FFFFFF;
  padding: 12px 26px;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-faculty-primary:hover {
  background: #A70000;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-faculty-outline {
  background: #FAEBD7;
  color: #E8402A;
  padding: 12px 26px;
  border-radius: 24px;
  font-weight: 600;
  border: 2px solid #E8402A;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-faculty-outline:hover {
  background: #E8402A;
  color: #FFFFFF;
}

/* MOBILE */
@media (max-width: 768px) {
  .faculty-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }

  .faculty-cta-actions {
    justify-content: center;
  }

  .faculty-cta-content h3 {
    font-size: 22px;
  }
}
