: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;
}
 /* 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;
        }

        /* Collections Section */
        .collections-section {
            padding: 80px 0;
            background: var(--white);
        }

        .collections-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .collection-card {
            background: var(--white);
            border: 2px solid var(--border-light);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .collection-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;
        }

        .collection-card:hover::before {
            transform: scaleX(1);
        }

        .collection-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: var(--maroon);
            box-shadow: 0 20px 50px rgba(112, 24, 31, 0.15);
        }

        .collection-image {
            height: 200px;
            background: var(--light-bg);
            overflow: hidden;
            position: relative;
        }

        .collection-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .collection-card:hover .collection-image img {
            transform: scale(1.15);
        }

        .collection-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(112, 24, 31, 0.9) 0%, transparent 100%);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .collection-card:hover .collection-overlay {
            opacity: 1;
        }

        .collection-count {
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 800;
        }

        .collection-content {
            padding: 25px;
        }

        .collection-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--maroon) 0%, #8b1f28 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.4s ease;
        }

        .collection-card:hover .collection-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .collection-icon i {
            font-size: 1.8rem;
            color: var(--white);
        }

        .collection-content h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 10px;
        }

        .collection-content p {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            border-radius: 15px;
            padding: 40px;
            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;
        }

        .service-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;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .service-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .service-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;
        }

        .service-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); }
        }

        .service-card:nth-child(even) .service-icon {
            background: linear-gradient(135deg, var(--green) 0%, #5fa94d 100%);
        }

        .service-card:hover .service-icon {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 10px 30px rgba(112, 24, 31, 0.4);
        }

        .service-icon i {
            font-size: 2rem;
            color: var(--white);
            position: relative;
            z-index: 1;
        }

        .service-header h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--black);
            margin: 0;
        }

        .service-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-list li {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        .service-list i {
            color: var(--green);
            margin-top: 5px;
            flex-shrink: 0;
        }

        /* Facilities Section */
        .facilities-section-1 {
            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);
        }

        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .facility-card {
            background: var(--white);
            border-radius: 15px;
            padding: 35px 25px;
            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;
        }

        .facility-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;
        }

        .facility-card > * {
            position: relative;
            z-index: 1;
        }

        .facility-card:hover::before {
            opacity: 1;
        }

        .facility-card:hover {
            transform: translateY(-15px) scale(1.05);
            border-color: var(--white);
            box-shadow: 0 20px 60px rgba(112, 24, 31, 0.4);
        }

        .facility-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;
        }

        .facility-card:hover .facility-icon {
            background: var(--white);
            transform: scale(1.1);
        }

        .facility-icon i {
            font-size: 2.2rem;
            color: var(--white);
            transition: all 0.4s ease;
        }

        .facility-card:hover .facility-icon i {
            color: var(--maroon);
        }

        .facility-card h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 8px;
            transition: all 0.4s ease;
        }

        .facility-card:hover h5 {
            color: var(--white);
        }

        .facility-card p {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.5;
            transition: all 0.4s ease;
        }

        .facility-card:hover p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Timing Section */
        .timing-section {
            padding: 80px 0;
            background: var(--white);
        }

        .timing-container {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--maroon) 0%, #8b1f28 25%, var(--green) 75%, #5fa94d 100%);
            background-size: 400% 400%;
            border-radius: 20px;
            padding: 50px;
            color: var(--white);
            position: relative;
            overflow: hidden;
            animation: gradientAnimation 15s ease infinite;
        }

        @keyframes gradientAnimation {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .timing-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -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); }
        }

        .timing-container > * {
            position: relative;
            z-index: 1;
        }

        .timing-container h3 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 40px;
            text-align: center;
            text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .timing-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .timing-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .timing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .timing-card:hover::before {
            left: 100%;
        }

        .timing-card:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateX(15px) translateY(-5px);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .timing-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
            transition: all 0.4s ease;
        }

        .timing-card:hover .timing-icon {
            transform: scale(1.2) rotate(10deg);
            filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
        }

        .timing-card h5 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .timing-card p {
            font-size: 1.1rem;
            margin: 0;
            opacity: 0.95;
        }

        /* Rules Section */
        .rules-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .rules-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .rule-card {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            border-left: 5px solid var(--maroon);
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .rule-card:hover {
            transform: translateX(10px);
            border-left-color: var(--green);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }

        .rule-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .rule-number {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--maroon), var(--green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--white);
            flex-shrink: 0;
            transition: all 0.4s ease;
        }

        .rule-card:hover .rule-number {
            transform: rotate(360deg) scale(1.1);
        }

        .rule-header h5 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--black);
            margin: 0;
        }

        .rule-card p {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.6;
            margin: 0;
        }

        /* 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);
            }

            .collections-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .facilities-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .collections-grid {
                grid-template-columns: 1fr;
            }

            .facilities-grid {
                grid-template-columns: 1fr;
            }

            .timing-grid {
                grid-template-columns: 1fr;
            }

            .rules-grid {
                grid-template-columns: 1fr;
            }

            .timing-container {
                padding: 30px;
            }
        }