 :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(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;
} 
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-gray);
            background: #fafafa;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(112, 24, 31, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(66, 125, 58, 0.03) 0%, transparent 50%);
            background-attachment: fixed;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--maroon) 0%, #4a1014 100%);
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .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;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(66, 125, 58, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 10s ease-in-out infinite reverse;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.05); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .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;
            animation: float 3s ease-in-out infinite;
        }

        .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;
        }

/* Search Section */
        .search-section-1 {
            padding: 80px 0;
            background: white;
            margin-top: -50px;
            position: relative;
            z-index: 20;
        }

        .search-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .search-box-1 {
            position: relative;
        }

        .search-input-1 {
            width: 100%;
            padding: 25px 70px 25px 30px;
            border: 3px solid #e8e8e8;
            border-radius: 60px;
            font-size: 1.1rem;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .search-input-1:focus {
            outline: none;
            border-color: var(--maroon);
            box-shadow: 0 15px 50px rgba(112, 24, 31, 0.15);
        }

        .search-btn-1 {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            color: white;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(112, 24, 31, 0.3);
        }

        .search-btn-1:hover {
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 8px 30px rgba(112, 24, 31, 0.5);
        }

        .search-suggestions {
            margin-top: 25px;
            text-align: center;
        }

        .search-suggestions span {
            color: var(--text-gray);
            margin-right: 10px;
            font-weight: 600;
        }

        .suggestion-tag {
            display: inline-block;
            background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
            padding: 8px 20px;
            border-radius: 25px;
            margin: 5px;
            color: var(--text-gray);
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .suggestion-tag:hover {
            background: var(--maroon);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(112, 24, 31, 0.3);
        }

        /* 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);
        }

        /* Category Tabs */
        .category-section {
            padding: 80px 0 50px;
            background: #fafafa;
        }

        .category-tabs {
            max-width: 1200px;
            margin: 0 auto 60px;
            padding: 0 20px;
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .category-tab {
            background: white;
            padding: 15px 35px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid #e8e8e8;
            font-weight: 700;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .category-tab:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .category-tab.active {
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            color: white;
            border-color: var(--maroon);
            box-shadow: 0 8px 30px rgba(112, 24, 31, 0.3);
        }

        .category-tab i {
            font-size: 1.2rem;
        }

        /* FAQ Container */
        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .faq-category {
            display: none;
        }

        .faq-category.active {
            display: block;
        }

        .faq-item {
            background: white;
            border-radius: 20px;
            margin-bottom: 20px;
            overflow: hidden;
            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;
        }

        .faq-item:hover {
            box-shadow: 0 12px 40px rgba(112, 24, 31, 0.12);
        }

        .faq-item.active {
            border-color: var(--maroon);
            box-shadow: 0 15px 50px rgba(112, 24, 31, 0.15);
        }

        .faq-question {
            padding: 30px 35px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            background: linear-gradient(135deg, #fafafa, #f8f8f8);
        }

        .faq-item.active .faq-question {
            background: linear-gradient(135deg, rgba(112, 24, 31, 0.05), rgba(66, 125, 58, 0.05));
        }

        .faq-question-content {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 1;
        }

        .faq-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(112, 24, 31, 0.3);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .faq-item.active .faq-icon {
            transform: scale(1.1) rotate(360deg);
            box-shadow: 0 8px 25px rgba(112, 24, 31, 0.5);
        }

        .faq-icon i {
            font-size: 22px;
            color: white;
        }

        .faq-question h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--maroon);
            margin: 0;
        }

        .faq-toggle {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--green), #52a045);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            flex-shrink: 0;
        }

        .faq-toggle i {
            font-size: 1.3rem;
            color: white;
            transition: transform 0.4s ease;
        }

        .faq-item.active .faq-toggle {
            background: linear-gradient(135deg, var(--maroon), #8b2329);
        }

        .faq-item.active .faq-toggle i {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 800px;
        }

        .faq-answer-content {
            padding: 30px 35px 35px 105px;
            color: var(--text-gray);
            line-height: 1.9;
            font-size: 1.05rem;
        }

        .faq-answer-content ul {
            margin: 15px 0;
            padding-left: 25px;
        }

        .faq-answer-content li {
            margin-bottom: 10px;
        }

        .faq-answer-content strong {
            color: var(--maroon);
            font-weight: 700;
        }

        /* Quick Links Section */
        .quick-links-section {
            padding: 100px 0;
            background: white;
        }

        .quick-links-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .quick-link-card {
            background: white;
            padding: 35px 25px;
            border-radius: 20px;
            text-align: center;
            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 #e8e8e8;
            cursor: pointer;
        }

        .quick-link-card:hover {
            transform: translateY(-10px);
            border-color: var(--maroon);
            box-shadow: 0 20px 60px rgba(112, 24, 31, 0.15);
        }

        .quick-link-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--green), #52a045);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(66, 125, 58, 0.3);
            transition: all 0.4s ease;
        }

        .quick-link-card:hover .quick-link-icon {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 12px 35px rgba(66, 125, 58, 0.5);
        }

        .quick-link-icon i {
            font-size: 32px;
            color: white;
        }

        .quick-link-card h4 {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 10px;
        }

        .quick-link-card p {
            font-size: 0.95rem;
            color: var(--text-gray);
            margin: 0;
        }

        /* Stats Section */
        .stats-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            position: relative;
            overflow: hidden;
        }

        .stats-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;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 10;
        }

        .stat-box {
            text-align: center;
            color: white;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.2rem;
            font-weight: 600;
            opacity: 0.95;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: #fafafa;
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px;
            background: white;
            border-radius: 30px;
            text-align: center;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--maroon), var(--green));
        }

        .cta-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, var(--green), #52a045);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(66, 125, 58, 0.3);
        }

        .cta-icon i {
            font-size: 45px;
            color: white;
        }

        .cta-container h2 {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--maroon);
            margin-bottom: 20px;
        }

        .cta-container p {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 35px;
            line-height: 1.8;
        }

        .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: linear-gradient(135deg, var(--maroon), #8b2329);
            color: white;
            box-shadow: 0 10px 30px rgba(112, 24, 31, 0.3);
        }

        .cta-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(112, 24, 31, 0.4);
            color: white;
        }

        .cta-btn.secondary {
            background: white;
            color: var(--maroon);
            border: 2px solid var(--maroon);
        }

        .cta-btn.secondary:hover {
            background: var(--maroon);
            color: white;
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .quick-links-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section-heading h2 {
                font-size: 2rem;
            }

            .search-input-1 {
                padding: 20px 20px 20px 20px;
                font-size: 1rem;
            }

            .search-btn-1 {
                position: static;
                transform: none;
                width: 100%;
                margin-top: 15px;
                border-radius: 50px;
            }

            .search-btn-1:hover {
                transform: scale(1.02);
            }

            .category-tabs {
                flex-direction: column;
            }

            .category-tab {
                justify-content: center;
            }

            .faq-answer-content {
                padding: 25px 25px 30px;
            }

            .faq-question-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .quick-links-grid,
            .stats-container {
                grid-template-columns: 1fr;
            }

            .cta-container {
                padding: 40px 25px;
            }

            .cta-container h2 {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-btn {
                width: 100%;
                justify-content: center;
            }
        }