 :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;
} 
/* Quick Contact Cards */
        .quick-contact-section {
            padding: 80px 0;
            background: white;
            margin-top: -50px;
            position: relative;
            z-index: 20;
        }

        .quick-contact-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .quick-contact-card {
            background: linear-gradient(135deg, #fafafa, #f0f0f0);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            border: 2px solid #e8e8e8;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .quick-contact-card:hover {
            transform: translateY(-10px);
            border-color: var(--maroon);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            background: white;
        }

        .contact-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.4s ease;
        }

        .quick-contact-card:hover .contact-icon {
            transform: scale(1.1);
        }

        .contact-icon i {
            font-size: 35px;
            color: white;
        }

        .quick-contact-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--maroon);
            margin-bottom: 10px;
        }

        .quick-contact-card p {
            font-size: 1rem;
            color: var(--text-gray);
            margin: 0;
        }

        .quick-contact-card a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .quick-contact-card:hover a {
            color: var(--maroon);
        }

        /* Main Contact Section */
        .main-contact-section {
            padding: 100px 0;
            background: #fafafa;
        }

        .contact-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: white;
            padding: 50px;
            border-radius: 25px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
        }

        .form-title {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--maroon);
            margin-bottom: 15px;
        }

        .form-subtitle {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 40px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            font-size: 1rem;
            font-weight: 600;
            color: var(--black);
            margin-bottom: 10px;
            display: block;
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e8e8e8;
            border-radius: 12px;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--maroon);
            box-shadow: 0 0 0 4px rgba(112, 24, 31, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.15rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(112, 24, 31, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(112, 24, 31, 0.4);
        }

        /* Contact Info */
        .contact-info-wrapper {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
        }

        .info-card:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .info-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .info-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--green), #52a045);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .info-icon i {
            font-size: 28px;
            color: white;
        }

        .info-header h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--maroon);
            margin: 0;
        }

        .info-details {
            padding-left: 80px;
        }

        .info-item {
            margin-bottom: 15px;
            font-size: 1.05rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        .info-item strong {
            color: var(--black);
            font-weight: 600;
        }

        .info-item a {
            color: var(--maroon);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .info-item a:hover {
            color: var(--green);
        }

        /* Office Hours */
        .office-hours-section {
            padding: 100px 0;
            background: white;
        }

        .section-heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            display: inline-block;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            color: white;
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .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);
        }

        .hours-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
            background: linear-gradient(135deg, #fafafa, #f5f5f5);
            border-radius: 25px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 2px solid #e8e8e8;
        }

        .hours-row:last-child {
            border-bottom: none;
        }

        .day {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--maroon);
        }

        .time {
            font-size: 1.1rem;
            color: var(--text-gray);
            font-weight: 600;
        }

        .hours-row.closed .time {
            color: #999;
        }

        /* Social Media Section */
        .social-section-1 {
            padding: 100px 0;
            background: #fafafa;
        }

        .social-grid {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .social-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .social-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .social-card.facebook {
            border-top: 4px solid #4267B2;
        }

        .social-card.twitter {
            border-top: 4px solid #1DA1F2;
        }

        .social-card.linkedin {
            border-top: 4px solid #0077B5;
        }

        .social-card.instagram {
            border-top: 4px solid #E4405F;
        }

        .social-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .social-card.facebook .social-icon {
            background: linear-gradient(135deg, #4267B2, #2d4a8a);
        }

        .social-card.twitter .social-icon {
            background: linear-gradient(135deg, #1DA1F2, #0c85d0);
        }

        .social-card.linkedin .social-icon {
            background: linear-gradient(135deg, #0077B5, #005885);
        }

        .social-card.instagram .social-icon {
            background: linear-gradient(135deg, #E4405F, #c13584);
        }

        .social-card:hover .social-icon {
            transform: scale(1.15);
        }

        .social-icon i {
            font-size: 40px;
            color: white;
        }

        .social-card h4 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 8px;
        }

        .social-card p {
            font-size: 1rem;
            color: var(--text-gray);
            margin: 0;
        }

        /* Map Section */
        .map-section {
            padding: 100px 0;
            background: white;
        }

        .map-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .map-wrapper {
            background: #f5f5f5;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .map-placeholder {
            text-align: center;
            color: var(--text-gray);
        }

        .map-placeholder i {
            font-size: 80px;
            color: var(--maroon);
            margin-bottom: 20px;
        }

        .map-placeholder h3 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 10px;
        }

        .map-placeholder p {
            font-size: 1.1rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: #fafafa;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            overflow: hidden;
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #fafafa;
        }

        .faq-question h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--maroon);
            margin: 0;
        }

        .faq-icon {
            font-size: 1.5rem;
            color: var(--maroon);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 30px 25px;
            font-size: 1.05rem;
            color: var(--text-gray);
            line-height: 1.8;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .quick-contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .social-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-contact-grid {
                grid-template-columns: 1fr;
            }

            .contact-form-wrapper {
                padding: 30px;
            }

            .social-grid {
                grid-template-columns: 1fr;
            }

            .info-details {
                padding-left: 0;
            }

            .hours-container {
                padding: 30px;
            }
        }