/* ============================================================
   RJMC — IQAC Page Styles  v1.0
   Matches: style.css  · Red · Teal · Deep palette
   Fonts: Playfair Display (display) · DM Sans (body)
   ============================================================ */

/* ── Variables (local fallbacks mirror style.css) ──────── */
:root {
    --gold: #C9A84C;
    --navy: #163745;
    --navy-deep: #0e2530;
    --navy-mid: #1a3a4a;
    --navy-soft: #2c5a6e;
    --white: #ffffff;
    --cream: #FFF6F6;
    --gray-200: #dde4e7;
    --text-body: #3d4a52;
    --text-muted: #7a8c94;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-xs: 0 1px 4px rgba(44,104,123,.07);
    --shadow-sm: 0 4px 16px rgba(44,104,123,.10);
    --shadow-md: 0 12px 40px rgba(44,104,123,.15);
    --shadow-lg: 0 24px 72px rgba(44,104,123,.20);
    --ease: cubic-bezier(.4,0,.2,1);
    --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

/* ── UTILITY ────────────────────────────────────────────── */
.sec-pad {
    padding: 96px 0;
}

/* ══════════════════════════════════════════════════════════
   § 1 — MINI HERO
══════════════════════════════════════════════════════════ */
.iqac-mini-hero {
    position: relative;
    background-image: linear-gradient(145deg, rgba(22,55,69,.95) 0%, rgba(44,104,123,.88) 55%, rgba(140,199,196,.30) 100%), url('../images/rjmc-mini-banner.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    min-height: 310px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Geometry */
.iqac-hero-geo {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.iqac-hero-geo--1 {
    top: -70px;
    right: -70px;
    width: 340px;
    height: 340px;
    border: 1.5px solid rgba(140,199,196,.12);
    animation: iqacGeoSpin 24s linear infinite;
}

.iqac-hero-geo--2 {
    bottom: -90px;
    left: 8%;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(219,26,26,.08);
    animation: iqacGeoSpin 36s linear infinite reverse;
}

.iqac-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(140,199,196,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(140,199,196,.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

@keyframes iqacGeoSpin {
    to { transform: rotate(360deg); }
}

.iqac-hero-inner {
    position: relative;
    z-index: 2;
    padding: 68px 0 60px;
}

/* Breadcrumb */
.iqac-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

    .iqac-breadcrumb a {
        font-size: 11.5px;
        font-weight: 600;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: rgba(140,199,196,.65) !important;
        transition: color .25s;
    }

        .iqac-breadcrumb a:hover {
            color: var(--teal, #8CC7C4) !important;
        }

    .iqac-breadcrumb .bc-sep {
        font-size: 11px;
        color: rgba(255,255,255,.22);
    }

    .iqac-breadcrumb .bc-current {
        font-size: 11.5px;
        font-weight: 600;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: rgba(255,255,255,.40);
    }

/* Title row */
.iqac-hero-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
}

.iqac-hero-accent {
    display: inline-block;
    width: 5px;
    height: 56px;
    background: linear-gradient(180deg, var(--red, #DB1A1A) 0%, var(--red-dark, #b31212) 100%);
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(219,26,26,.35);
}

.iqac-hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white, #fff);
    line-height: 1.15;
    letter-spacing: -.3px;
    margin: 0 0 6px;
}

    .iqac-hero-h1 em {
        font-style: italic;
        color: #8CC7C4;
    }

.iqac-hero-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: .5px;
    color: rgba(255,255,255,.50);
    margin: 0;
}

/* Pill tags */
.iqac-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.iqac-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .5px;
    color: rgba(255,255,255,.70);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    padding: 6px 14px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    transition: all .25s var(--ease);
}

    .iqac-pill i {
        color: #8CC7C4;
        font-size: 12px;
    }

    .iqac-pill:hover {
        background: rgba(140,199,196,.15);
        border-color: rgba(140,199,196,.30);
        color: #fff;
    }

/* ══════════════════════════════════════════════════════════
   § 2 — CHIP / HEADING / DIVIDER  (shared helpers)
══════════════════════════════════════════════════════════ */
.iqac-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--deep, #2C687B);
    background: var(--deep-pale, #dbedf2);
    border: 1px solid rgba(44,104,123,.20);
    padding: 6px 16px 6px 12px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.iqac-chip--light {
    color: var(--red, #DB1A1A);
    background: var(--red-pale, #fde8e8);
    border-color: rgba(219,26,26,.20);
}

.iqac-chip-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--deep, #2C687B);
    flex-shrink: 0;
}

.iqac-chip--light .iqac-chip-dot {
    background: var(--red, #DB1A1A);
}

.iqac-sec-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
    line-height: 1.22;
    margin-bottom: 12px;
}

    .iqac-sec-heading em {
        font-style: italic;
        color: var(--red, #DB1A1A);
    }

.iqac-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--deep, #2C687B), var(--teal, #8CC7C4));
    border-radius: 3px;
    margin-bottom: 30px;
}

.iqac-section-sub {
    font-size: 15px;
    color: var(--text-muted, #7a8c94);
    line-height: 1.75;
    margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════
   § 3 — ABOUT IQAC SECTION
══════════════════════════════════════════════════════════ */
.iqac-about-section {
    background: var(--off-white, #FFF6F6);
}

/* Statement card */
.iqac-statement-card {
    background: var(--white, #fff);
    border: 1px solid var(--gray-200, #dde4e7);
    border-left: 5px solid var(--deep, #2C687B);
    border-radius: var(--radius-md);
    padding: 36px 36px 36px 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
    margin-bottom: 32px;
    transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}

    .iqac-statement-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

.iqac-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    line-height: 1;
    color: rgba(44,104,123,.10);
    position: absolute;
    top: 8px;
    left: 14px;
    pointer-events: none;
}

.iqac-statement-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-body, #3d4a52);
    text-align: justify;
    position: relative;
    z-index: 1;
}

/* Highlights row */
.iqac-highlight-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.iqac-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    flex: 1 1 200px;
    background: var(--white, #fff);
    border: 1px solid var(--gray-200, #dde4e7);
    border-radius: var(--radius-md);
    padding: 18px 18px;
    box-shadow: var(--shadow-xs);
    transition: all .3s var(--ease);
}

    .iqac-highlight-item:hover {
        box-shadow: var(--shadow-sm);
        transform: translateY(-3px);
    }

.iqac-highlight-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deep, #2C687B), var(--deep-light, #3d849a));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8CC7C4;
    box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease-spring);
}

.iqac-highlight-item:hover .iqac-highlight-icon {
    transform: scale(1.12) rotate(-5deg);
}

.iqac-highlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
    margin-bottom: 3px;
}

.iqac-highlight-desc {
    font-size: 12.5px;
    color: var(--text-muted, #7a8c94);
    line-height: 1.5;
}

/* ── Image Collage ────────────────────────────────────── */
.iqac-collage {
    display: grid;
    grid-template-rows: auto auto;
    gap: 12px;
}

.iqac-collage-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-md);
}

    .iqac-collage-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s var(--ease);
    }

    .iqac-collage-main:hover img {
        transform: scale(1.04);
    }

.iqac-collage-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(219,26,26,.90);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(219,26,26,.35);
}

    .iqac-collage-badge i {
        font-size: 18px;
    }

    .iqac-collage-badge small {
        font-size: 11px;
        font-weight: 400;
        opacity: .80;
        display: block;
    }

.iqac-collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
}

.iqac-collage-cell {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 120px;
    box-shadow: var(--shadow-xs);
    cursor: pointer;
}

    .iqac-collage-cell img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s var(--ease);
    }

    .iqac-collage-cell:hover img {
        transform: scale(1.08);
    }

.iqac-collage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,55,69,.80) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 10px 10px;
    opacity: 0;
    transition: opacity .3s var(--ease);
}

.iqac-collage-cell:hover .iqac-collage-overlay {
    opacity: 1;
}

.iqac-collage-overlay span {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    letter-spacing: .3px;
}

/* Accent stat cell */
.iqac-collage-cell--accent {
    background: linear-gradient(135deg, var(--deep, #2C687B) 0%, var(--deep-dark, #1f4e5f) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.iqac-collage-stat-block {
    text-align: center;
}

.iqac-cstat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

    .iqac-cstat-num sup {
        font-size: 1rem;
    }

.iqac-cstat-lbl {
    font-size: 11px;
    font-weight: 500;
    color: rgba(140,199,196,.75);
    line-height: 1.4;
    margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════
   § 4 — OBJECTIVES SECTION
══════════════════════════════════════════════════════════ */
.iqac-objectives-section {
    background: var(--gray-50, #f9fafa);
    padding: 96px 0;
}

.iqac-objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.iqac-obj-card {
    background: var(--white, #fff);
    border: 1px solid var(--gray-200, #dde4e7);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: all .4s var(--ease);
    position: relative;
}

    .iqac-obj-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-8px);
    }

.iqac-obj-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}

    .iqac-obj-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s var(--ease);
    }

.iqac-obj-card:hover .iqac-obj-img-wrap img {
    transform: scale(1.08);
}

.iqac-obj-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(22,55,69,.55) 100%);
    transition: opacity .4s;
}

.iqac-obj-body {
    padding: 24px 24px 20px;
}

.iqac-obj-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deep, #2C687B), var(--teal, #8CC7C4));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white, #fff);
    margin-bottom: 14px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(44,104,123,.30);
    transition: transform .35s var(--ease-spring);
}

.iqac-obj-card:hover .iqac-obj-icon {
    transform: scale(1.12) rotate(-6deg);
}

.iqac-obj-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
    margin-bottom: 8px;
}

.iqac-obj-desc {
    font-size: 13px;
    color: var(--text-muted, #7a8c94);
    line-height: 1.65;
    margin-bottom: 14px;
}

.iqac-obj-bar {
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--red, #DB1A1A), var(--teal, #8CC7C4));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}

.iqac-obj-card:hover .iqac-obj-bar {
    transform: scaleX(1);
}

/* ══════════════════════════════════════════════════════════
   § 5 — FUNCTIONS SECTION
══════════════════════════════════════════════════════════ */
.iqac-functions-section {
    background: var(--off-white, #FFF6F6);
}

/* Strip Collage */
.iqac-strip-collage {
    display: grid;
    grid-template-rows: 260px 130px;
    gap: 12px;
}

.iqac-strip-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

    .iqac-strip-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s var(--ease);
    }

    .iqac-strip-main:hover img {
        transform: scale(1.04);
    }

.iqac-strip-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(22,55,69,.90) 0%, transparent 100%);
    padding: 32px 20px 16px;
    font-size: 12.5px;
    font-weight: 700;
    color: #8CC7C4;
    letter-spacing: .5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.iqac-strip-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.iqac-strip-thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}

    .iqac-strip-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s var(--ease);
    }

    .iqac-strip-thumb:hover img {
        transform: scale(1.08);
    }

/* Quote thumb */
.iqac-strip-thumb--accent {
    background: linear-gradient(135deg, var(--red, #DB1A1A), var(--red-dark, #b31212));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.iqac-strip-quote {
    text-align: center;
    color: rgba(255,255,255,.90);
}

    .iqac-strip-quote i {
        font-size: 28px;
        opacity: .50;
        display: block;
        margin-bottom: 8px;
    }

    .iqac-strip-quote p {
        font-family: 'Playfair Display', serif;
        font-size: 12.5px;
        font-style: italic;
        line-height: 1.5;
    }

/* Functions list */
.iqac-functions-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 36px;
}

.iqac-func-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-200, #dde4e7);
    transition: all .3s var(--ease);
}

    .iqac-func-item:first-child { padding-top: 0; }
    .iqac-func-item:last-child { border-bottom: none; }
    .iqac-func-item:hover { padding-left: 6px; }

.iqac-func-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(44,104,123,.14);
    line-height: 1;
    flex-shrink: 0;
    width: 42px;
    transition: color .3s var(--ease);
}

.iqac-func-item:hover .iqac-func-num {
    color: var(--red, #DB1A1A);
}

.iqac-func-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
    margin-bottom: 4px;
}

.iqac-func-content p {
    font-size: 13.5px;
    color: var(--text-muted, #7a8c94);
    line-height: 1.6;
}

/* Buttons */
.iqac-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--deep, #2C687B) 0%, var(--deep-dark, #1f4e5f) 100%);
    color: var(--white, #fff) !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
}

    .iqac-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(44,104,123,.35);
    }

.iqac-btn-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform .3s var(--ease-spring);
}

.iqac-btn-primary:hover .iqac-btn-arrow {
    transform: translateX(4px);
}

/* ══════════════════════════════════════════════════════════
   § 6 — COMMITTEE SECTION
══════════════════════════════════════════════════════════ */
.iqac-committee-section {
    background: var(--off-white, #FFF6F6);
}

/* Chair card (wide) */
.iqac-member-card {
    background: var(--white, #fff);
    border: 1px solid var(--gray-200, #dde4e7);
    border-radius: var(--radius-lg);
    padding: 28px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-xs);
    transition: all .35s var(--ease);
    height: 100%;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

    .iqac-member-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-6px);
        border-color: var(--teal, #8CC7C4);
    }

.iqac-member-card--chair {
    flex-direction: row;
    text-align: left;
    background: linear-gradient(135deg, var(--white) 0%, var(--deep-pale, #dbedf2) 100%);
    border-color: rgba(44,104,123,.25);
    border-left: 5px solid var(--deep, #2C687B);
    padding: 32px 36px;
}

/* Avatar */
.iqac-member-avatar {
    position: relative;
    flex-shrink: 0;
    width: 110px;
    height: 110px;
}

    .iqac-member-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid var(--white, #fff);
        box-shadow: var(--shadow-sm);
    }

.iqac-member-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(44,104,123,.30);
    animation: iqacRingSpin 18s linear infinite;
}

@keyframes iqacRingSpin {
    to { transform: rotate(360deg); }
}

.iqac-member-avatar--sm {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
}

/* Info */
.iqac-member-info {
    flex: 1;
}

.iqac-member-role-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
    background: var(--deep-pale, #dbedf2);
    color: var(--deep, #2C687B);
    border: 1px solid rgba(44,104,123,.20);
}

.iqac-role-coord {
    background: var(--teal-pale, #e6f5f4);
    color: var(--teal-deeper, #4e9490);
    border-color: rgba(78,148,144,.25);
}

.iqac-role-member {
    background: var(--red-ghost, #fff0f0);
    color: var(--red, #DB1A1A);
    border-color: rgba(219,26,26,.18);
}

.iqac-role-external {
    background: #fff8e1;
    color: #8a6200;
    border-color: rgba(138,98,0,.20);
}

.iqac-role-student {
    background: #f0faf0;
    color: #2e7d32;
    border-color: rgba(46,125,50,.20);
}

.iqac-member-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
    margin-bottom: 4px;
}

.iqac-member-designation {
    font-size: 13px;
    color: var(--text-muted, #7a8c94);
    margin-bottom: 0;
}

.iqac-member-desc {
    font-size: 13.5px;
    color: var(--text-body, #3d4a52);
    line-height: 1.65;
    margin-top: 8px;
    margin-bottom: 0;
    max-width: 560px;
}

/* ══════════════════════════════════════════════════════════
   § 7 — GOV BANNER
══════════════════════════════════════════════════════════ */
.iqac-gov-banner {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.iqac-gov-img-layer {
    position: absolute;
    inset: 0;
}

    .iqac-gov-img-layer img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.iqac-gov-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(22,55,69,.96) 0%, rgba(44,104,123,.75) 60%, rgba(219,26,26,.55) 100%);
}

.iqac-gov-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 72px 0;
    flex-wrap: wrap;
}

.iqac-gov-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid rgba(140,199,196,.30);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #8CC7C4;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(8px);
}

.iqac-gov-text {
    flex: 1;
    min-width: 260px;
}

    .iqac-gov-text h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 12px;
    }

        .iqac-gov-text h2 em {
            font-style: italic;
            color: #8CC7C4;
        }

    .iqac-gov-text p {
        font-size: 14.5px;
        color: rgba(255,255,255,.62);
        line-height: 1.75;
        max-width: 560px;
    }

.iqac-gov-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.iqac-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.10);
    border: 1.5px solid rgba(255,255,255,.25);
    color: #fff !important;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    transition: all .3s var(--ease);
}

    .iqac-btn-white:hover {
        background: rgba(255,255,255,.18);
        border-color: rgba(140,199,196,.50);
        transform: translateY(-2px);
    }

.iqac-btn-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--red, #DB1A1A), var(--red-dark, #b31212));
    color: #fff !important;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(219,26,26,.35);
    transition: all .3s var(--ease);
}

    .iqac-btn-red:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(219,26,26,.50);
    }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
    .iqac-collage-grid { grid-template-columns: 1fr 1fr; }
    .iqac-collage-cell { height: 100px; }
}

@media (max-width: 991px) {
    .iqac-mini-hero {
        background-attachment: scroll;
        min-height: 260px;
    }

    .iqac-hero-h1 { font-size: 2.2rem; }
    .iqac-objectives-grid { grid-template-columns: 1fr 1fr; }
    .iqac-strip-collage { grid-template-rows: 200px 110px; }

    .iqac-gov-inner {
        flex-direction: column;
        text-align: center;
    }

    .iqac-gov-text p { margin: 0 auto; }

    .iqac-gov-actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .iqac-member-card--chair {
        flex-direction: column;
        text-align: center;
    }

    .iqac-member-desc { margin: 8px auto 0; }
}

@media (max-width: 767px) {
    .sec-pad { padding: 68px 0; }
    .iqac-objectives-section { padding: 68px 0; }
    .iqac-hero-inner { padding: 54px 0 46px; }
    .iqac-sec-heading { font-size: 1.9rem; }
    .iqac-statement-card { padding: 26px 22px 26px 20px; }
    .iqac-collage-grid { grid-template-columns: 1fr 1fr; }
    .iqac-strip-collage { grid-template-rows: 180px 100px; }
    .iqac-objectives-grid { grid-template-columns: 1fr; }
    .iqac-highlight-row { flex-direction: column; }
}

@media (max-width: 575px) {
    .iqac-hero-h1 { font-size: 1.85rem; }
    .iqac-hero-accent { height: 42px; }
    .iqac-collage-main { height: 220px; }
    .iqac-collage-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .iqac-collage-cell { height: 90px; }
    .iqac-func-num { font-size: 1.5rem; width: 32px; }
    .iqac-gov-text h2 { font-size: 1.6rem; }
    .iqac-hero-pills { gap: 6px; }
    .iqac-pill { font-size: 10.5px; padding: 5px 11px; }
    .iqac-member-card--chair { padding: 24px 20px; }
    .iqac-member-avatar { width: 88px; height: 88px; }
}
