/* =====================================
   GOVERNANCE GLOBAL STYLES (CLEAN)
   ===================================== */

body{
    font-family:'Inter', sans-serif;
}

/* =====================================
   HERO SECTION (ALL GOVERNANCE PAGES)
   ===================================== */

.about-hero-simple{
    position: relative;
    background: url('../images/slide1.jpg') center center / cover no-repeat;
    padding: 90px 0;
    color: #fff;
    overflow: hidden;
}

.about-hero-simple::before{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(
        135deg,
        rgba(0,48,96,0.85),
        rgba(27,117,188,0.85)
    );
}

.about-hero-simple .container{
    position:relative;
    z-index:2;
}

.about-hero-simple .gmrit-title{
    font-size:34px;
    font-weight:700;
}

.about-hero-simple .university{
    color:#FAAB53;
}

/* =====================================
   COMMON SECTION BACKGROUND
   ===================================== */

.governance-section,
.leadership-section,
.officers-section{
    background: linear-gradient(to bottom,#f8fbff,#eef4fa);
    padding:90px 0;
}

/* =====================================
   PREMIUM LEADERSHIP CARD
   ===================================== */

.leadership-card{
    background:#ffffff;
    border-radius:24px;
    padding:60px 50px;
    box-shadow:0 30px 70px rgba(0,48,96,0.10);
    position:relative;
    overflow:hidden;
    text-align:center;
}

.leadership-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
    background: linear-gradient(to bottom,#1b75bc,#003060);
}

/* =====================================
   PROFILE IMAGE
   ===================================== */

.leader-img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,0.18);
    margin-bottom:25px;
    opacity:0;
    animation: floatIn 1.2s ease forwards, gentleFloat 6s ease-in-out infinite 1.5s;
    transition: transform .4s ease;
}

.leader-img:hover{
    transform:scale(1.05);
}

/* =====================================
   NAME & DESIGNATION
   ===================================== */

.leader-name{
    font-family:'Playfair Display', serif;
    font-size:32px;
    font-weight:700;
    color:#003060;
    opacity:0;
    animation: fadeUp 1s ease forwards;
    animation-delay:.4s;
}

.leader-designation{
    font-size:16px;
    font-weight:600;
    color:#1b75bc;
    margin-bottom:30px;
    opacity:0;
    animation: fadeUp 1s ease forwards;
    animation-delay:.6s;
}

/* =====================================
   DIVIDER
   ===================================== */

.section-divider{
    width:70px;
    height:4px;
    background:#FAAB53;
    border-radius:4px;
    margin:20px auto 40px auto;
}

/* =====================================
   MESSAGE CONTENT
   ===================================== */

.leader-message{
    text-align:left;
    max-width:800px;
    margin:0 auto;
}

.leader-message p{
    font-size:16.5px;
    line-height:1.9;
    color:#444;
    margin-bottom:20px;
    opacity:0;
    transform:translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.leader-message p:nth-child(1){ animation-delay:.8s; }
.leader-message p:nth-child(2){ animation-delay:1s; }
.leader-message p:nth-child(3){ animation-delay:1.2s; }
.leader-message p:nth-child(4){ animation-delay:1.4s; }

.signature{
    margin-top:35px;
    font-weight:600;
    color:#003060;
    opacity:0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay:1.6s;
}

/* =====================================
   ANIMATIONS
   ===================================== */

@keyframes floatIn{
    0%{
        opacity:0;
        transform:translateY(-30px) scale(0.95);
    }
    100%{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

@keyframes gentleFloat{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-8px); }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(25px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =====================================
   GLASS BLOCK (DEANS / OFFICERS GRID)
   ===================================== */

.leader-block{
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border:1px solid rgba(255,255,255,0.8);
    border-radius:22px;
    padding:45px;
    margin-bottom:70px;
    box-shadow:0 25px 60px rgba(0,48,96,0.12);
    transition:all .6s ease;
    opacity:0;
    transform:translateY(60px);
}

.leader-block.visible{
    opacity:1;
    transform:translateY(0);
}

.leader-block:hover{
    transform:translateY(-6px);
    box-shadow:0 35px 80px rgba(0,48,96,0.18);
}

.leader-writeup{
    margin-top:30px;
    font-size:15.5px;
    line-height:1.9;
    color:#444;
}

/* =====================================
   RESPONSIVE
   ===================================== */

@media(max-width:768px){

    .leadership-card{
        padding:40px 25px;
    }

    .leader-img{
        width:200px;
        height:250px;
    }

    .leader-name{
        font-size:24px;
    }

    .leader-block{
        padding:30px 20px;
        text-align:center;
    }
}
/* =====================================
   MULTI CARD SPACING
   ===================================== */

.governance-card{
    margin-bottom:50px;
}

/* List Styling */
.gov-list{
    padding-left:20px;
    margin-top:20px;
}

.gov-list li{
    margin-bottom:14px;
    font-size:16.5px;
    line-height:1.8;
    position:relative;
    padding-left:10px;
}

/* Subtle bullet */
.gov-list li::marker{
    color:#1b75bc;
    font-size:18px;
}

/* =====================================
   SCROLL REVEAL ANIMATION
   ===================================== */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all 1.1s cubic-bezier(.2,.8,.2,1);
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.delay-1{ transition-delay:.2s; }
.delay-2{ transition-delay:.4s; }
.delay-3{ transition-delay:.6s; }