
.hero-section{
  min-height:55vh;
  display:flex;
  align-items:center;
  position: relative;
  overflow:hidden;
}


/* OVERVIEW PAGE HERO */
.hero-act_banner{
  background: 
    url("../images/SMHS Advisory Board.jpeg") center/cover no-repeat;
}


.hero-content{
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

/* When visible */
.hero-content.show{
  opacity: 1;
  transform: translateY(0);
}


/* Optional glow effect */
.hero-title{
  font-size: 2.8rem !important;
  font-weight: 600 !important;
  /*text-shadow: 0 4px 20px rgba(0,0,0,0.4);*/
}

/* Mobile Image */
@media (max-width:768px){

  .hero-act_banner{
    background:
      url("../images/SMHS Advisory Board.jpeg") center/cover no-repeat;
  }

}
.text-white{
	color:#ffffff !important;
}
/* ================= CLEAN ADVISORY TABLE ================= */

.advisory-modern-section{
  background: #fafafa;
  color: #000;
}

/* Header */
.adv-tag{
    display: inline-block;
    background: rgba(3, 91, 166, 0.1);
    color: #035ba6;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 18px;
    letter-spacing: .5px;
}

.adv-title{
  color: #035ba6;
  font-size:2.8rem !important;
}

/* Table Wrapper */
.advisory-table-wrap{
  background: #ffffff;
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Table */
.advisory-table{
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}

/* Table Head */
.advisory-table thead th{
  background: #035ba6;
  color: #ffffff;
  font-weight: 600;
  padding: 14px 16px;
  border: none;
  text-align: left; /* 👈 LEFT ALIGN */
  font-size: 0.95rem;
}

/* Table Body */
.advisory-table tbody td{
  padding: 14px 16px;
  font-size: 0.95rem;
  color: #333;
  vertical-align: top;
  border-bottom: 1px solid #e6e6e6;
  text-align: left; /* 👈 LEFT ALIGN */
}

/* Hover */
.advisory-table tbody tr:hover{
  background: #f7faff;
}

/* Name Highlight */
.advisory-table td strong{
  color: #035ba6;
  font-weight: 600;
}

/* Links */
.advisory-table a{
  color: #f38020;
  font-weight: 600;
  text-decoration: none;
}

.advisory-table a:hover{
  color: #035ba6;
  text-decoration: underline;
}

/* Responsive */
@media(max-width:768px){
  .adv-title{
    font-size: 2.1rem;
  }

  .advisory-table tbody td,
  .advisory-table thead th{
    font-size: 0.9rem;
  }
}