    /* Animation Classes */
.section-hidden {
  opacity: 0;
  transform: translateY(8rem);
}

.section {
  transition: transform 1s, opacity 1s;
}

/* Fade-in animation */
.fade-in {
  animation: fadeIn 1.5s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Slide-up animation */
.slide-up {
  animation: slideUp 1s ease-out forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide-left animation */
.slide-left {
  animation: slideLeft 1s ease-out forwards;
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide-right animation */
.slide-right {
  animation: slideRight 1s ease-out forwards;
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Zoom-in animation */
.zoom-in {
  animation: zoomIn 1s ease-out forwards;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Rotate animation */
.rotate {
  animation: rotate 1s ease-out forwards;
}

@keyframes rotate {
  from {
    opacity: 0;
    transform: rotate(10deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}
    .gallery_area {
        padding: 100px 0;
        background: #fff;
        overflow: hidden;
    }
    
    .scrolling-gallery-container {
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    .scrolling-gallery {
        display: flex;
        width: max-content;
        gap: 20px;
    }
    
    .scrolling-gallery.ltr {
        animation: scrollLeft 40s linear infinite;
    }
    
    .scrolling-gallery.rtl {
        animation: scrollRight 40s linear infinite;
    }
    
    @keyframes scrollLeft {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    @keyframes scrollRight {
        0% { transform: translateX(-50%); }
        100% { transform: translateX(0); }
    }
    
    .gallery-item {
        flex: 0 0 300px;
        position: relative;
    }
    
    .gallery-item .thumb {
        overflow: hidden;
        border-radius: 10px;
        height: 200px;
        position: relative;
    }
    
    .gallery-item .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
    }
    
    .gallery-caption {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
        opacity: 0;
        transition: all 0.3s ease;
        color: white;
        padding: 10px;
    }
    
    .event-name {
        display: block;
        font-size: 14px;
        color: #FF2400;
        font-weight: bold;
        margin-bottom: 5px;
    }
    
    .location {
        font-size: 18px;
        font-weight: 700;
        margin: 0;
        color: white;
    }
    
    .gallery-item:hover .thumb img {
        filter: brightness(0.5);
    }
    
    .gallery-item:hover .gallery-caption {
        opacity: 1;
    }
    
    .section_title h3 {
        font-size: 50px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #000;
    }
    
    .section_title p {
        font-size: 16px;
        line-height: 1.8;
        color: #6a6a6a;
    }

    .about-section {
        padding: 80px 0;
        background-color: #f8f9fa;
        position: relative;
    }
    
    .about-image-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
    }
    
    .about-image-wrapper img {
        transition: transform 0.5s ease;
        width: 100%;
        height: auto;
        display: block;
    }
    
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
        border-radius: 12px;
    }
    
    .about-image-wrapper:hover img {
        transform: scale(1.03);
    }
    
    .section-title {
        font-weight: 700;
        color: #2c3e50;
        position: relative;
        padding-bottom: 15px;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: #e74c3c;
    }
    
    .text-highlight {
        color: #e74c3c;
    }
    
    .about-text p {
        margin-bottom: 1.2rem;
        line-height: 1.8;
        color: #555;
    }
    
    .about-text .lead {
        font-size: 1.1rem;
        font-weight: 500;
        color: #333;
    }
    
    .highlight-title {
        font-size: 1.2rem;
        color: #2c3e50;
        margin: 1.5rem 0 1rem;
        font-weight: 600;
    }
    
    .highlight-list {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 1.5rem;
    }
    
    .highlight-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 0.5rem;
        line-height: 1.6;
    }
    
    .highlight-list li:before {
        content: '•';
        color: #e74c3c;
        font-weight: bold;
        position: absolute;
        left: 0;
        top: 0;
    }
    
    @media (max-width: 991.98px) {
        .about-section {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 1.8rem;
        }
    }
    
    @media (max-width: 767.98px) {
        .about-section {
            padding: 40px 0;
        }
        
        .section-title {
            font-size: 1.6rem;
            text-align: center;
        }
        
        .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
    }

   iframe.interview{width:100%;height:600px}
            @media only screen and (max-width: 500px) {
               /* iframe.youtubebox{width:100%;height:420px} */
               iframe.interview{
                    width: 100%;
                    height:420px
                }
            }
            
            .about iframe{
                width: 100%;
                height:550px
            }

            .wrapper {
            position: relative;
            width: 150px;
            height: 150px;
            margin: 0 auto;
            }
            .wrapper .circle {
            width: 100px;
            height: 100px;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50%;
            background-color: #FF2400;
            margin: auto;
            transform: scale(1, 1);
            }
            .wrapper .circle.pulse {
            -webkit-animation-timing-function: ease;
                    animation-timing-function: ease;
            -webkit-animation: pulse 2s infinite;
                    animation: pulse 2s infinite;
            background-color: #FAF9F6;
            }
            .wrapper svg {
            fill: #800000;
            stroke: #800000;
            stroke-linejoin: round;
            stroke-width: 5;
            transition: all 0.3s;
            }
            .wrapper svg:hover {
            cursor: pointer;
            fill: #FFFFFF;
            stroke: #FFFFFF;
            transform: scale(1.2, 1.2);
            }

            @-webkit-keyframes pulse {
                0% {
                    transform: scale(1, 1);
                }
                25% {
                    transform: scale(1, 1);
                }
                50% {
                    transform: scale(1.2, 1.2);
                }
                100% {
                    transform: scale(1, 1);
                }
            }

            @keyframes pulse {
                0% {
                    transform: scale(1, 1);
                }
                25% {
                    transform: scale(1, 1);
                }
                50% {
                    transform: scale(1.2, 1.2);
                }
                100% {
                    transform: scale(1, 1);
                }
            }

        .media-section {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #333;
            font-weight: 700;
        }
        
        .media-card {
            background: linear-gradient(135deg, #FF2400 0%, #C11B1B 100%);
            border-radius: 15px;
            border: none;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
            overflow: hidden;
        }
        
        .media-card:hover {
            transform: translateY(-5px);
        }
        
        .media-header {
            padding: 20px 20px 10px;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .media-embed {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            margin: 0 15px 15px;
        }
        
        .media-embed iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 8px;
            border: none;
        }
        
        .featured-interview {
            margin-bottom: 40px;
        }
        
        @media (max-width: 768px) {
            .media-header {
                font-size: 1.3rem;
            }
            
            .media-section {
                padding: 40px 0;
            }
        }



  
  /* Sold Out Events Gallery Styles */
    .event-filter {
        margin-bottom: 30px;
    }

    .filter-btn {
        background: transparent;
        border: 2px solid #f7631b;
        color: #f7631b;
        padding: 8px 20px;
        margin: 0 5px;
        border-radius: 30px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .filter-btn:hover, .filter-btn.active {
        background: #f7631b;
        color: #fff;
    }

    .gallery-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .gallery-item {
        padding: 15px;
        animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .attendee-card {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
        transition: all 0.3s ease;
        height: 100%;
    }

    .attendee-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .attendee-img {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

    .attendee-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .attendee-card:hover .attendee-img img {
        transform: scale(1.05);
    }

    .attendee-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        padding: 20px;
        text-align: center;
    }

    .attendee-card:hover .attendee-overlay {
        opacity: 1;
    }

    .attendee-overlay h5 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .attendee-overlay p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .attendee-social a {
        color: #fff;
        margin: 0 5px;
        font-size: 16px;
        transition: color 0.3s ease;
    }

    .attendee-social a:hover {
        color: #f7631b;
    }

    .attendee-meta {
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .attendee-meta .badge {
        padding: 5px 10px;
        font-size: 12px;
        border-radius: 4px;
    }

    .badge-success {
        background: #28a745;
    }

    .badge-primary {
        background: #007bff;
    }

    .badge-warning {
        background: #ffc107;
        color: #212529;
    }

    /* Modal Styles */
    #attendeeModal .modal-body {
        padding: 30px;
    }

    #attendeeModal .attendee-details {
        text-align: center;
    }

    #attendeeModal .attendee-details h4 {
        color: #f7631b;
        margin-bottom: 10px;
    }

    #attendeeModal .attendee-details p {
        margin-bottom: 5px;
    }

    #loadMoreAttendees {
        padding: 10px 30px;
        background: #f7631b;
        border: none;
        font-weight: 600;
    }

    #loadMoreAttendees:hover {
        background: #e55616;
    }

    /* Responsive Adjustments */
    @media (max-width: 767px) {
        .filter-btn {
            margin-bottom: 10px;
            display: inline-block;
        }
        
        .attendee-img {
            height: 200px;
        }
    }
    /* Slider Styles */
    .slider-container {
        position: relative;
        margin: 0 auto;
        max-width: 800px;
    }

    .slider-slides {
        position: relative;
        height: 500px;
        width: 100%;
        overflow: hidden;
    }

    .slider-slide {
        position: absolute;
        /* width: 100%;
        height: 100%; */
        opacity: 0;
        transition: opacity 0.5s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-slide.active {
        opacity: 1;
    }

    .slider-slide img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.5);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 18px;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
    }

    .slider-arrow:hover {
        background: rgba(0,0,0,0.8);
    }

    .prev-arrow {
        left: 15px;
    }

    .next-arrow {
        right: 15px;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .slider-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .slider-dot.active {
        background: #f7631b;
        transform: scale(1.2);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .slider-slides {
            height: 300px;
        }
        
        .slider-arrow {
            width: 30px;
            height: 30px;
            font-size: 14px;
        }
    }
</style>
<style>
    /* Event Cards Styling */
    .section-title {
        position: relative;
        padding-bottom: 15px;
        font-weight: 700;
        color: #333;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: #f7631b;
    }
    
    .event-card {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .event-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    
    .event-card.sold-out {
        position: relative;
    }
    
    .event-card.sold-out:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.4);
        z-index: 1;
    }
    
    .event-card-header {
        position: relative;
        height: 200px;
        overflow: hidden;
    }
    
    .event-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .event-card:hover .event-image {
        transform: scale(1.05);
    }
    
    .event-date {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(0,0,0,0.7);
        color: #fff;
        padding: 10px;
        text-align: center;
        border-radius: 5px;
        z-index: 2;
    }
    
    .event-date .day {
        display: block;
        font-size: 22px;
        font-weight: 700;
        line-height: 1;
    }
    
    .event-date .month {
        display: block;
        font-size: 14px;
        text-transform: uppercase;
    }
    
    .event-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        z-index: 2;
    }
    
    .event-badge.available {
        background: #28a745;
        color: #fff;
    }
    
    .event-badge.sold-out {
        background: #dc3545;
        color: #fff;
    }
    
    .event-card-body {
        padding: 20px;
    }
    
    .event-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #333;
    }
    
    .event-description {
        color: #666;
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .event-meta {
        margin-bottom: 15px;
    }
    
    .meta-item {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
        font-size: 14px;
        color: #555;
    }
    
    .meta-item i {
        margin-right: 8px;
        color: #f7631b;
        width: 20px;
        text-align: center;
    }
    
    .event-pricing {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }
    
    .event-pricing .price {
        font-size: 20px;
        font-weight: 700;
        color: #f7631b;
    }
    
    .event-gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 2;
    }
    
    .event-card.sold-out:hover .event-gallery-overlay {
        opacity: 1;
    }
    
    /* Modal Styling */
    .event-modal-image {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        height: 250px;
    }
    
    .event-modal-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .event-date-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(0,0,0,0.7);
        color: #fff;
        padding: 8px 15px;
        border-radius: 5px;
        font-weight: 600;
    }
    
    .event-details {
        background: #f9f9f9;
        padding: 15px;
        border-radius: 8px;
        margin-top: 15px;
    }
    
    .event-details p {
        margin-bottom: 8px;
        color: #555;
    }
    
    .event-details i {
        color: #f7631b;
        margin-right: 8px;
        width: 20px;
    }
    
    .booking-summary {
        background: #f9f9f9;
        padding: 15px;
        border-radius: 8px;
        margin-top: 20px;
    }
    
    .booking-summary h6 {
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }
    
    .summary-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .summary-item.total {
        font-weight: 700;
        font-size: 16px;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #eee;
    }
    
    .no-events {
        background: #f9f9f9;
        border-radius: 10px;
    }
    
    .no-events i {
        color: #ccc;
    }
    
    .no-events h4 {
        color: #666;
        margin-bottom: 10px;
    }
    
    .no-events p {
        color: #888;
    }

     
    .event-flier-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 2;
    }
    
    .event-card.sold-out:hover .event-flier-overlay {
        opacity: 1;
    }
    
    .view-flier-btn {
        padding: 8px 20px;
        border-radius: 30px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .view-flier-btn:hover {
        background: #fff;
        color: #f7631b;
        transform: scale(1.05);
    }
    
    .view-flier-btn i {
        margin-left: 5px;
    }
    


    #flierImage {
        max-height: 80vh;
        width: auto;
        max-width: 100%;
    }
    
    #flierModal .close {
        color: white;
        text-shadow: none;
        opacity: 1;
    }
    .event-flier-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.8);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 2;
        pointer-events: none; /* Allows clicking through when not visible */
    }

    .event-card:hover .event-flier-overlay,
    .event-flier-overlay.active {
        opacity: 1;
        pointer-events: auto; /* Enable interactions when visible */
    }

    .full-flier-preview {
        max-width: 100%;
        max-height: 100%;
        border-radius: 5px;
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    .full-flier-preview img {
        max-width: 100%;
        max-height: 100vh;
        height: auto;
        display: block;
    }

    /* Mobile touch handling */
    @media (hover: none) {
        .event-flier-overlay {
            opacity: 0;
            transition: opacity 0.1s ease;
        }
        
        .event-flier-overlay.active {
            opacity: 1;
        }
    }