/* Events Page Styles */

/* Page Banner */
.page-banner {
    background-color: #f8f9fa;
    padding: 40px 0;
    margin-bottom: 0px;
    border-bottom: 1px solid #e9ecef;
  }
  
  .page-banner h1 {
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
  }
  
  .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
  }
  
  .breadcrumb-item a {
    color: #3498db;
    text-decoration: none;
  }
  
  .breadcrumb-item.active {
    color: #6c757d;
  }
  
  /* Events Section */
  .events-section {
    padding: 60px 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .section-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
  }
  
  .section-divider {
    width: 80px;
    height: 3px;
    background-color: #0d6efd;
    margin: 0 auto 20px;
  }
  
  .section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Events Filter */
  .events-filter {
    margin-bottom: 30px;
  }
  
  .filter-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .category-btn {
    padding: 8px 15px;
    border-radius: 20px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .category-btn:hover,
  .category-btn.active {
    background-color: #3498db;
    border-color: #3498db;
    color: #fff;
  }
  
  .events-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
  }
  
  .filter-label {
    font-weight: 600;
    margin-right: 15px;
    color: #495057;
  }
  
  .filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .filter-option {
    display: inline-block;
    padding: 6px 12px;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    color: #495057;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
  }
  
  .filter-option:hover {
    background-color: #e9ecef;
    color: #212529;
  }
  
  .filter-option.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
  }
  
  /* Events Grid */
  .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }
  
  /* Events Styles */
  
  /* Event Cards */
  .event-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .event-card-image {
    height: 200px;
    overflow: hidden;
  }
  
  .event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .event-card:hover .event-card-image img {
    transform: scale(1.05);
  }
  
  .event-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .event-card-date {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .event-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
  }
  
  .event-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #6c757d;
  }
  
  .event-card-meta i {
    margin-right: 5px;
    color: #3498db;
  }
  
  .event-card-category {
    display: inline-block;
    background-color: #f8f9fa;
    color: #495057;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 10px;
  }
  
  .event-card-description {
    margin-bottom: 15px;
    color: #6c757d;
    flex-grow: 1;
  }
  
  .event-card-link {
    align-self: flex-start;
    color: #3498db;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
  }
  
  .event-card-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  
  .event-card-link:hover {
    color: #2980b9;
  }
  
  .event-card-link:hover i {
    transform: translateX(3px);
  }
  .event-card {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
  }
  
  .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }
  
  .event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  
  .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .event-card:hover .event-image img {
    transform: scale(1.05);
  }
  
  .event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(52, 152, 219, 0.9);
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
    z-index: 1;
  }
  
  .event-date .day {
    font-size: 20px;
    font-weight: 700;
    display: block;
    line-height: 1;
  }
  
  .event-date .month {
    font-size: 14px;
    text-transform: uppercase;
    display: block;
  }
  
  .event-date .year {
    font-size: 12px;
    display: block;
  }
  
  .event-category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #0d6efd;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  .event-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #4a90e2;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .event-card-content {
    padding: 20px;
    position: relative;
  }
  
  .event-date-badge {
    position: absolute;
    top: -25px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .event-date-badge .day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #343a40;
  }
  
  .event-date-badge .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #6c757d;
  }
  
  .event-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .event-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 15px 0 10px;
    color: #343a40;
  }
  
  .event-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  
  .event-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .event-title a:hover {
    color: #3498db;
  }
  
  .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .meta-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #6c757d;
  }
  
  .meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    color: #666;
    font-size: 14px;
  }
  
  .meta-item i {
    margin-right: 5px;
    color: #0d6efd;
  }
  
  .meta-item i {
    color: #3498db;
    margin-right: 8px;
    width: 16px;
    text-align: center;
  }
  
  .event-excerpt {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .event-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }
  
  .event-link {
    display: inline-block;
    color: #3498db;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .event-link:hover {
    color: #2980b9;
  }
  
  .event-status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
  }
  
  .event-status.upcoming {
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
  }
  
  .event-status.active {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
  }
  
  .event-status.completed {
    background-color: rgba(149, 165, 166, 0.1);
    color: #7f8c8d;
  }
  
  /* Single Event Page */
  .single-event {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
  }
  
  .single-event-image {
    height: 400px;
    overflow: hidden;
  }
  
  .single-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .single-event-content {
    padding: 30px;
  }
  
  .single-event-header {
    margin-bottom: 20px;
  }
  
  .single-event-category {
    display: inline-block;
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  
  .single-event-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  
  .single-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .single-event-meta-item {
    display: flex;
    align-items: center;
    color: #666;
  }
  
  .single-event-meta-item i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
  }
  
  .single-event-meta-item.date i {
    color: #3498db;
  }
  
  .single-event-meta-item.location i {
    color: #e74c3c;
  }
  
  .single-event-description {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #555;
  }
  
  .single-event-description p {
    margin-bottom: 15px;
  }
  
  .single-event-cta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }
  
  .register-button {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .register-button:hover {
    background-color: #2980b9;
    color: #fff;
  }
  
  .register-button i {
    margin-right: 8px;
  }
  
  /* Pagination */
  .events-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  
  .pagination {
    display: flex;
    gap: 5px;
  }
  
  .page-item .page-link {
    border-radius: 4px;
    color: #3498db;
    border: 1px solid #dee2e6;
    padding: 8px 15px;
    transition: all 0.3s ease;
  }
  
  .page-item.active .page-link {
    background-color: #3498db;
    border-color: #3498db;
    color: #fff;
  }
  
  .page-item .page-link:hover {
    background-color: #e9ecef;
    color: #3498db;
  }
  
  .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
  }
  .events-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  
  .pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .pagination-item:hover {
    background-color: #f5f5f5;
  }
  
  .pagination-item.active {
    background-color: #3498db;
    color: #fff;
  }
  
  /* Single Event Page */
  .event-details-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
  }
  
  .event-details-card .event-image {
    height: auto;
    max-height: 500px;
  }
  
  .event-header {
    padding: 25px 30px;
    border-bottom: 1px solid #e9ecef;
  }
  
  .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #6c757d;
  }
  
  .event-meta i {
    margin-right: 5px;
    color: #3498db;
  }
  
  .event-header .event-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .event-header .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .event-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .event-content p {
    margin-bottom: 20px;
  }
  
  .event-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
  }
  
  .event-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
  }
  
  .event-content ul,
  .event-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
  }
  
  .event-content li {
    margin-bottom: 10px;
  }
  
  .event-footer {
    padding: 20px 30px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .event-share {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .event-share span {
    font-size: 14px;
    color: #6c757d;
  }
  
  .share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
  }
  
  .share-btn.facebook {
    background-color: #3b5998;
  }
  
  .share-btn.twitter {
    background-color: #1da1f2;
  }
  
  .share-btn.whatsapp {
    background-color: #25d366;
  }
  
  .share-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }
  .event-footer {
    padding: 20px 25px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .social-share {
    display: flex;
    align-items: center;
  }
  
  .social-share span {
    margin-right: 10px;
    color: #666;
  }
  
  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    margin-left: 8px;
    transition: opacity 0.3s ease;
  }
  
  .social-icon:hover {
    opacity: 0.8;
  }
  
  .social-icon.facebook {
    background-color: #3b5998;
  }
  
  .social-icon.twitter {
    background-color: #1da1f2;
  }
  
  .social-icon.whatsapp {
    background-color: #25d366;
  }
  
  /* Category Filter */
  .category-filter {
    margin-bottom: 30px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
  }
  
  .category-filter h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .filter-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #555;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .filter-btn:hover {
    background-color: #f0f0f0;
    color: #333;
  }
  
  .filter-btn.active {
    background-color: #4a90e2;
    border-color: #4a90e2;
    color: #fff;
  }
  
  /* Home Page Events */
  .events-wrapper {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    height: 100%;
  }
  
  .section-subtitle {
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
  }
  
  .section-subtitle i {
    color: #3498db;
  }
  
  .event-item {
    display: flex;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
  }
  
  .event-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  
  .event-date {
    flex: 0 0 60px;
    margin-right: 20px;
    background-color: #3498db;
    color: #fff;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 0;
  }
  
  .event-date .date {
    font-size: 24px;
    font-weight: 700;
    padding: 5px 0;
    display: block;
  }
  
  .event-date .month {
    background-color: rgba(0, 0, 0, 0.1);
    font-size: 14px;
    padding: 2px 0;
    display: block;
  }
  
  .event-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
    color: #2c3e50;
  }
  
  .event-category .badge {
    font-size: 12px;
    font-weight: 500;
    padding: 5px 10px;
    margin-bottom: 8px;
    display: inline-block;
  }
  
  .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #6c757d;
  }
  
  .event-meta span {
    display: flex;
    align-items: center;
  }
  
  .event-meta i {
    margin-right: 5px;
    color: #3498db;
  }
  
  .event-thumbnail {
    margin: 10px 0;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .event-content p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  .read-more {
    font-size: 14px;
    color: #3498db;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  
  .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  
  .read-more:hover i {
    transform: translateX(3px);
  }
  
  /* Event Detail Page */
  .event-detail-section {
    padding: 60px 0;
  }
  
  .event-detail-wrapper {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .event-detail-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
  }
  
  .event-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .event-detail-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #eee;
  }
  
  .event-detail-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 15px;
  }
  
  .event-detail-header .event-category {
    margin-bottom: 15px;
  }
  
  .event-detail-header .event-category .badge {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
  
  .event-detail-header .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .event-detail-content {
    padding: 30px;
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
  }
  
  .event-detail-content p {
    margin-bottom: 20px;
  }
  
  .event-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
  }
  
  .event-registration {
    padding: 0 30px 30px;
  }
  
  .event-navigation {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    .events-grid {
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
  
    .single-event-image {
      height: 300px;
    }
  
    .single-event-title {
      font-size: 28px;
    }
  }
  
  @media (max-width: 767px) {
    .events-grid {
      grid-template-columns: 1fr;
    }
  
    .single-event-image {
      height: 250px;
    }
  
    .single-event-content {
      padding: 20px;
    }
  
    .single-event-title {
      font-size: 24px;
    }
  
    .single-event-meta {
      flex-direction: column;
      gap: 10px;
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 767px) {
    .event-header .event-meta {
      flex-direction: column;
      gap: 10px;
    }
  
    .event-footer {
      flex-direction: column;
      gap: 15px;
    }
  
    .social-share {
      margin-top: 15px;
    }
  
    .event-header .event-title {
      font-size: 22px;
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 767px) {
    .event-item {
      flex-direction: column;
    }
  
    .event-date {
      margin-right: 0;
      margin-bottom: 15px;
      width: 80px;
      flex-direction: row;
      align-items: center;
    }
  
    .event-date .date {
      padding: 5px 10px;
      border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
  
    .event-date .month {
      padding: 5px 10px;
      background-color: transparent;
    }
  
    .event-meta {
      flex-direction: column;
      gap: 5px;
    }
  }
  
  /* Past Events Page Styles */
  .past-events-page {
    padding: 60px 0;
  }
  
  .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .event-date,
  .event-location {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
  }
  
  .event-date i,
  .event-location i {
    margin-right: 5px;
    color: #4a90e2;
  }
  
  .event-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
  }
  
  .event-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
  }
  
  .btn-read-more {
    display: inline-block;
    color: #4a90e2;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    align-self: flex-start;
  }
  
  .btn-read-more:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #4a90e2;
    transition: width 0.3s ease;
  }
  
  .btn-read-more:hover {
    color: #2a70c2;
  }
  
  .btn-read-more:hover:after {
    width: 100%;
  }
  
  .pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 40px;
  }
  
  .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .page-link:hover {
    background-color: #f0f0f0;
    color: #333;
  }
  
  .page-link.active {
    background-color: #4a90e2;
    border-color: #4a90e2;
    color: #fff;
  }
  
  .no-events {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .no-events i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 20px;
  }
  
  .no-events h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .no-events p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .no-events .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4a90e2;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .no-events .btn:hover {
    background-color: #2a70c2;
  }
  
  /* Event Details Page Styles */
  .event-details {
    padding: 60px 0;
  }
  
  .event-details-wrapper {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .event-featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
  }
  
  .event-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .event-info {
    padding: 30px;
  }
  
  .meta-item {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 15px;
  }
  
  .meta-item i {
    margin-right: 8px;
    color: #4a90e2;
    font-size: 18px;
  }
  
  .meta-item span {
    font-weight: 600;
    color: #333;
    margin-right: 5px;
  }
  
  .event-content {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #444;
  }
  
  .event-content h2,
  .event-content h3,
  .event-content h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .event-content p {
    margin-bottom: 15px;
  }
  
  .event-content ul,
  .event-content ol {
    margin-bottom: 15px;
    padding-left: 20px;
  }
  
  .event-content li {
    margin-bottom: 8px;
  }
  
  .event-registration {
    margin-bottom: 30px;
  }
  
  .event-registration .btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4a90e2;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .event-registration .btn i {
    margin-right: 5px;
  }
  
  .event-registration .btn:hover {
    background-color: #2a70c2;
  }
  
  .event-share {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }
  
  .event-share span {
    font-weight: 600;
    color: #333;
    margin-right: 15px;
  }
  
  .social-share {
    display: flex;
    gap: 10px;
  }
  
  .share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
  }
  
  .share-btn.facebook {
    background-color: #3b5998;
  }
  
  .share-btn.twitter {
    background-color: #1da1f2;
  }
  
  .share-btn.whatsapp {
    background-color: #25d366;
  }
  
  .share-btn.email {
    background-color: #ea4335;
  }
  
  .back-to-events {
    margin-top: 20px;
  }
  
  .back-to-events .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid #4a90e2;
    color: #4a90e2;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .back-to-events .btn i {
    margin-right: 5px;
  }
  
  .back-to-events .btn:hover {
    background-color: #4a90e2;
    color: #fff;
  }
  
  /* Pagination */
  .pagination-wrapper {
    margin-top: 40px;
  }
  
  .pagination .page-link {
    color: #0d6efd;
    border-color: #dee2e6;
  }
  
  .pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
  }
  
  .pagination .page-link:hover {
    background-color: #e9ecef;
    color: #0d6efd;
  }
  
  /* No Events Message */
  .no-events-message {
    text-align: center;
    padding: 40px 0;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .section-header h1 {
      font-size: 2rem;
    }
  
    .event-detail-header h1 {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 767px) {
    .events-section {
      padding: 40px 0;
    }
  
    .section-header {
      margin-bottom: 30px;
    }
  
    .events-filter {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .filter-label {
      margin-bottom: 10px;
    }
  
    .event-detail-header,
    .event-detail-content,
    .event-registration {
      padding: 20px;
    }
  
    .event-detail-header h1 {
      font-size: 1.5rem;
    }
  
    .event-detail-header .event-meta {
      flex-direction: column;
      gap: 10px;
    }
  }
  
  @media (max-width: 576px) {
    .section-header h1 {
      font-size: 1.8rem;
    }
  
    .filter-options {
      width: 100%;
      overflow-x: auto;
      padding-bottom: 10px;
      flex-wrap: nowrap;
    }
  
    .event-card-content {
      padding: 15px;
    }
  
    .event-title {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 991.98px) {
    .events-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
  }
  
  @media (max-width: 767.98px) {
    .event-meta {
      flex-direction: column;
      gap: 10px;
    }
  
    .event-header,
    .event-content,
    .event-footer {
      padding: 20px;
    }
  
    .event-title {
      font-size: 24px;
    }
  
    .event-footer {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .event-share {
      margin-top: 15px;
    }
  }
  
  @media (max-width: 575.98px) {
    .events-grid {
      grid-template-columns: 1fr;
    }
  
    .category-filter {
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 10px;
    }
  
    .category-btn {
      white-space: nowrap;
    }
  }
  