:root {
            --maroon: #70181f;
            --green: #427d3a;
            --black: #000000;
            --white: #ffffff;
            --light-bg: #f5f5f5;
            --text-gray: #555555;
            --border-light: #e0e0e0;
            --blue: #3498db;
            --orange: #e67e22;
            --purple: #9b59b6;
        }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-gray);
    background: #fafafa;
    overflow-x: hidden;
}

/* Hero Section */
.leadership-hero {
    background: linear-gradient(rgb(112 24 31 / 34%), rgb(112 24 31 / 68%)), url(../assets/image/bg.webp?w=1200&h=600&fit=crop) center / cover;
    /* padding: 120px 0 100px; */
    position: relative;
    overflow: hidden;
}

.leadership-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 30px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}
/* Quick Stats Section */
        .quick-stats-section {
            padding: 80px 0;
            background: white;
            margin-top: -50px;
            position: relative;
            z-index: 20;
        }

        .quick-stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(112, 24, 31, 0.05), rgba(66, 125, 58, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: var(--maroon);
            box-shadow: 0 20px 60px rgba(112, 24, 31, 0.2);
        }

        .stat-card > * {
            position: relative;
            z-index: 1;
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 5px 15px rgba(112, 24, 31, 0.3);
        }

        .stat-card:hover .stat-icon {
            transform: scale(1.2) rotate(360deg);
            box-shadow: 0 10px 30px rgba(112, 24, 31, 0.5);
        }

        .stat-icon i {
            font-size: 35px;
            color: white;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--maroon);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: 600;
        }

        /* Section Heading */
        .section-heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            display: inline-block;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            color: white;
            padding: 10px 30px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(112, 24, 31, 0.3);
            transition: all 0.3s ease;
        }

        .section-label:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(112, 24, 31, 0.5);
        }

        .section-heading h2 {
            font-size: 3rem;
            font-weight: 900;
            color: var(--black);
            margin-bottom: 15px;
        }

        .section-heading p {
            font-size: 1.2rem;
            color: var(--text-gray);
        }

        /* Filter Section */
        .filter-section {
            padding: 60px 0 40px;
            background: #fafafa;
        }

        .filter-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .filter-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .filter-group {
            flex: 1;
            min-width: 250px;
        }

        .filter-label {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--maroon);
            margin-bottom: 10px;
            display: block;
        }

        .filter-select {
            width: 100%;
            padding: 12px 20px;
            border: 2px solid #e8e8e8;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            color: var(--text-gray);
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-select:focus {
            outline: none;
            border-color: var(--maroon);
            box-shadow: 0 0 0 4px rgba(112, 24, 31, 0.1);
        }

        .search-box-1 {
            position: relative;
            flex: 2;
            min-width: 300px;
        }

        .search-input-1 {
            width: 100%;
            padding: 12px 50px 12px 20px;
            border: 2px solid #e8e8e8;
            border-radius: 12px;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }

        .search-input-1:focus {
            outline: none;
            border-color: var(--maroon);
            box-shadow: 0 0 0 4px rgba(112, 24, 31, 0.1);
        }

        .search-btn-1 {
            position: absolute;
            right: 3px;
            bottom: -19px;
            transform: translateY(-50%);
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            border: none;
            padding: 10px 20px;
            border-radius: 10px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-btn-1:hover {
            transform: translateY(-50%) scale(1.05);
        }

        /* Publications Section */
        .publications-section {
            padding: 40px 0 100px;
            background: #fafafa;
        }

        .publications-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .publication-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            margin-bottom: 25px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .publication-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            transition: width 0.3s ease;
        }

        .publication-card.journal::before {
            background: linear-gradient(180deg, var(--blue), #2980b9);
        }

        .publication-card.conference::before {
            background: linear-gradient(180deg, var(--green), #52a045);
        }

        .publication-card.patent::before {
            background: linear-gradient(180deg, var(--orange), #d35400);
        }

        .publication-card.book::before {
            background: linear-gradient(180deg, var(--purple), #8e44ad);
        }

        .publication-card:hover::before {
            width: 100%;
            opacity: 0.1;
        }

        .publication-card:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 50px rgba(112, 24, 31, 0.15);
            border-color: var(--maroon);
        }

        .publication-header {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 20px;
        }

        .publication-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .publication-card:hover .publication-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .publication-card.journal .publication-icon {
            background: linear-gradient(135deg, var(--blue), #2980b9);
        }

        .publication-card.conference .publication-icon {
            background: linear-gradient(135deg, var(--green), #52a045);
        }

        .publication-card.patent .publication-icon {
            background: linear-gradient(135deg, var(--orange), #d35400);
        }

        .publication-card.book .publication-icon {
            background: linear-gradient(135deg, var(--purple), #8e44ad);
        }

        .publication-icon i {
            font-size: 28px;
            color: white;
        }

        .publication-content {
            flex: 1;
        }

        .publication-type {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .publication-card.journal .publication-type {
            background: rgba(52, 152, 219, 0.15);
            color: var(--blue);
        }

        .publication-card.conference .publication-type {
            background: rgba(66, 125, 58, 0.15);
            color: var(--green);
        }

        .publication-card.patent .publication-type {
            background: rgba(230, 126, 34, 0.15);
            color: var(--orange);
        }

        .publication-card.book .publication-type {
            background: rgba(155, 89, 182, 0.15);
            color: var(--purple);
        }

        .publication-title {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .publication-authors {
            font-size: 1rem;
            color: var(--text-gray);
            margin-bottom: 12px;
            font-weight: 500;
        }

        .publication-authors strong {
            color: var(--black);
        }

        .publication-meta {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        .meta-item i {
            color: var(--maroon);
        }

        .publication-abstract {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .publication-footer {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            align-items: center;
        }

        .publication-tag {
            background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-gray);
        }

        .publication-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            color: white;
            border-color: var(--maroon);
            box-shadow: 0 5px 15px rgba(112, 24, 31, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(112, 24, 31, 0.4);
            color: white;
        }

        .btn-secondary {
            background: white;
            color: var(--maroon);
            border-color: var(--maroon);
        }

        .btn-secondary:hover {
            background: var(--maroon);
            color: white;
            transform: translateY(-2px);
        }

        /* Department Section */
        .department-section {
            padding: 100px 0;
            background: white;
        }

        .department-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .department-card {
            background: white;
            padding: 35px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 2px solid #e8e8e8;
            cursor: pointer;
        }

        .department-card:hover {
            transform: translateY(-10px);
            border-color: var(--maroon);
            box-shadow: 0 20px 60px rgba(112, 24, 31, 0.15);
        }

        .department-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--green), #52a045);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(66, 125, 58, 0.3);
            transition: all 0.4s ease;
        }

        .department-card:hover .department-icon {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 12px 35px rgba(66, 125, 58, 0.5);
        }

        .department-icon i {
            font-size: 40px;
            color: white;
        }

        .department-card h4 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 15px;
        }

        .department-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid #f0f0f0;
        }

        .dept-stat {
            text-align: center;
        }

        .dept-stat-number {
            font-size: 2rem;
            font-weight: 900;
            color: var(--maroon);
            line-height: 1;
        }

        .dept-stat-label {
            font-size: 0.85rem;
            color: var(--text-gray);
            margin-top: 5px;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        .cta-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            color: white;
            position: relative;
            z-index: 10;
            padding: 0 20px;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 35px;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .cta-btn.primary {
            background: white;
            color: var(--maroon);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        .cta-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
            color: var(--maroon);
        }

        .cta-btn.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-btn.secondary:hover {
            background: white;
            color: var(--maroon);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .quick-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .department-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section-heading h2 {
                font-size: 2rem;
            }

            .quick-stats-grid,
            .department-grid {
                grid-template-columns: 1fr;
            }

            .filter-row {
                flex-direction: column;
            }

            .filter-group,
            .search-box-1 {
                min-width: 100%;
            }

            .publication-header {
                flex-direction: column;
            }

            .publication-meta {
                flex-direction: column;
                gap: 10px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }