
/* pricing table css */
.ticket-pricing-section {
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    background-color: rgba(0, 0, 0, 0);
}

.ticket-card {
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.ticket-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ticket-card .card-header {
    border-radius: 0 !important;
}

.icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ticket-features li {
    border-bottom: 1px dashed #eee;
    transition: all 0.2s ease;
}

.ticket-features li:hover {
    transform: translateX(5px);
}

.ticket-features li:last-child {
    border-bottom: none;
}

.btn {
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    opacity: 0.9;
}

.ticket-quantity {
    font-weight: 500;
}

@media (max-width: 768px) {
    .ticket-card {
        margin-bottom: 1.5rem;
    }
}
@media (min-width: 1200px) {
    .container {
      max-width: 1340px;
    }
  }
/* social-share-css */
.btn-social {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
}

.btn-facebook {
    color: #1877F2;
    border: 1px solid #1877F2;
}
.btn-facebook:hover {
    background-color: #1877F2;
    color: white;
}

.btn-whatsapp {
    color: #25D366;
    border: 1px solid #25D366;
}
.btn-whatsapp:hover {
    background-color: #25D366;
    color: white;
}

.btn-telegram {
    color: #0088CC;
    border: 1px solid #0088CC;
}
.btn-telegram:hover {
    background-color: #0088CC;
    color: white;
}

.btn-linkedin {
    color: #0A66C2;
    border: 1px solid #0A66C2;
}
.btn-linkedin:hover {
    background-color: #0A66C2;
    color: white;
}

.btn-email {
    color: #EA4335;
    border: 1px solid #EA4335;
}
.btn-email:hover {
    background-color: #EA4335;
    color: white;
}

/* subscription form css*/
.subscription-section {
    position: relative;
    z-index: 1;
}

.subscription-form {
    border-radius: 12px;
    background: #fff;
}

.input-group-text {
    transition: all 0.3s ease;
}

.input-group:focus-within .input-group-text {
    color: #0d6efd;
}

.btn-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.trust-badges .d-flex {
    padding: 0.5rem 1rem;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 50px;
}

@media (max-width: 768px) {
    .subscription-form {
        padding: 2rem !important;
    }
    
    .input-group-text {
        padding: 0.75rem;
    }
}
/* promotion section */

.event-promotion-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1505373877841-8d25f7d46678?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.promo-features {
    font-size: 1.1rem;
}

.countdown-item {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 1rem;
    min-width: 80px;
}

@media (max-width: 768px) {
    .event-promotion-banner {
        background-attachment: scroll;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 0.75rem;
    }
}

/* event details css */

.event-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(114, 105, 105, 0.24)), url('<?php echo esc_url($event_image); ?>');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: white;
    padding: 120px 0;
    margin-bottom: 40px;
    position: relative;
}

.event-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.event-hero .container {
    position: relative;
    z-index: 2;
}

.event-details-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 30px;
    background: white;
}

.event-highlights li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.event-highlights li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #0d6efd;
    position: absolute;
    left: 0;
}

.speaker-card {
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-5px);
}

.speaker-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #f8f9fa;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.register-btn {
    padding: 12px 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.event-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.event-gallery img {
    border-radius: 8px;
    transition: transform 0.3s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-gallery img:hover {
    transform: scale(1.03);
}

/* Pricing Table Styles */
.pricing-table {
    margin: 40px 0;
}

.pricing-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.pricing-header {
    padding: 25px;
    text-align: center;
    background: #f8f9fa;
}

.pricing-header h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.pricing-period {
    font-size: 1rem;
    color: #6c757d;
}

.pricing-features {
    padding: 25px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-footer {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffc107;
    color: #000;
    padding: 5px 15px;
    font-weight: 700;
    border-radius: 20px;
    font-size: 0.8rem;
}

.pricing-card.popular {
    border: 2px solid #0d6efd;
    position: relative;
}

/* Additional Sections */
.section-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.section-title h2 {
    font-weight: 700;
    color: #212529;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #0d6efd;
    border-radius: 3px;
}

/* Agenda Styles */
.agenda-item {
    border-left: 3px solid #0d6efd;
    padding-left: 20px;
    margin-bottom: 25px;
    position: relative;
}

.m-3 {
    margin: 1rem !important;
    align-self: center;
    top: -19px;
    padding:4px;
}

.card-header.border-0.py-4 {
    top: 5px;
    margin-top: 10px;
  }
  
.agenda-time {
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 5px;
}

.agenda-title {
    font-weight: 600;
    margin-bottom: 5px;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .event-hero {
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .pricing-card {
        margin-bottom: 20px;
    }
}