
        :root {
            --ink: #2d339b;
            --forest: #2d339b;
            --leaf: #2d339b;
            --mint: #2fa866;
            --gold: #c48b1f;
            --amber: #f0b429;
            --cream: #f7f5ef;
            --light: #eef7f2;
            --white: #ffffff;
            --gray: #5e6b64;
            --border: rgba(14, 61, 36, .15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--cream);
            color: var(--ink);
            overflow-x: hidden;
        }

        /* ── TOP BAR ── */
        .topbar {
            background: var(--forest);
            color: rgba(255, 255, 255, .85);
            font-size: 12.5px;
            padding: 7px 0;
        }

        .topbar-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
        }

        .topbar a {
            color: var(--amber);
            text-decoration: none;
        }

        .topbar-right {
            display: flex;
            gap: 20px;
        }

        /* ── HEADER ── */
        header {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 200;
        }

        .header-wrap {
            max-width: 1280px;
            margin: 0 auto;
            padding: 50px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 66px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .brand-seal {
            width: 100px;
            height: 46px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--amber);
            flex-shrink: 0;
        }

        .brand-seal img {
            width: 100px;
        }

        .brand-text {
            margin-left: 18px;
        }

        .brand-text .t1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 25px;
            font-weight: 700;
            color: var(--forest);
            line-height: 1.15;
        }

        .brand-text .t2 {
            font-size: 18px;
            color: var(--gray);
            letter-spacing: .5px;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 2px;
        }

        nav a {
            font-size: 14px;
            font-weight: 500;
            color: var(--ink);
            text-decoration: none;
            padding: 6px 11px;
            border-radius: 7px;
            transition: all .2s;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 40%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--leaf);
            border-radius: 2px;
            transition: width .2s;
        }

        nav a:hover::after {
            width: 60%;
        }

        nav a:hover {
            color: var(--leaf);
        }




        .hdr-btn {
            background: var(--forest);
            color: #fff !important;
            padding: 8px 18px !important;
            border-radius: 8px;
            font-weight: 600 !important;
        }

        .hdr-btn::after {
            display: none !important;
        }

        .hdr-btn:hover {
            background: var(--leaf) !important;
        }

        .hamburger {
            display: none;
            background: none;
            border: 1px solid var(--border);
            border-radius: 7px;
            padding: 7px;
            cursor: pointer;
            flex-direction: column;
            gap: 4px;
        }

        .hamburger span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--forest);
            border-radius: 2px;
        }

        .mob-nav {
            display: none;
            flex-direction: column;
            background: var(--white);
            border-top: 1px solid var(--border);
            padding: 12px 24px 18px;
        }

        .mob-nav a {
            padding: 11px 0;
            font-size: 15px;
            font-weight: 500;
            color: var(--ink);
            text-decoration: none;
            border-bottom: 1px solid var(--border);
        }

        .mob-nav.show {
            display: flex;
        }

        /* ── MAIN LAYOUT: HERO + NEWS ── */
        .page-split {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 0;
        }

        /* ── HERO SLIDER ── */
        .hero-slider {
            position: relative;
            overflow: hidden;
            height: 500px;
        }

        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity .8s ease;
            pointer-events: none;
        }

        .slide.active {
            opacity: 1;
            pointer-events: auto;
        }

        .slide-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
        }

        .slide-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(7, 28, 15, .82) 0%, rgba(7, 28, 15, .55) 55%, rgba(7, 28, 15, .15) 100%);
        }

        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 44px 44px;
            z-index: 2;
        }

        .slide-tag {
            display: inline-block;
            background: var(--amber);
            color: var(--ink);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 4px;
            margin-bottom: 14px;
        }

        .slide-content h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(26px, 3.5vw, 44px);
            color: #fff;
            line-height: 1.15;
            max-width: 580px;
            margin-bottom: 12px;
        }

        .slide-content p {
            color: rgba(255, 255, 255, .82);
            font-size: 15px;
            max-width: 480px;
            line-height: 1.65;
            margin-bottom: 22px;
        }

        .slide-btns {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-gold {
            background: var(--gold);
            color: #fff;
            padding: 11px 22px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all .2s;
            display: inline-block;
        }

        .btn-gold:hover {
            background: var(--amber);
            transform: translateY(-1px);
        }

        .btn-ghost {
            border: 1.5px solid rgba(255, 255, 255, .6);
            color: #fff;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all .2s;
            display: inline-block;
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, .12);
        }

        /* Slider dots */
        .slider-dots {
            position: absolute;
            bottom: 16px;
            right: 44px;
            display: flex;
            gap: 8px;
            z-index: 5;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .4);
            cursor: pointer;
            transition: all .3s;
            border: none;
        }

        .dot.active {
            background: var(--amber);
            width: 24px;
            border-radius: 4px;
        }

        /* Slider arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
            background: rgba(255, 255, 255, .18);
            border: 1px solid rgba(255, 255, 255, .3);
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .2s;
            backdrop-filter: blur(4px);
        }

        .slider-arrow:hover {
            background: rgba(255, 255, 255, .32);
        }

        .arrow-prev {
            left: 18px;
        }

        .arrow-next {
            right: 18px;
        }

        /* ── NEWS PANEL ── */
        .news-panel {
            background: var(--white);
            border-left: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            height: 500px;
        }

        .news-head {
            background: var(--forest);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .news-head .badge {
            background: var(--amber);
            color: var(--ink);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 4px;
        }

        .news-head span {
            color: rgba(255, 255, 255, .9);
            font-size: 13.5px;
            font-weight: 500;
        }

        .news-ticker-wrap {
            flex: 1;
            overflow: hidden;
            position: relative;
        }

        .news-ticker-wrap::before,
        .news-ticker-wrap::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 28px;
            z-index: 2;
            pointer-events: none;
        }

        .news-ticker-wrap::before {
            top: 0;
            background: linear-gradient(to bottom, var(--white), transparent);
        }

        .news-ticker-wrap::after {
            bottom: 0;
            background: linear-gradient(to top, var(--white), transparent);
        }

        .news-list {
            display: flex;
            flex-direction: column;
            padding: 8px 0;
            animation: scroll-up 40s linear infinite;
        }

        .news-list:hover {
            animation-play-state: paused;
        }

        .news-item {
            padding: 12px 20px;
            border-bottom: 1px solid var(--border);
            display: flex;
            gap: 10px;
            align-items: flex-start;
            flex-shrink: 0;
        }

        .news-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--leaf);
            flex-shrink: 0;
            margin-top: 5px;
        }

        .news-item p {
            font-size: 13.5px;
            line-height: 1.55;
            color: var(--ink);
        }

        .news-item .ndate {
            font-size: 11px;
            color: var(--gray);
            margin-top: 4px;
        }

        @keyframes scroll-up {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(-50%);
            }
        }

        .news-footer {
            padding: 12px 20px;
            border-top: 1px solid var(--border);
            text-align: center;
            flex-shrink: 0;
        }

        .news-footer a {
            font-size: 12.5px;
            font-weight: 600;
            color: var(--leaf);
            text-decoration: none;
            letter-spacing: .5px;
            text-transform: uppercase;
        }

        /* ── QUICK STATS STRIP ── */
        .stats-strip {
            background: var(--forest);
        }

        .stats-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            divide-x: 1px solid rgba(255, 255, 255, .15);
        }

        .sstat {
            padding: 20px 16px;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, .12);
        }

        .sstat:last-child {
            border-right: none;
        }

        .sstat .sn {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--amber);
            line-height: 1;
        }

        .sstat .sl {
            font-size: 12px;
            color: rgba(255, 255, 255, .75);
            margin-top: 4px;
            letter-spacing: .5px;
        }

        /* ── ABOUT SECTION ── */
        .about-sec {
            max-width: 1280px;
            margin: 0 auto;
            padding: 64px 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-label {
            font-size: 11.5px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--mint);
            margin-bottom: 10px;
        }

        .about-sec h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(28px, 3vw, 42px);
            color: var(--forest);
            line-height: 1.2;
            margin-bottom: 18px;
        }

        .about-sec p {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.75;
            margin-bottom: 14px;
        }

        .check-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin: 20px 0 28px;
        }

        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14.5px;
            color: var(--ink);
        }

        .chk {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--leaf);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #fff;
            font-size: 11px;
            margin-top: 1px;
        }

        .about-visual {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .av-card {
            background: var(--forest);
            color: #fff;
            border-radius: 14px;
            padding: 22px 24px;
        }

        .av-card.gold-card {
            background: var(--gold);
        }

        .av-card h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .av-card p {
            font-size: 13px;
            opacity: .85;
            color: #fff;
        }

        /* ── DEPARTMENTS ── */
        .dept-sec {
            background: var(--white);
            padding: 60px 0;
        }

        .dept-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .sec-hd {
            text-align: center;
            margin-bottom: 40px;
        }

        .sec-lbl {
            font-size: 11.5px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--mint);
            margin-bottom: 8px;
        }

        .sec-hd h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(26px, 3vw, 40px);
            color: var(--forest);
        }

        .dept-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
            gap: 12px;
        }

        .dept-pill {
            background: var(--light);
            border: 1px solid var(--border);
            border-left: 3px solid var(--mint);
            border-radius: 9px;
            padding: 14px 16px;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--ink);
            text-decoration: none;
            transition: all .2s;
            display: block;
        }

        .dept-pill:hover {
            background: var(--forest);
            color: #fff;
            border-left-color: var(--amber);
        }

        /* ── FACILITIES ── */
        .fac-sec {
            max-width: 1280px;
            margin: 0 auto;
            padding: 60px 24px;
        }

        .fac-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .fac-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 26px;
            transition: all .25s;
            position: relative;
            overflow: hidden;
        }

        .fac-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--leaf);
        }

        .fac-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(14, 61, 36, .10);
        }

        .fac-icon {
            font-size: 28px;
            margin-bottom: 14px;
        }

        .fac-card h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .fac-card p {
            font-size: 13.5px;
            color: var(--gray);
            line-height: 1.6;
        }

        /* ── LEADERSHIP ── */
        .lead-sec {
            background: var(--forest);
            padding: 60px 0;
        }

        .lead-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .lead-head {
            text-align: center;
            margin-bottom: 40px;
        }

        .lead-head .sec-lbl {
            color: var(--amber);
        }

        .lead-head h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(26px, 3vw, 40px);
            color: #fff;
        }

        .lead-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .lead-card {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 16px;
            padding: 30px 24px;
            text-align: center;
        }

        .lead-av {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 16px;
            background: linear-gradient(135deg, var(--mint), var(--leaf));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px;
            color: #fff;
            font-weight: 700;
            border: 3px solid rgba(255, 255, 255, .2);
        }

        .lead-av img {
            width: 100px;
            border-radius: 50%;
            height: 100px;
        }

        @media (max-width: 992px) {
            .brand-text .t1 {
                font-size: 13px;
            }

            .brand-text .t2 {
                font-size: 9px;
            }
        }

        .lead-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }

        .lead-card .role {
            font-size: 13px;
            font-weight: 600;
            color: var(--amber);
        }

        .lead-card .org {
            font-size: 12.5px;
            color: rgba(255, 255, 255, .6);
            margin-top: 4px;
        }

        /* ── DOWNLOADS ── */
        .dl-sec {
            max-width: 1280px;
            margin: 0 auto;
            padding: 60px 24px;
        }

        .dl-grid {
            display: grid;
            gap: 12px;
        }

        .dl-row {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 5px 18px 5px 6px;
            text-decoration: none;
            color: var(--ink);
            transition: all .2s;
        }

        .dl-row:hover {
            background: var(--forest);
            color: #fff;
            border-color: var(--forest);
        }

        .dl-row:hover .dl-ic {
            background: rgba(255, 255, 255, .15);
        }

        .dl-ic {
            width: 38px;
            height: 38px;
            border-radius: 9px;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .dl-row span {
            font-size: 13.5px;
            font-weight: 500;
            flex: 1;
            line-height: 1.4;
        }

        .dl-row .arr {
            opacity: .4;
            font-size: 16px;
        }

        /* ── HOW TO REACH ── */
        .reach-sec {
            background: var(--white);
            padding: 60px 0;
        }

        .reach-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .reach-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .reach-card {
            background: var(--cream);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 22px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .reach-card .rich {
            font-size: 26px;
        }

        .reach-card h3 {
            font-size: 14px;
            font-weight: 700;
            color: var(--forest);
        }

        .reach-card .info {
            font-size: 13px;
            color: var(--gray);
            line-height: 1.55;
        }

        .reach-card a {
            margin-top: auto;
            background: var(--forest);
            color: #fff;
            padding: 9px 0;
            border-radius: 8px;
            text-align: center;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: background .2s;
        }

        .reach-card a:hover {
            background: var(--leaf);
        }

        /* ── CONTACT ── */
        .contact-sec {
            background: var(--ink);
            padding: 64px 0;
        }

        .contact-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info .sec-lbl {
            color: var(--mint);
        }

        .contact-info h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(26px, 3vw, 40px);
            color: #fff;
            margin-bottom: 16px;
        }

        .contact-info>p {
            color: rgba(255, 255, 255, .7);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .c-item {
            display: flex;
            gap: 14px;
            margin-bottom: 20px;
            align-items: flex-start;
        }

        .c-item .c-ic {
            font-size: 18px;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .c-item .c-txt {
            color: rgba(255, 255, 255, .85);
            font-size: 14.5px;
            line-height: 1.65;
        }

        .c-item a {
            color: var(--amber);
            text-decoration: none;
        }

        .cf-box {
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 16px;
            padding: 28px;
        }

        .cf-box h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            color: #fff;
            margin-bottom: 22px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-bottom: 14px;
        }

        .fg {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .fg label {
            font-size: 12.5px;
            color: rgba(255, 255, 255, .7);
            font-weight: 600;
            letter-spacing: .5px;
        }

        .fg input,
        .fg textarea {
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .2);
            border-radius: 9px;
            padding: 11px 14px;
            color: #fff;
            font-size: 14px;
            font-family: 'Outfit', sans-serif;
            outline: none;
            transition: border .2s;
        }

        .fg input:focus,
        .fg textarea:focus {
            border-color: var(--amber);
        }

        .fg input::placeholder,
        .fg textarea::placeholder {
            color: rgba(255, 255, 255, .4);
        }

        .fg textarea {
            height: 100px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            background: var(--gold);
            color: #fff;
            border: none;
            border-radius: 10px;
            padding: 14px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            font-family: 'Outfit', sans-serif;
            transition: all .2s;
            margin-top: 8px;
        }

        .submit-btn:hover {
            background: var(--amber);
        }

        /* ── FOOTER ── */
        footer {
            background: #070f09;
            color: rgba(255, 255, 255, .6);
            padding: 44px 0 20px;
        }

        .foot-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .foot-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 44px;
            margin-bottom: 32px;
        }

        .foot-brand h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            color: #fff;
            margin-bottom: 10px;
        }

        .foot-brand p {
            font-size: 13.5px;
            line-height: 1.7;
        }

        footer h4 {
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--amber);
            margin-bottom: 14px;
        }

        footer ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding-left:0;
        }

        footer ul li a {
            color: rgba(255, 255, 255, .6);
            text-decoration: none;
            font-size: 13.5px;
            transition: color .2s;
        }

        footer ul li a:hover {
            color: var(--amber);
        }

        .foot-bottom {
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding-top: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 12.5px;
        }

        /* ── NOTICE TICKER ── */
        .notice-bar {
            background: var(--amber);
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .notice-label {
            background: var(--forest);
            color: #fff;
            padding: 9px 18px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .notice-scroll {
            padding: 9px 16px;
            font-size: 13px;
            font-weight: 600;
            color: var(--ink);
            white-space: nowrap;
            overflow: hidden;
            flex: 1;
        }

        .notice-scroll span {
            display: inline-block;
            animation: ticker 28s linear infinite;
        }

        @keyframes ticker {
            from {
                transform: translateX(100%);
            }

            to {
                transform: translateX(-100%);
            }
        }

        /* ── RESPONSIVE ── */
        @media(max-width:1024px) {
            .page-split {
                grid-template-columns: 1fr;
            }

            .news-panel {
                height: 320px;
            }

            .stats-inner {
                grid-template-columns: repeat(3, 1fr);
            }

            .fac-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .reach-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-inner {
                grid-template-columns: 1fr;
            }

            .foot-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media(max-width:768px) {
            nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .about-sec {
                grid-template-columns: 1fr;
            }

            .lead-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .dl-grid {
                grid-template-columns: 1fr;
            }

            .stats-inner {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-slider {
                height: 420px;
            }

            .slide-content {
                padding: 28px 24px 32px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .foot-grid {
                grid-template-columns: 1fr;
            }
        }

        @media(max-width:480px) {
            .fac-grid {
                grid-template-columns: 1fr;
            }

            .reach-grid {
                grid-template-columns: 1fr;
            }

            .lead-grid {
                grid-template-columns: 1fr;
            }

            .stats-inner {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-slider {
                height: 380px;
            }
        }

        .time-t {
            text-align: center;
            margin-bottom: 25px;
        }
   
   
    :root {
      --green:   #1a5c2a;
      --green2:  #2e7d42;
      --gold:    #c8972a;
      --light:   #f4f9f5;
      --text:    #1e2a1f;
      --muted:   #5a6e5c;
    }

    * { box-sizing: border-box; }

    body {
      font-family: 'Source Sans 3', sans-serif;
      background: var(--light);
      color: var(--text);
    }

    /* ── HERO BANNER ── */
    .hero {
      background: linear-gradient(135deg, var(--green) 0%, #0f3a1a 100%);
      color: #fff;
      padding: 56px 0 40px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      margin-bottom: 0.3rem;
    }
    .hero p {
      opacity: .8;
      font-size: 1rem;
      margin: 0;
    }
    .hero .badge-gold {
      background: var(--gold);
      color: #fff;
      font-size: .75rem;
      letter-spacing: .08em;
      padding: 4px 12px;
      border-radius: 30px;
      display: inline-block;
      margin-bottom: 12px;
    }
    .breadcrumb-bar {
      background: var(--green2);
      padding: 10px 0;
    }
    .breadcrumb-bar a, .breadcrumb-bar span {
      color: rgba(255,255,255,.75);
      text-decoration: none;
      font-size: .88rem;
    }
    .breadcrumb-bar a:hover { color: #fff; }
    .breadcrumb-bar .sep { margin: 0 6px; }

    /* ── STATS BAR ── */
    .stats-bar {
      background: #fff;
      border-bottom: 3px solid var(--gold);
      box-shadow: 0 2px 12px rgba(0,0,0,.07);
    }
    .stat-item {
      padding: 18px 10px;
      text-align: center;
      border-right: 1px solid #e5ebe6;
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--green);
      line-height: 1;
    }
    .stat-label { font-size: .8rem; color: var(--muted); margin-top: 2px; }

    /* ── DEPT SECTION ── */
    .dept-section {
      margin-bottom: 50px;
    }
    .dept-header {
      background: var(--green);
      color: #fff;
      border-radius: 10px 10px 0 0;
      padding: 14px 22px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .dept-header .dept-icon {
      width: 38px; height: 38px;
      background: rgba(255,255,255,.15);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .dept-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      margin: 0;
    }
    .dept-body {
      background: #fff;
      border: 1px solid #d8e8db;
      border-top: none;
      border-radius: 0 0 10px 10px;
      padding: 22px;
    }

    /* ── FACULTY CARD ── */
    .faculty-card {
      background: #fff;
      border: 1px solid #dde9df;
      border-radius: 10px;
      overflow: hidden;
      height: 100%;
      transition: box-shadow .2s, transform .2s;
    }
    .faculty-card:hover {
      box-shadow: 0 8px 28px rgba(26,92,42,.15);
      transform: translateY(-3px);
    }
    .faculty-photo {
      width: 100%; aspect-ratio: 1/1;
      object-fit: cover;
      object-position: top;
      background: #e4ede6;
    }
    .faculty-photo-placeholder {
      width: 100%; aspect-ratio: 1/1;
      background: linear-gradient(135deg, #d4e9d8, #b9d9c0);
      display: flex; align-items: center; justify-content: center;
      color: var(--green); font-size: 2.5rem;
    }
    .card-body-inner {
      padding: 14px 14px 16px;
    }
    .card-name {
      font-family: 'Playfair Display', serif;
      font-size: .98rem;
      color: var(--green);
      margin-bottom: 2px;
      line-height: 1.3;
    }
    .card-desig {
      font-size: .78rem;
      font-weight: 600;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: .04em;
      margin-bottom: 6px;
    }
    .qual-badge {
      display: inline-block;
      background: var(--light);
      border: 1px solid #c8dccb;
      color: var(--muted);
      font-size: .7rem;
      padding: 2px 7px;
      border-radius: 20px;
      margin: 2px 2px 0 0;
    }
    .contact-line {
      font-size: .77rem;
      color: var(--muted);
      margin-top: 8px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .contact-line a { color: var(--green2); text-decoration: none; }
    .contact-line a:hover { text-decoration: underline; }

    /* ── TABLE SECTION ── */
    .table-section {
      background: #fff;
      border-radius: 12px;
      border: 1px solid #d8e8db;
      overflow: hidden;
      margin-bottom: 50px;
    }
    .table-section-header {
      background: var(--green);
      color: #fff;
      padding: 16px 22px;
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      display: flex; align-items: center; gap: 10px;
    }
    .table-responsive { overflow-x: auto; }
    .faculty-table {
      width: 100%; border-collapse: collapse;
      font-size: .88rem;
    }
    .faculty-table thead th {
      background: #f0f7f1;
      color: var(--green);
      font-weight: 700;
      padding: 12px 14px;
      border-bottom: 2px solid #c6dbc9;
      white-space: nowrap;
    }
    .faculty-table tbody tr { border-bottom: 1px solid #e8f0e9; }
    .faculty-table tbody tr:hover { background: #f6fbf7; }
    .faculty-table td { padding: 11px 14px; vertical-align: middle; }
    .table-photo {
      width: 52px; height: 52px;
      border-radius: 50%;
      object-fit: cover; object-position: top;
      border: 2px solid #c6dbc9;
    }
    .table-photo-ph {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: #d4e9d8;
      display: flex; align-items: center; justify-content: center;
      color: var(--green); font-size: 1.2rem;
      border: 2px solid #c6dbc9;
    }
    .dept-pill {
      display: inline-block;
      background: var(--light);
      border: 1px solid #b9d9c0;
      color: var(--green);
      font-size: .73rem;
      padding: 3px 9px;
      border-radius: 20px;
    }
    .desig-pill {
      display: inline-block;
      background: #fff8ec;
      border: 1px solid #e8c97a;
      color: #8a6518;
      font-size: .73rem;
      padding: 3px 9px;
      border-radius: 20px;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
      :root {
      --green:   #2b3195;
      --green2:  #2b3195;
      --gold:    #c8972a;
      --light:   #f4f9f5;
      --text:    #1e2a1f;
      --muted:   #5a6e5c;
    }

    * { box-sizing: border-box; }

    body {
      font-family: 'Source Sans 3', sans-serif;
      background: var(--light);
      color: var(--text);
    }

    /* ── HERO BANNER ── */
    .hero {
      /*background: linear-gradient(135deg, var(--green) 0%, #0f3a1a 100%);*/
      background: linear-gradient(135deg, #2b3195 0%, #151a5c 100%);
      color: #fff;
      padding: 56px 0 40px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      margin-bottom: 0.3rem;
    }
    .hero p {
      opacity: .8;
      font-size: 1rem;
      margin: 0;
    }
    .hero .badge-gold {
      background: var(--gold);
      color: #fff;
      font-size: .75rem;
      letter-spacing: .08em;
      padding: 4px 12px;
      border-radius: 30px;
      display: inline-block;
      margin-bottom: 12px;
    }
    .breadcrumb-bar {
      background: var(--green2);
      padding: 10px 0;
    }
    .breadcrumb-bar a, .breadcrumb-bar span {
      color: rgba(255,255,255,.75);
      text-decoration: none;
      font-size: .88rem;
    }
    .breadcrumb-bar a:hover { color: #fff; }
    .breadcrumb-bar .sep { margin: 0 6px; }

    /* ── STATS BAR ── */
    .stats-bar {
      background: #fff;
      border-bottom: 3px solid var(--gold);
      box-shadow: 0 2px 12px rgba(0,0,0,.07);
    }
    .stat-item {
      padding: 18px 10px;
      text-align: center;
      border-right: 1px solid #e5ebe6;
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--green);
      line-height: 1;
    }
    .stat-label { font-size: .8rem; color: var(--muted); margin-top: 2px; }

    /* ── DEPT SECTION ── */
    .dept-section {
      margin-bottom: 50px;
    }
    .dept-header {
      background: var(--green);
      color: #fff;
      border-radius: 10px 10px 0 0;
      padding: 14px 22px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .dept-header .dept-icon {
      width: 38px; height: 38px;
      background: rgba(255,255,255,.15);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .dept-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      margin: 0;
    }
    .dept-body {
      background: #fff;
      border: 1px solid #d8e8db;
      border-top: none;
      border-radius: 0 0 10px 10px;
      padding: 22px;
    }

    /* ── FACULTY CARD ── */
    .faculty-card {
      background: #fff;
      border: 1px solid #dde9df;
      border-radius: 10px;
      overflow: hidden;
      height: 100%;
      transition: box-shadow .2s, transform .2s;
    }
    .faculty-card:hover {
      box-shadow: 0 8px 28px rgba(26,92,42,.15);
      transform: translateY(-3px);
    }
    .faculty-photo {
      width: 100%; aspect-ratio: 1/1;
      object-fit: cover;
      object-position: top;
      background: #e4ede6;
    }
    .faculty-photo-placeholder {
      width: 100%; aspect-ratio: 1/1;
      background: linear-gradient(135deg, #d4e9d8, #b9d9c0);
      display: flex; align-items: center; justify-content: center;
      color: var(--green); font-size: 2.5rem;
    }
    .card-body-inner {
      padding: 14px 14px 16px;
    }
    .card-name {
      font-family: 'Playfair Display', serif;
      font-size: .98rem;
      color: var(--green);
      margin-bottom: 2px;
      line-height: 1.3;
    }
    .card-desig {
      font-size: .78rem;
      font-weight: 600;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: .04em;
      margin-bottom: 6px;
    }
    .qual-badge {
      display: inline-block;
      background: var(--light);
      border: 1px solid #c8dccb;
      color: var(--muted);
      font-size: .7rem;
      padding: 2px 7px;
      border-radius: 20px;
      margin: 2px 2px 0 0;
    }
    .contact-line {
      font-size: .77rem;
      color: var(--muted);
      margin-top: 8px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .contact-line a { color: var(--green2); text-decoration: none; }
    .contact-line a:hover { text-decoration: underline; }

    /* ── TABLE SECTION ── */
    .table-section {
      background: #fff;
      border-radius: 12px;
      border: 1px solid #d8e8db;
      overflow: hidden;
      margin-bottom: 50px;
    }
    .table-section-header {
      background: var(--green);
      color: #fff;
      padding: 16px 22px;
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      display: flex; align-items: center; gap: 10px;
    }
    .table-responsive { overflow-x: auto; }
    .faculty-table {
      width: 100%; border-collapse: collapse;
      font-size: .88rem;
    }
    .faculty-table thead th {
      background: #f0f7f1;
      color: var(--green);
      font-weight: 700;
      padding: 12px 14px;
      border-bottom: 2px solid #c6dbc9;
      white-space: nowrap;
    }
    .faculty-table tbody tr { border-bottom: 1px solid #e8f0e9; }
    .faculty-table tbody tr:hover { background: #f6fbf7; }
    .faculty-table td { padding: 11px 14px; vertical-align: middle; }
    .table-photo {
      width: 52px; height: 52px;
      border-radius: 50%;
      object-fit: cover; object-position: top;
      border: 2px solid #c6dbc9;
    }
    .table-photo-ph {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: #d4e9d8;
      display: flex; align-items: center; justify-content: center;
      color: var(--green); font-size: 1.2rem;
      border: 2px solid #c6dbc9;
    }
    .dept-pill {
      display: inline-block;
      background: var(--light);
      border: 1px solid #b9d9c0;
      color: var(--green);
      font-size: .73rem;
      padding: 3px 9px;
      border-radius: 20px;
    }
    .desig-pill {
      display: inline-block;
      background: #fff8ec;
      border: 1px solid #e8c97a;
      color: #8a6518;
      font-size: .73rem;
      padding: 3px 9px;
      border-radius: 20px;
    }
.custom-table {
    background: #fff;
    border: 1px solid #d4d4d4;
}


    .heading{
      font-size:16px;
      font-weight:700;
      color:#666;
      text-transform:uppercase;
      margin-bottom:20px;
    }

    .custom-table{
      background:#fff;
      border:1px solid #d4d4d4;
    }

    .custom-table td{
      padding:22px 20px;
      border:1px solid #d4d4d4;
      vertical-align:middle;
      color:#666;
      font-size:15px;
    }

    .number-col{
      width:120px;
    }

    .view-col{
      width:220px;
    }

    .view-col a{
      color:#ff3b6b;
      text-decoration:underline;
    }




    
    .gallery-img {
      width: 100%; height: 200px; object-fit: cover;
      border-radius: 10px; cursor: pointer; display: block;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .gallery-img:hover { transform: scale(1.04); opacity: 0.82; }
 
    /* LIGHTBOX */
    .lightbox {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,0.92); backdrop-filter: blur(10px);
      z-index: 9999; justify-content: center; align-items: center; padding: 1rem;
    }
    .lightbox.show { display: flex; }
    .lightbox img { max-width: 92vw; max-height: 85vh; border-radius: 10px; object-fit: contain; box-shadow: 0 25px 80px rgba(0,0,0,0.8); }
 
    .lb-close {
      position: fixed; top: 1rem; right: 1.2rem;
      background: rgba(255,255,255,0.12); border: none; color: #fff;
      font-size: 1.3rem; width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
    }
    .lb-close:hover { background: rgba(255,255,255,0.25); }
 
    .lb-prev, .lb-next {
      position: fixed; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,0.1); border: none; color: #fff;
      font-size: 2rem; width: 44px; height: 70px; border-radius: 8px; cursor: pointer;
    }
    .lb-prev { left: 0.5rem; } .lb-next { right: 0.5rem; }
    .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.22); }
 
    .lb-counter { position: fixed; bottom: 1rem; left: 50%; transform: translateX(-50%); color: #888; font-size: 0.82rem; }










    .content-section {
    padding: 60px 0;
}


.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: #0f3a1c;
    font-weight: 700;
    margin-bottom: 6px;
}



.section-divider {
    width: 55px;
    height: 4px;
    background: linear-gradient(90deg, #c48b1f, #2d339b);
    border-radius: 2px;
    margin-bottom: 28px;
}



.info-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(43, 49, 149, 0.10);
    border-left: 5px solid #2d339b;
    height: 100%;
    transition: transform .2s, box-shadow .2s;
}

.info-card .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2d339b, #2d339b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.info-card h5

 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #2d339b;
    margin-bottom: 10px;
}


.text-muted {
    --bs-text-opacity: 1;
    color: #000 !important;
    font-size: 14px;
}
.text-success {
    --bs-text-opacity: 1;
    color: #2d339b !important;
}


.career-grid .career-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 10px;
    padding: 13px 16px;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
    font-weight: 600;
    font-size: 13px;
    border-left: 4px solid #2d339b;
}


.facility-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2d339b, #2d339b);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin: 5px;
    box-shadow: 0 3px 12px rgba(26, 92, 46, .3);
}



.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: #2d339b;
    font-weight: 700;
    margin-bottom: 6px;
}


.payment-table-wrap .table-header {
    background: #2d339b;
    color: #fff;
    padding: 20px 24px;
}


.payment-table tbody tr td:first-child {
    font-weight: 700;
    color: #2d339b;
    background: #f4f9f5;
    white-space: nowrap;
}


.payment-table tbody tr td:last-child {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    letter-spacing: .5px;
}


.payment-table-wrap .table-header h5 {
    font-family: 'Playfair Display', serif;
    margin: 0;
    font-size: 1.1rem;
}

.payment-table-wrap {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, .1);
    max-width: 580px;
}


.copy-btn {
    background: #2d339b;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: .75rem;
    cursor: pointer;
    margin-left: 8px;
    transition: background .2s;
}



.content-section:nth-child(even) {
    background: #f4f9f5;
}


.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: #2d339b;
    font-weight: 700;
    margin-bottom: 6px;
}


.section-divider {
    width: 55px;
    height: 4px;
    background: #2d339b;
    border-radius: 2px;
    margin-bottom: 28px;
}


.doc-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: inherit;
    border: 1.5px solid #2d339b;
    transition: all .2s;
}


.doc-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #e8f5ec, #c8ead4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2d339b;
}


.doc-card h6 {
    font-weight: 700;
    margin: 0 0 4px;
    color: #2d339b;
}

.doc-card small {
    color: #6c757d;
    font-size: .8rem;
}


.doc-card .doc-arrow {
    margin-left: auto;
    color: #2d339b;
    opacity: .6;
    font-size: 1.1rem;
}


.doc-card:hover
 {
    border-color: #2d339b;
    box-shadow: 0 8px 28px rgba(26, 92, 46, .15);
    transform: translateY(-2px);
    color: #2d339b  ;
}






.info-card h3 {
    font-family: 'Playfair Display', serif;
    color: #2d339b;
    font-size: 1.25rem;
    margin-bottom: 14px;
}





.info-card p {
    color: #444;
    line-height: 1.75;
    font-size: 0.97rem;
}


.info-card h3 {
    font-family: 'Playfair Display', serif;
    color: #2d339b;
    font-size: 1.25rem;
    margin-bottom: 14px;
}




.vm-box.vision {
    background: #2b3195;
    color: #fff;
}

.vm-box {
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    height: 100%;
}


.vm-box.vision .vm-label {
    color: var
#ffd166;
}

.vm-box .vm-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.7;
}


.vm-box.vision h2 {
    color: #fff;
}

.vm-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 16px;
}
.vm-box.vision p {
    color: rgba(255, 255, 255, 0.88);
}

.vm-box.vision .big-icon {
    color: #fff;
}
.vm-box .big-icon {
    position: absolute;
    right: 20px;
    bottom: 16px;
    font-size: 5rem;
    opacity: 0.07;
}


vm-box.mission {
    background: var(--white);
    border: 2px solid #2b3195;
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    height: 100%;
}


.vm-box.mission .vm-label {
    color: #2b3195;
}

.vm-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 16px;
}


.vm-box.mission p {
    color: #333;
}

.vm-box p {
    line-height: 1.8;
    font-size: 0.97rem;
}


.vm-box.mission .big-icon {
    color: #2b3195;
}

.vm-box .big-icon {
    position: absolute;
    right: 20px;
    bottom: 16px;
    font-size: 5rem;
    opacity: 0.07;
}

.vm-box{
      border:2px solid #2b3195;
}


.icon-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(43,49,149,0.10);
    padding: 28px 22px;
    text-align: center;
    height: 100%;
    transition: box-shadow .25s, transform .25s;
}


.icon-card .icon-wrap {
    width: 60px;
    height: 60px;
    background: #eef0fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: #2b3195;
}



.icon-card h5 {
    font-weight: 700;
    color: #2b3195;
    font-size: 0.95rem;
}



.dean-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(43,49,149,0.10);
    overflow: hidden;
}



.dean-card .dean-header {
    background: linear-gradient(135deg, #1e2370, #3d45b8);
    padding: 30px;
    color: #fff;
}


.dean-card .dean-avatar {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 14px;
    border: 3px solid #f0a500;
}


.dean-card .dean-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
}


.dean-card .dean-body {
    padding: 28px 30px;
}



.qual-badge
 {
    display: inline-block;
    background: #eef0fb;
    color: #2b3195;
    border: 1px solid #2b3195;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    margin: 3px 3px 3px 0;
}
.dean-card .dean-body p {
    line-height: 1.8;
    color: #333;
    font-size: 0.96rem;
}


.sec-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #2b3195;
    font-weight: 700;
}
.sec-divider {
    width: 50px;
    height: 4px;
    background: #f0a500;
    border-radius: 2px;
    margin: 10px 0 24px;
}


.year-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: #1e2370;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}
.year-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2b3195, #3d45b8);
}


.year-card .year-num {
    font-size: 3rem;
    font-weight: 800;
    /* color: var(--bg-section); */
    line-height: 1;
    margin-bottom: 4px;
    font-family: 'Playfair Display', serif;
    color: #2b3195;
    opacity: 0.15;
    position: absolute;
    right: 16px;
    top: 14px;
}


.year-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #2b3195;
    margin-bottom: 18px;
    font-weight: 700;
}


.year-card a.btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2b3195;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: background .2s;
}






































.page-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--text-main);
      text-align: center;
      letter-spacing: 2px;
      margin-bottom: 8px;
    }
    .page-title span { color: var(--gold); }
    .page-subtitle {
      text-align: center;
      color: var(--text-sub);
      font-size: 0.9rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 48px;
    }
 
    /* ── CARD ── */
    .profile-card {
      position: relative;
      width: 100%;
      border-radius: 18px;
      overflow: hidden;
      background: #2d339b;
      box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 1.5px 6px rgba(0,0,0,0.06);
      cursor: pointer;
      transition: transform 0.35s cubic-bezier(.22,1,.36,1),
                  box-shadow 0.35s ease;
      margin-bottom: 30px;
    }
    .profile-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 24px 56px rgba(0,70,130,0.18), 0 4px 16px rgba(0,0,0,0.10);
    }
 
    /* Gold top bar */
    .profile-card::before {
      content: '';
      display: block;
      height: 5px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--teal));
    }
 
    /* Image section */
    .card-image-wrap {
      position: relative;
      width: 100%;
      padding-top: 100%; /* square crop */
      overflow: hidden;
      background: #e4eaf2;
    }
    .card-image-wrap img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      transition: transform 0.5s ease;
    }
    .profile-card:hover .card-image-wrap img {
      transform: scale(1.06);
    }
 
    /* Static info below image */
    .card-static {
      padding: 18px 16px 14px;
      text-align: center;
      background: #fff;
      position: relative;
      z-index: 2;
    }
    .card-static .person-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.13rem;
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: 0.5px;
      margin-bottom: 3px;
      line-height: 1.2;
    }
    .card-static .person-desig {
      font-size: 0.76rem;
      color: var(--teal);
      font-weight: 500;
      letter-spacing: 0.5px;
    }
 
    /* ── HOVER OVERLAY ── */
    .card-overlay {
      position: absolute;
      inset: 0;
      background: #2d339b;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 22px 18px;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.38s ease, transform 0.38s cubic-bezier(.22,1,.36,1);
      z-index: 10;
    }
    .profile-card:hover .card-overlay {
      opacity: 1;
      transform: translateY(0);
    }
 
    .overlay-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      text-align: center;
      margin-bottom: 2px;
      letter-spacing: 0.5px;
    }
    .overlay-desig {
      font-size: 0.7rem;
      color: #b8960c;
      letter-spacing: 1px;
      text-align: center;
      margin-bottom: 14px;
    }
 
    .overlay-divider {
      width: 40px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--teal));
      border-radius: 2px;
      margin: 0 auto 14px;
    }
 
    .overlay-info {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-bottom: 16px;
    }
    .overlay-info-item {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 0.76rem;
      color: #cce0f5;
    }
    .overlay-info-item i {
      color: var(--gold-light);
      width: 15px;
      font-size: 0.78rem;
      flex-shrink: 0;
    }
 
    .overlay-qual {
      font-size: 0.72rem;
      color: #a8c8e8;
      text-align: center;
      margin-bottom: 14px;
      font-style: italic;
    }
 
    .bio-btn {
      display: inline-block;
      padding: 7px 22px;
      background: linear-gradient(90deg, #b8960c, #e8c84a);
      color: var(--dark);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border-radius: 30px;
      text-decoration: none;
      border: none; 
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 2px 12px rgba(184,150,12,0.35);
    }
    .bio-btn:hover {
      transform: scale(1.06);
      box-shadow: 0 4px 20px rgba(184,150,12,0.55);
      color: var(--dark);
    }
 
    /* Grid spacing */
    .cards-grid .col {
      display: flex;
      justify-content: center;
    }
    .cards-grid .profile-card {
      max-width: 100%;
      width: 100%;
    }
 
    @media (max-width: 576px) {
      .page-title { font-size: 1.9rem; }
      .cards-grid .profile-card { max-width: 100%; }
    }
    
    
    
    
       .lecture {
    background-color: #2d339b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px 10px 0px 0;
}
      .lecture i{
          margin-right:10px;
          
      }
      .lecture p{
          margin-bottom:0;
          
      }
      .one_o p{
          background: #d7d7d7;
    text-align: center;
    padding: 5px;
          
      }
      .ani_mal p{
          
      }
      .view_v{
          
      }
      .doc-table td {
    vertical-align: middle;
    padding: .85rem 1.1rem;
    border-color: #e8f0ec;
}
.btn-view {
    background: #2d339b;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: .3rem .9rem;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    transition: background .2s, transform .2s;
}
.box_shadow{
    box-shadow:0 8px 32px rgba(26,107,58,.13);
    border-radius:10px;
}


  /* Scroll Animation */
.reveal{
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease;
}

/* Active Animation */
.reveal.active{
    opacity: 1;
    transform: translateY(0);
}    


   .biodeta{
         margin-top:20px;
     }
     .biodeta button{
         background: #084298;
    color: #fff;
    padding: 6px 20px;
    border:none;
    border-radius:10px;
     }
      .biodeta i{margin-left:10px;}