/* ===== INNER HEADER ===== */
innerheader {
  background: #ffffff;
  border-bottom: 2px solid #6b0000; /* maroon */
}

innerheader::after {
  content: '';
  display: table;
  clear: both;
}

/* ===== NAV ===== */
innernav {
  text-align: center;
}

innernav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

innernav li {
  display: inline-block;
  margin-left: 2px;
  padding: 18px 20px;
  position: relative;
  margin-bottom: 20px;
}

/* ===== LINKS ===== */
innernav a {
  color: #222; /* black */
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

/* ===== HOVER TEXT ===== */
innernav a:hover {
  color: #6b0000; /* maroon */
}

/* ===== TOP LINE EFFECT ===== */
innernav a::before {
  content: '';
  display: block;
  height: 4px;
  background-color: #d4af37; /* gold */

  position: absolute;
  top: -8px;
  left: 0;
  width: 0%;

  transition: all ease-in-out 250ms;
}

innernav a:hover::before {
  width: 100%;
}

/* ===== ACTIVE TAB ===== */
innernav a.active {
  color: #6b0000;
  font-weight: 600;
}

innernav a.active::before {
  width: 100%;
  background-color: #6b0000; /* maroon highlight */
}
   /* ===== SECTION HEADING ===== */
.content-heading {
    text-align: center;
    color: #6b0000;
    font-weight: 600;
    margin-bottom: 30px;
}

/* ===== CARD GRID ===== */
.staff-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

/* ===== CARD ===== */
.staff-card {
    width: 100%;
    max-width: 260px;
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    border-top: 4px solid #6b0000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.staff-card:hover {
    transform: translateY(-5px);
}

/* ===== IMAGE ===== */
.staff-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 10px 0;
    border: 3px solid #d4af37;
}

/* ===== TEXT ===== */
.staff-role {
    font-size: 13px;
    color: #222;
    background: #f8f9fa;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.staff-name {
    font-size: 15px;
    font-weight: 600;
    color: #6b0000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .staff-card {
        max-width: 100%;
    }
}
/* ===== COLOR THEME ===== */
:root {
    --maroon: #6b0000;
    --gold: #d4af37;
    --black: #222;
    --white: #ffffff;
}

/* ===== CARD SECTION ===== */
.card-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* ===== CARD ===== */
.profile-card {
    width: 100%;
    max-width: 300px;
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border-top: 4px solid var(--maroon);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* ===== IMAGE ===== */
.profile-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--gold);
}

/* ===== TEXT ===== */
.profile-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 5px;
}

.profile-designation {
    font-size: 13px;
    color: var(--black);
    margin-bottom: 10px;
}

.profile-email {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
}

/* ===== BUTTON ===== */
.profile-btn {
    display: inline-block;
    padding: 6px 16px;
    font-size: 12px;
    border-radius: 20px;
    background: var(--maroon);
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid var(--maroon);
}

.profile-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* ===== HEADING ===== */
.content-heading {
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--maroon);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .profile-card {
        max-width: 100%;
    }
}

.section-heading{
    text-align:center;
    margin-bottom:40px;
}

.section-heading h2{
    color: maroon;
    font-weight:700;
}

.achievement-card{
    background:#fff;
    border-radius:15px;
    padding:22px;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.35s;
    border-top:4px solid maroon;
}

.achievement-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.achievement-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#eaf3ff;
    color:maroon;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:15px;
}

.achievement-card h5{
    font-weight:700;
    margin-bottom:12px;
    color:maroon;
}

.achievement-card p{
    text-align:justify;
    color:#555;
    margin-bottom:0;
}

.infrastructure-box{
    background:#f8fbff;
    border-left:5px solid maroon;
    border-radius:10px;
    padding:25px;
    margin-top:50px;
}

.infrastructure-box h4{
    color:maroon;
    margin-bottom:20px;
    font-weight:700;
}

.infrastructure-box ul{
    padding-left:20px;
}

.infrastructure-box li{
    margin-bottom:12px;
}

/*future tab content*/
.future-header{
    text-align:center;
    margin-bottom:45px;
}

.future-header h2{
    font-weight:700;
    color:maroon;
}

.future-header p{
    color:#666;
    max-width:850px;
    margin:auto;
}

.future-card{
    background:#fff;
    border-radius:15px;
    padding:30px;
    height:100%;
    border-left:5px solid maroon;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.35s;
}

.future-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.future-icon{
    width:65px;
    height:65px;
    background:#eef5ff;
    color:maroon;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    margin-bottom:18px;
}

.future-card h4{
    color:maroon;
    font-weight:700;
    margin-bottom:15px;
}

.future-card p{
    text-align:justify;
    color:#555;
    margin-bottom:0;
}

.vision-box{
    margin-top:60px;
    background:linear-gradient(135deg,#950e0e,maroon);
    color:#fff;
    padding:40px;
    border-radius:18px;
}

.vision-box h3{
    font-weight:700;
    margin-bottom:20px;
}

.vision-box p{
    margin-bottom:0;
    text-align:justify;
    line-height:1.8;
}