:root {
    --maroon: #70181f;
    --green: #427d3a;
    --black: #000000;
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --text-gray: #555555;
    --border-light: #e0e0e0;
}

* {
    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(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.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;
} 
 .hero-title span {
            background: linear-gradient(135deg, var(--green) 0%, #5fa94d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            animation: gradientShift 3s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.3); }
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: var(--light-bg);
            margin-top: -60px;
            position: relative;
            z-index: 20;
        }

        .stats-container {
            background: var(--white);
            border-radius: 20px;
            padding: 50px 30px;
            box-shadow: 0 10px 50px rgba(0,0,0,0.1);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            opacity: 0;
            animation: fadeInScale 0.6s ease forwards;
        }

        .stat-item:nth-child(1) { animation-delay: 0.2s; }
        .stat-item:nth-child(2) { animation-delay: 0.4s; }
        .stat-item:nth-child(3) { animation-delay: 0.6s; }
        .stat-item:nth-child(4) { animation-delay: 0.8s; }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--maroon) 0%, #8b1f28 100%);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 5px 20px rgba(112, 24, 31, 0.3);
            position: relative;
            overflow: hidden;
        }

        .stat-icon::before {
            content: '';
            position: absolute;
            inset: -10px;
            background: linear-gradient(45deg, var(--green), var(--maroon));
            opacity: 0;
            transition: opacity 0.5s ease;
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .stat-item:hover .stat-icon::before {
            opacity: 1;
        }

        .stat-item:hover .stat-icon {
            background: var(--green);
            transform: scale(1.15) translateY(-10px);
            box-shadow: 0 15px 40px rgba(66, 125, 58, 0.5);
        }

        .stat-icon i {
            font-size: 2.2rem;
            color: var(--white);
            position: relative;
            z-index: 1;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 0.95rem;
            color: var(--text-gray);
            font-weight: 500;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            display: inline-block;
            background: var(--maroon);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--black);
            margin-bottom: 15px;
        }

        .section-desc {
            font-size: 1.1rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Council Members Section */
        .members-section {
            padding: 80px 0;
            background: var(--white);
        }

        .chairman-card {
            max-width: 800px;
            margin: 0 auto 60px;
            background: linear-gradient(135deg, var(--maroon) 0%, #8b1f28 100%);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(112, 24, 31, 0.3);
            position: relative;
        }

        .chairman-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotateGlow 10s linear infinite;
        }

        @keyframes rotateGlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .chairman-content {
            display: flex;
            align-items: center;
            gap: 40px;
            padding: 50px;
            position: relative;
            z-index: 1;
        }

        .chairman-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid rgba(255, 255, 255, 0.3);
            flex-shrink: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease;
        }

        .chairman-card:hover .chairman-image {
            transform: scale(1.1) rotate(5deg);
        }

        .chairman-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .chairman-info {
            color: var(--white);
        }

        .chairman-name {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .chairman-designation {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
            opacity: 0.95;
        }

        .chairman-bio {
            font-size: 1rem;
            line-height: 1.8;
            opacity: 0.9;
        }

        .members-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .member-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 2px solid transparent;
        }

        .member-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--maroon) 0%, var(--green) 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .member-card:hover::before {
            transform: scaleX(1);
        }

        .member-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            border-color: var(--maroon);
        }

        .member-image {
            height: 280px;
            background: var(--light-bg);
            overflow: hidden;
            position: relative;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .member-card:hover .member-image img {
            transform: scale(1.15);
        }

        .member-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(112, 24, 31, 0.9) 0%, transparent 100%);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .member-card:hover .member-overlay {
            transform: translateY(0);
        }

        .member-social {
            display: flex;
            gap: 10px;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--white);
            color: var(--maroon);
            transform: translateY(-3px);
        }

        .member-content {
            padding: 25px;
        }

        .member-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 8px;
        }

        .member-designation {
            font-size: 1rem;
            font-weight: 600;
            color: var(--green);
            margin-bottom: 12px;
        }

        .member-department {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-bottom: 15px;
        }

        .member-credentials {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .credential-tag {
            display: inline-block;
            background: var(--light-bg);
            color: var(--maroon);
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* Functions Section */
        .functions-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .functions-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .function-card {
            background: var(--white);
            border-radius: 15px;
            padding: 35px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .function-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--maroon) 0%, var(--green) 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .function-card:hover::before {
            transform: scaleX(1);
        }

        .function-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .function-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .function-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--maroon) 0%, #8b1f28 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .function-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            animation: iconShine 3s infinite;
        }

        @keyframes iconShine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .function-card:nth-child(even) .function-icon {
            background: linear-gradient(135deg, var(--green) 0%, #5fa94d 100%);
        }

        .function-card:hover .function-icon {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 10px 30px rgba(112, 24, 31, 0.4);
        }

        .function-icon i {
            font-size: 2rem;
            color: var(--white);
            position: relative;
            z-index: 1;
        }

        .function-header h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--black);
            margin: 0;
        }

        .function-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .function-list li {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        .function-list i {
            color: var(--green);
            margin-top: 5px;
            flex-shrink: 0;
        }

        /* Meetings Section */
        .meetings-section {
            padding: 80px 0;
            background: var(--black);
        }

        .section-header.light .section-tag {
            background: var(--white);
            color: var(--black);
        }

        .section-header.light .section-title {
            color: var(--white);
        }

        .section-header.light .section-desc {
            color: rgba(255, 255, 255, 0.8);
        }

        .meetings-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .meeting-card {
            background: var(--white);
            border-radius: 15px;
            padding: 35px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .meeting-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--maroon), var(--green));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .meeting-card > * {
            position: relative;
            z-index: 1;
        }

        .meeting-card:hover::before {
            opacity: 1;
        }

        .meeting-card:hover {
            transform: translateY(-15px) scale(1.05);
            border-color: var(--white);
            box-shadow: 0 20px 60px rgba(112, 24, 31, 0.4);
        }

        .meeting-icon {
            width: 80px;
            height: 80px;
            background: var(--maroon);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .meeting-card:hover .meeting-icon {
            background: var(--white);
        }

        .meeting-icon i {
            font-size: 2.2rem;
            color: var(--white);
            transition: all 0.4s ease;
        }

        .meeting-card:hover .meeting-icon i {
            color: var(--maroon);
        }

        .meeting-card h5 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 10px;
            transition: all 0.4s ease;
        }

        .meeting-card:hover h5 {
            color: var(--white);
        }

        .meeting-card p {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.6;
            transition: all 0.4s ease;
        }

        .meeting-card:hover p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: var(--green);
            text-align: center;
        }

        .cta-content h3 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.2rem;
            color: var(--white);
            margin-bottom: 35px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            color: var(--green);
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--maroon), #8b1f28);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .cta-btn span,
        .cta-btn i {
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
        }

        .cta-btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .cta-btn:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            color: var(--white);
        }

        .cta-btn:hover i {
            transform: translateX(5px);
            animation: arrowBounce 0.6s ease infinite;
        }

        @keyframes arrowBounce {
            0%, 100% { transform: translateX(5px); }
            50% { transform: translateX(10px); }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .members-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .functions-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .chairman-content {
                flex-direction: column;
                text-align: center;
                padding: 30px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .members-grid {
                grid-template-columns: 1fr;
            }

            .meetings-grid {
                grid-template-columns: 1fr;
            }
        }