.elementor-1078 .elementor-element.elementor-element-0c2fb4d > .elementor-container > .elementor-column > .elementor-widget-wrap{align-content:center;align-items:center;}.elementor-1078 .elementor-element.elementor-element-0c2fb4d > .elementor-container{min-height:400px;}.elementor-1078 .elementor-element.elementor-element-59a3838{width:100%;max-width:100%;}.elementor-1078 .elementor-element.elementor-element-59a3838 > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-1078 .elementor-element.elementor-element-ac670de > .elementor-widget-container{padding:42px 42px 42px 42px;}.elementor-1078 .elementor-element.elementor-element-ac670de .elementor-wrapper{--video-aspect-ratio:1.77777;}.elementor-1078 .elementor-element.elementor-element-a878e54 > .elementor-container{min-height:400px;}.elementor-1078 .elementor-element.elementor-element-98b6f3f > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-1078 .elementor-element.elementor-element-5a2f9b9 > .elementor-container{min-height:400px;}.elementor-1078 .elementor-element.elementor-element-c1bde54 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-7d2c0c7 */.hero-carousel-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Hero Slide */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Ken Burns animation */
@keyframes ken-burns {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Gradient Overlay */
.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), transparent),
                linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, transparent);
}

/* Content Wrapper */
.hero-content-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 48rem; /* Equivalent to max-w-3xl in Tailwind */
    transform: translateY(2rem); /* translate-y-8 */
    opacity: 0;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    transition-delay: 0.3s; /* delay-300 */
}

/* Hero Slide Animations */
@keyframes slide-show {
    0% { opacity: 0; }
    4% { opacity: 1; }
    25% { opacity: 1; }
    29% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes content-show {
    0% { opacity: 0; transform: translateY(2rem); }
    4% { opacity: 1; transform: translateY(0); }
    25% { opacity: 1; transform: translateY(0); }
    29% { opacity: 0; transform: translateY(2rem); }
    100% { opacity: 0; transform: translateY(2rem); }
}

@keyframes ken-burns-slide {
    0% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-slide:nth-child(1) {
    animation: slide-show 24s infinite,
               ken-burns-slide 6s ease-out forwards;
}
.hero-slide:nth-child(1) .hero-content {
    animation: content-show 24s infinite 0.3s; /* Add delay for content */
}

.hero-slide:nth-child(2) {
    animation: slide-show 24s infinite 6s,
               ken-burns-slide 6s ease-out forwards 6s;
}
.hero-slide:nth-child(2) .hero-content {
    animation: content-show 24s infinite 6.3s; /* Add delay for content */
}

.hero-slide:nth-child(3) {
    animation: slide-show 24s infinite 12s,
               ken-burns-slide 6s ease-out forwards 12s;
}
.hero-slide:nth-child(3) .hero-content {
    animation: content-show 24s infinite 12.3s; /* Add delay for content */
}

.hero-slide:nth-child(4) {
    animation: slide-show 24s infinite 18s,
               ken-burns-slide 6s ease-out forwards 18s;
}
.hero-slide:nth-child(4) .hero-content {
    animation: content-show 24s infinite 18.3s; /* Add delay for content */
}

/* Hide navigation arrows and indicators as they would require JS for interaction */
.nav-arrow, .slide-indicators, .progress-bar-container {
    display: none;
}

/* Text Styles */
.hero-subtitle {
    color: #f87171; /* text-red-400 */
    font-weight: 600; /* font-semibold */
    font-size: 1.125rem; /* text-lg */
    margin-bottom: 0.5rem; /* mb-2 */
    letter-spacing: 0.025em; /* tracking-wide */
}

.hero-title {
    font-size: 3rem; /* text-5xl */
    font-weight: 700; /* font-bold */
    color: #fff; /* text-white */
    margin-bottom: 1.5rem; /* mb-6 */
    line-height: 1.2; /* leading-tight */
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem; /* md:text-7xl */
    }
}

.hero-description {
    font-size: 1.25rem; /* text-xl */
    color: #e5e7eb; /* text-gray-200 */
    margin-bottom: 2rem; /* mb-8 */
    line-height: 1.625; /* leading-relaxed */
    max-width: 42rem; /* max-w-2xl */
}

.hero-buttons {
    display: flex;
    flex-direction: column; /* flex-col */
    gap: 1rem; /* gap-4 */
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row; /* sm:flex-row */
    }
}

.btn {
    padding: 1rem 2rem; /* px-8 py-4 */
    font-size: 1.125rem; /* text-lg */
    font-weight: 600; /* font-semibold */
    border-radius: 0.375rem; /* rounded-md */
    transition: all 0.3s ease-in-out; /* transition-all duration-300 */
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: #dc2626; /* bg-red-600 */
    color: #fff; /* text-white */
}

.btn-primary:hover {
    background-color: #b91c1c; /* hover:bg-red-700 */
    transform: scale(1.05); /* hover:scale-105 */
}

.btn-outline {
    border: 1px solid #fff; /* border-white */
    color: #fff; /* text-white */
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #fff; /* hover:bg-white */
    color: #000; /* hover:text-black */
}

.play-icon {
    width: 1.25rem; /* w-5 */
    height: 1.25rem; /* h-5 */
    margin-right: 0.5rem; /* mr-2 */
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem; /* bottom-8 */
    right: 2rem; /* right-8 */
    color: #fff; /* text-white */
    animation: bounce 1s infinite; /* animate-bounce */
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.scroll-text {
    font-size: 0.875rem; /* text-sm */
    margin-bottom: 0.5rem; /* mb-2 */
}

.scroll-mouse {
    width: 1.5rem; /* w-6 */
    height: 2.5rem; /* h-10 */
    border: 2px solid #fff; /* border-2 border-white */
    border-radius: 9999px; /* rounded-full */
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 0.25rem; /* w-1 */
    height: 0.75rem; /* h-3 */
    background-color: #fff; /* bg-white */
    border-radius: 9999px; /* rounded-full */
    margin-top: 0.5rem; /* mt-2 */
    animation: pulse 1.5s infinite; /* animate-pulse */
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* General Container for Elementor */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem; /* px-4 */
    padding-right: 1rem; /* px-4 */
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-98b6f3f */.featured-inductees-section {
    padding-top: 5rem; /* py-20 */
    padding-bottom: 5rem; /* py-20 */
    background-color: #f9fafb; /* bg-gray-50 */
    position: relative;
    overflow: hidden;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem; /* px-4 */
    padding-right: 1rem; /* px-4 */
    position: relative;
    z-index: 10;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem; /* mb-16 */
}

.section-subtitle {
    color: #dc2626; /* text-red-600 */
    font-weight: 600; /* font-semibold */
    font-size: 1.125rem; /* text-lg */
    letter-spacing: 0.025em; /* tracking-wide */
}

.section-title {
    font-size: 3rem; /* md:text-5xl */
    font-weight: 700; /* font-bold */
    color: #000; /* text-black */
    margin-top: 0.5rem; /* mt-2 */
    margin-bottom: 1.5rem; /* mb-6 */
}

.section-description {
    font-size: 1.25rem; /* text-xl */
    color: #4b5563; /* text-gray-600 */
    max-width: 48rem; /* max-w-3xl */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625; /* leading-relaxed */
}

/* Carousel Container */
.carousel-container {
    position: relative;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background-color: rgba(255, 255, 255, 0.9); /* bg-white/90 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    border-radius: 9999px; /* rounded-full */
    padding: 0.75rem; /* p-3 */
    transition: all 0.3s ease-in-out; /* transition-all duration-300 */
    border: none;
    cursor: pointer;
}

.carousel-nav:hover {
    background-color: #fff; /* hover:bg-white */
    transform: translateY(-50%) scale(1.1); /* hover:scale-110 */
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.nav-icon {
    width: 1.5rem; /* w-6 */
    height: 1.5rem; /* h-6 */
    color: #dc2626; /* text-red-600 */
}

/* Inductees Grid */
.inductees-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr)); /* grid-cols-1 */
    gap: 2rem; /* gap-8 */
    margin-bottom: 3rem; /* mb-12 */
    transition: all 0.5s ease-in-out; /* transition-all duration-500 */
}

@media (min-width: 768px) {
    .inductees-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* md:grid-cols-2 */
    }
}

@media (min-width: 1024px) {
    .inductees-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)); /* lg:grid-cols-3 */
    }
}

.inductee-card {
    background-color: #fff; /* bg-white */
    border-radius: 1rem; /* rounded-2xl */
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    position: relative;
    transition: all 0.3s ease-in-out; /* transition-all duration-300 */
}

.inductee-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* hover:shadow-xl */
    transform: translateY(-0.5rem); /* hover-lift */
}

/* Glow Effect */
.inductee-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem; /* rounded-2xl */
    background: linear-gradient(to right, rgba(220, 38, 38, 0.2), rgba(185, 28, 28, 0.2)); /* bg-gradient-to-r from-red-600/20 to-red-800/20 */
    opacity: 0;
    transition: opacity 0.5s ease-in-out; /* transition-opacity duration-500 */
    filter: blur(1.5rem); /* blur-xl */
    z-index: 0;
}

.inductee-card:hover::before {
    opacity: 1;
}

/* Image Container */
.inductee-image-container {
    position: relative;
    height: 20rem; /* h-80 */
    overflow: hidden;
}

.inductee-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease-in-out; /* transition-transform duration-700 */
}

.inductee-card:hover .inductee-image {
    transform: scale(1.1); /* group-hover:scale-110 */
}

/* Overlay */
.inductee-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent); /* bg-gradient-to-t from-black/80 via-black/20 to-transparent */
    opacity: 0;
    transition: opacity 0.5s ease-in-out; /* transition-opacity duration-500 */
}

.inductee-card:hover .inductee-image-overlay {
    opacity: 1;
}

/* Category Badge */
.category-badge {
    position: absolute;
    top: 1rem; /* top-4 */
    left: 1rem; /* left-4 */
    background-color: #dc2626; /* bg-red-600 */
    color: #fff; /* text-white */
    padding: 0.25rem 0.75rem; /* px-3 py-1 */
    border-radius: 9999px; /* rounded-full */
    font-size: 0.875rem; /* text-sm */
    font-weight: 600; /* font-semibold */
    transform: scale(1); /* transform */
    transition: transform 0.3s ease-in-out; /* transition-transform duration-300 */
}

.inductee-card:hover .category-badge {
    transform: scale(1.1); /* group-hover:scale-110 */
}

/* Year Badge */
.year-badge {
    position: absolute;
    top: 1rem; /* top-4 */
    right: 1rem; /* right-4 */
    background-color: rgba(0, 0, 0, 0.5); /* bg-black/50 */
    color: #fff; /* text-white */
    padding: 0.25rem 0.75rem; /* px-3 py-1 */
    border-radius: 9999px; /* rounded-full */
    font-size: 0.875rem; /* text-sm */
    font-weight: 600; /* font-semibold */
    backdrop-filter: blur(0.25rem); /* backdrop-blur-sm */
}

/* Star Icon */
.star-icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s ease-in-out; /* transition-all duration-500 */
    transform: translate(-50%, -50%) scale(0); /* scale-0 */
}

.inductee-card:hover .star-icon-container {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); /* group-hover:scale-100 */
}

.star-icon {
    width: 4rem; /* w-16 */
    height: 4rem; /* h-16 */
    color: #facc15; /* text-yellow-400 */
    fill: currentColor; /* fill-current */
    animation: floating 3s ease-in-out infinite; /* floating */
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Hover Content */
.inductee-hover-content {
    position: absolute;
    bottom: 1rem; /* bottom-4 */
    left: 1rem; /* left-4 */
    right: 1rem; /* right-4 */
    color: #fff; /* text-white */
    opacity: 0;
    transition: all 0.5s ease-in-out; /* transition-all duration-500 */
    transform: translateY(2rem); /* translate-y-8 */
}

.inductee-card:hover .inductee-hover-content {
    opacity: 1;
    transform: translateY(0); /* group-hover:translate-y-0 */
}

.inductee-description-short {
    font-size: 0.875rem; /* text-sm */
    line-height: 1.625; /* leading-relaxed */
    margin-bottom: 0.75rem; /* mb-3 */
}

.view-profile-link {
    display: inline-flex;
    align-items: center;
    color: #f87171; /* text-red-300 */
    font-weight: 600; /* font-semibold */
    font-size: 0.875rem; /* text-sm */
    text-decoration: none;
}

.view-profile-link:hover {
    color: #fff; /* hover:text-white */
}

.view-profile-link .arrow-icon {
    width: 1rem; /* w-4 */
    height: 1rem; /* h-4 */
    margin-left: 0.25rem; /* ml-1 */
    transition: transform 0.3s ease-in-out; /* transition-transform duration-300 */
}

.view-profile-link:hover .arrow-icon {
    transform: translateX(0.25rem); /* group-hover/link:translate-x-1 */
}

/* Content */
.inductee-content {
    padding: 1.5rem; /* p-6 */
    position: relative;
    z-index: 10;
}

.inductee-name {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700; /* font-bold */
    color: #000; /* text-black */
    margin-bottom: 0.5rem; /* mb-2 */
    transition: color 0.3s ease-in-out; /* transition-colors duration-300 */
}

.inductee-card:hover .inductee-name {
    color: #dc2626; /* group-hover:text-red-600 */
}

.inductee-title {
    color: #dc2626; /* text-red-600 */
    font-weight: 600; /* font-semibold */
    font-size: 0.875rem; /* text-sm */
    margin-bottom: 0.75rem; /* mb-3 */
}

.inductee-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem; /* text-sm */
    color: #6b7280; /* text-gray-500 */
    margin-bottom: 1rem; /* mb-4 */
}

.inductee-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem; /* space-x-1 */
}

.inductee-meta-icon {
    width: 1rem; /* w-4 */
    height: 1rem; /* h-4 */
}

.btn-learn-more {
    display: block;
    width: 100%;
    border: 1px solid #dc2626; /* border-red-600 */
    color: #dc2626; /* text-red-600 */
    background-color: transparent; /* variant="outline" */
    padding: 0.75rem 1.5rem; /* px-4 py-2 */
    border-radius: 0.5rem; /* rounded-md */
    font-weight: 500; /* font-medium */
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out; /* transition-all duration-300 */
    cursor: pointer;
}

.btn-learn-more:hover {
    background-color: #dc2626; /* hover:bg-red-600 */
    color: #fff; /* hover:text-white */
}

.btn-learn-more .arrow-icon {
    width: 1rem; /* w-4 */
    height: 1rem; /* h-4 */
    margin-left: 0.5rem; /* ml-2 */
    transition: transform 0.3s ease-in-out; /* transition-transform duration-300 */
}

.btn-learn-more:hover .arrow-icon {
    transform: translateX(0.25rem); /* group-hover/btn:translate-x-1 */
}

/* Slide Indicators */
.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem; /* space-x-2 */
    margin-bottom: 2rem; /* mb-8 */
}

.slide-indicator-dot {
    width: 0.75rem; /* w-3 */
    height: 0.75rem; /* h-3 */
    border-radius: 9999px; /* rounded-full */
    background-color: #d1d5db; /* bg-gray-300 */
    transition: all 0.3s ease-in-out; /* transition-all duration-300 */
    cursor: pointer;
}

.slide-indicator-dot:hover {
    background-color: #9ca3af; /* hover:bg-gray-400 */
}

.slide-indicator-dot.active {
    background-color: #dc2626; /* bg-red-600 */
    transform: scale(1.25); /* scale-125 */
}

/* Call to Action */
.cta-section {
    text-align: center;
}

.cta-card {
    background-color: #fff; /* bg-white */
    border-radius: 0.5rem; /* rounded-lg */
    padding: 2rem; /* p-8 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    max-width: 42rem; /* max-w-2xl */
    margin-left: auto;
    margin-right: auto;
}

.cta-title {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700; /* font-bold */
    color: #000; /* text-black */
    margin-bottom: 1rem; /* mb-4 */
}

.cta-description {
    color: #4b5563; /* text-gray-600 */
    margin-bottom: 1.5rem; /* mb-6 */
}

.cta-buttons {
    display: flex;
    flex-direction: column; /* flex-col */
    gap: 1rem; /* gap-4 */
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row; /* sm:flex-row */
    }
}

.btn {
    padding: 0.75rem 2rem; /* px-8 py-3 */
    border-radius: 0.375rem; /* rounded-md */
    font-weight: 500; /* font-medium */
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    background-color: #dc2626; /* bg-red-600 */
    color: #fff; /* text-white */
}

.btn-primary:hover {
    background-color: #b91c1c; /* hover:bg-red-700 */
}

.btn-outline {
    border: 1px solid #dc2626; /* border-red-600 */
    color: #dc2626; /* text-red-600 */
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #dc2626; /* hover:bg-red-600 */
    color: #fff; /* hover:text-white */
}

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    border-radius: 8px;
    position: relative;
}

.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-body {
    padding: 20px 0;
}

.modal-body h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.modal-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.modal-body img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 4px;
}

/* Animations */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-100%); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

.bounce-in {
    animation: bounceIn 1s;
}

@keyframes staggerItem {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stagger-item {
    animation: staggerItem 0.6s ease-out forwards;
}

/* Particle Animation (simplified for CSS only) */
.featured-inductees-section .particle {
    position: absolute;
    background-color: rgba(220, 38, 38, 0.1); /* red-600 with opacity */
    border-radius: 50%;
    animation: particleMove 15s infinite ease-in-out alternate;
}

.featured-inductees-section .particle:nth-child(1) { width: 10px; height: 10px; top: 10%; left: 5%; animation-duration: 12s; }
.featured-inductees-section .particle:nth-child(2) { width: 15px; height: 15px; top: 20%; left: 15%; animation-duration: 18s; }
.featured-inductees-section .particle:nth-child(3) { width: 8px; height: 8px; top: 30%; left: 25%; animation-duration: 10s; }
.featured-inductees-section .particle:nth-child(4) { width: 12px; height: 12px; top: 40%; left: 35%; animation-duration: 14s; }
.featured-inductees-section .particle:nth-child(5) { width: 18px; height: 18px; top: 50%; left: 45%; animation-duration: 16s; }
.featured-inductees-section .particle:nth-child(6) { width: 9px; height: 9px; top: 60%; left: 55%; animation-duration: 11s; }
.featured-inductees-section .particle:nth-child(7) { width: 14px; height: 14px; top: 70%; left: 65%; animation-duration: 13s; }
.featured-inductees-section .particle:nth-child(8) { width: 11px; height: 11px; top: 80%; left: 75%; animation-duration: 17s; }
.featured-inductees-section .particle:nth-child(9) { width: 16px; height: 16px; top: 90%; left: 85%; animation-duration: 19s; }

@keyframes particleMove {
    0% { transform: translate(0, 0) scale(1); opacity: 0.1; }
    25% { transform: translate(20px, -20px) scale(1.2); opacity: 0.2; }
    50% { transform: translate(0, 40px) scale(0.8); opacity: 0.15; }
    75% { transform: translate(-30px, -10px) scale(1.1); opacity: 0.25; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.1; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c1bde54 *//* Events & Programs Section Styles */
.events-programs-section {
    padding-top: 5rem; /* py-20 */
    padding-bottom: 5rem; /* py-20 */
    background-color: #fff; /* bg-white */
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem; /* px-4 */
    padding-right: 1rem; /* px-4 */
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem; /* mb-16 */
}

.section-subtitle {
    color: #dc2626; /* text-red-600 */
    font-weight: 600; /* font-semibold */
    font-size: 1.125rem; /* text-lg */
    letter-spacing: 0.025em; /* tracking-wide */
}

.section-title {
    font-size: 3rem; /* md:text-5xl */
    font-weight: 700; /* font-bold */
    color: #000; /* text-black */
    margin-top: 0.5rem; /* mt-2 */
    margin-bottom: 1.5rem; /* mb-6 */
}

.section-description {
    font-size: 1.25rem; /* text-xl */
    color: #4b5563; /* text-gray-600 */
    max-width: 48rem; /* max-w-3xl */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625; /* leading-relaxed */
}

/* Featured Event Card */
.featured-event-card {
    margin-bottom: 4rem; /* mb-16 */
}

.featured-event-grid {
    background: linear-gradient(to right, #dc2626, #b91c1c); /* bg-gradient-to-r from-red-600 to-red-800 */
    border-radius: 1rem; /* rounded-2xl */
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow-2xl */
    display: grid;
    grid-template-columns: 1fr; /* grid-cols-1 */
}

@media (min-width: 1024px) {
    .featured-event-grid {
        grid-template-columns: 1fr 1fr; /* lg:grid-cols-2 */
    }
}

.featured-event-content {
    padding: 2rem; /* p-8 */
    color: #fff; /* text-white */
}

@media (min-width: 1024px) {
    .featured-event-content {
        padding: 3rem; /* lg:p-12 */
    }
}

.featured-badge-container {
    margin-bottom: 1rem; /* mb-4 */
}

.featured-badge {
    background-color: rgba(255, 255, 255, 0.2); /* bg-white/20 */
    color: #fff; /* text-white */
    padding: 0.25rem 0.75rem; /* px-3 py-1 */
    border-radius: 9999px; /* rounded-full */
    font-size: 0.875rem; /* text-sm */
    font-weight: 600; /* font-semibold */
}

.featured-event-title {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700; /* font-bold */
    margin-bottom: 1rem; /* mb-4 */
}

@media (min-width: 1024px) {
    .featured-event-title {
        font-size: 2.25rem; /* lg:text-4xl */
    }
}

.featured-event-description {
    color: #fca5a5; /* text-red-100 */
    margin-bottom: 1.5rem; /* mb-6 */
    line-height: 1.625; /* leading-relaxed */
}

.featured-event-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem; /* gap-4 */
    margin-bottom: 2rem; /* mb-8 */
}

.featured-event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* space-x-2 */
}

.meta-icon {
    width: 1.25rem; /* w-5 */
    height: 1.25rem; /* h-5 */
    color: #fca5a5; /* text-red-200 */
}

.meta-text {
    font-size: 0.875rem; /* text-sm */
}

.featured-event-buttons {
    display: flex;
    flex-direction: column; /* flex-col */
    gap: 1rem; /* gap-4 */
}

@media (min-width: 640px) {
    .featured-event-buttons {
        flex-direction: row; /* sm:flex-row */
    }
}

.btn {
    padding: 0.75rem 2rem; /* px-8 py-3 */
    border-radius: 0.375rem; /* rounded-md */
    font-weight: 600; /* font-semibold */
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    background-color: #fff; /* bg-white */
    color: #dc2626; /* text-red-600 */
}

.btn-primary:hover {
    background-color: #f3f4f6; /* hover:bg-gray-100 */
}

.btn-outline {
    border: 1px solid #fff; /* border-white */
    color: #fff; /* text-white */
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #fff; /* hover:bg-white */
    color: #dc2626; /* hover:text-red-600 */
}

.featured-event-image-container {
    background-color: #b91c1c; /* bg-red-700 */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem; /* p-8 */
}

.featured-event-image {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem; /* rounded-lg */
    object-fit: cover;
}

/* Other Events Grid */
.other-events-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr)); /* grid-cols-1 */
    gap: 2rem; /* gap-8 */
}

@media (min-width: 768px) {
    .other-events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* md:grid-cols-2 */
    }
}

@media (min-width: 1024px) {
    .other-events-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)); /* lg:grid-cols-3 */
    }
}

.event-card {
    background-color: #fff; /* bg-white */
    border: 1px solid #e5e7eb; /* border border-gray-200 */
    border-radius: 0.5rem; /* rounded-lg */
    overflow: hidden;
    transition: all 0.3s ease-in-out; /* transition-all duration-300 */
}

.event-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* hover:shadow-lg */
    transform: translateY(-0.25rem); /* hover:-translate-y-1 */
}

.event-image-container {
    height: 12rem; /* h-48 */
    background-color: #f9fafb; /* bg-gray-100 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.event-content {
    padding: 1.5rem; /* p-6 */
}

.event-category-container {
    margin-bottom: 0.75rem; /* mb-3 */
}

.event-category {
    color: #dc2626; /* text-red-600 */
    font-size: 0.875rem; /* text-sm */
    font-weight: 600; /* font-semibold */
    letter-spacing: 0.025em; /* tracking-wide */
}

.event-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700; /* font-bold */
    color: #000; /* text-black */
    margin-bottom: 0.75rem; /* mb-3 */
    transition: color 0.3s ease-in-out; /* transition-colors */
}

.event-card:hover .event-title {
    color: #dc2626; /* group-hover:text-red-600 */
}

.event-description {
    color: #4b5563; /* text-gray-600 */
    font-size: 0.875rem; /* text-sm */
    line-height: 1.625; /* leading-relaxed */
    margin-bottom: 1rem; /* mb-4 */
}

.event-meta-group {
    margin-bottom: 1.5rem; /* mb-6 */
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* space-y-2 */
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* space-x-2 */
    font-size: 0.875rem; /* text-sm */
    color: #6b7280; /* text-gray-500 */
}

.btn-ghost {
    background-color: transparent;
    border: none;
    color: #dc2626; /* text-red-600 */
    padding: 0;
    height: auto;
    font-weight: 600; /* font-semibold */
    text-align: left;
    width: 100%;
    justify-content: flex-start;
    transition: all 0.3s ease-in-out;
}

.btn-ghost:hover {
    color: #b91c1c; /* hover:text-red-700 */
    background-color: #fef2f2; /* hover:bg-red-50 */
}

.btn-ghost .arrow-icon {
    width: 1rem; /* w-4 */
    height: 1rem; /* h-4 */
    margin-left: 0.25rem; /* ml-1 */
    transition: transform 0.3s ease-in-out;
}

.btn-ghost:hover .arrow-icon {
    transform: translateX(0.25rem); /* group-hover/btn:translate-x-1 */
}

/* Call to Action */
.cta-section {
    text-align: center;
    margin-top: 4rem; /* mt-16 */
}

.cta-card {
    background-color: #f9fafb; /* bg-gray-50 */
    border-radius: 0.5rem; /* rounded-lg */
    padding: 2rem; /* p-8 */
    max-width: 42rem; /* max-w-2xl */
    margin-left: auto;
    margin-right: auto;
}

.cta-title {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700; /* font-bold */
    color: #000; /* text-black */
    margin-bottom: 1rem; /* mb-4 */
}

.cta-description {
    color: #4b5563; /* text-gray-600 */
    margin-bottom: 1.5rem; /* mb-6 */
}

.cta-buttons {
    display: flex;
    flex-direction: column; /* flex-col */
    gap: 1rem; /* gap-4 */
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row; /* sm:flex-row */
    }
}/* End custom CSS */