
        .lgx-banner-info .year-inline {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}

.lgx-banner-info .year-inline b {
  display: inline-block;
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1;
  vertical-align: middle;
}

/* Sponsors Cards Styling */
.sponsors-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
}

.sponsor-card {
    width: 280px;
    height: 320px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.sponsor-card:hover .card-inner {
    transform: rotateY(180deg);
}

.sponsor-logo, .sponsor-info {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
}

.sponsor-logo {
    background-color: #fff;
    color: #333;
}

.sponsor-logo img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
}

.sponsor-info {
    background-color: #f8f9fa;
    color: #333;
    transform: rotateY(180deg);
}

.sponsor-card.gold .card-inner {
    border: 2px solid #FFD700;
}

.sponsor-card.gold .sponsor-info {
    background: linear-gradient(135deg, #FFD700, #FFEC8B);
}

.sponsor-card.silver .card-inner {
    border: 2px solid #C0C0C0;
}

.sponsor-card.silver .sponsor-info {
    background: linear-gradient(135deg, #C0C0C0, #E8E8E8);
}

.sponsor-name {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.sponsor-tier {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.sponsored-heading {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 2rem;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.sponsored-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #333;
}

.first-heading:after {
    background-color: #FFD700;
}

.secound-heading:after {
    background-color: #C0C0C0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sponsors-cards-container {
        gap: 15px;
    }
    
    .sponsor-card {
        width: 100%;
        max-width: 280px;
    }
}


/* Coming Soon Styling */
.lgx-single-schedule {
    text-align: center;
    padding: 30px 20px;
}

.lgx-single-schedule .author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid #ff6b6b;
    padding: 5px;
}

.schedule-info .time {
    font-size: 1.4rem;
    color: #ff6b6b;
    margin-bottom: 15px;
    font-weight: 600;
}

.schedule-info .time span {
    font-size: 1rem;
    color: #666;
}

.schedule-info .title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.schedule-info .author-info {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

.schedule-info .author-info span {
    color: #ff6b6b;
    font-weight: 600;
}

.panel-body .text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.panel-body .location {
    font-size: 1rem;
    color: #666;
}

.panel-body .location strong {
    color: #333;
}

.panel-body .location span {
    color: #ff6b6b;
    font-weight: 600;
}

/* Animation for coming soon */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

.lgx-single-schedule {
    animation: pulse-glow 2s infinite;
    border-radius: 10px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

/* Hover effects */
.lgx-single-schedule:hover {
    animation: none;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .schedule-info .title {
        font-size: 1.5rem;
    }
    
    .schedule-info .time {
        font-size: 1.2rem;
    }
    
    .lgx-single-schedule {
        padding: 20px 15px;
    }
}


/* style of speakers page  */
/* Custom styles for partition boxes */
.partition-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.partition-box {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.partition-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.partition-header {
    background: linear-gradient(135deg, #1a6fc4 0%, #0c3d76 100%);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.partition-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    font-family: Poppins, sans-serif;
}

.partition-subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    opacity: 0.9;
    color: white;
    font-family: Poppins, sans-serif;
}

.partition-content {
    padding: 30px 20px;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Poppins, sans-serif;

}

.partition-icon {
    font-size: 3.5rem;
    color: #1a6fc4;
    margin-bottom: 20px;
}

.partition-text {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 20px;
}

.partition-btn {
    background: #ec398b;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.partition-btn:hover {
    background: #ec398b;
}

/* Full-screen modal styles */
.modal-fullscreen {
    padding: 0 !important;
}

.modal-fullscreen .modal-dialog {
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
    background: linear-gradient(135deg, #1a6fc4 0%, #0c3d76 100%);
    color: white;
    overflow-y: auto;
}

.modal-fullscreen .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.modal-fullscreen .modal-title {
    font-weight: 700;
    font-size: 2rem;
    color: white;
    font-family: Poppins, sans-serif;
}

.modal-fullscreen .close {
    color: white;
    opacity: 1;
    text-shadow: none;
    font-size: 2.5rem;
    font-weight: 300;
    padding: 10px;
    transition: all 0.3s ease;
}

.modal-fullscreen .close:hover {
    color: #ff6b6b;
    transform: scale(1.2);
}

.modal-fullscreen .modal-body {
    padding: 20px;
}

.speaker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.speaker-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.speaker-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.speaker-info {
    padding: 20px;
    text-align: center;
}

.speaker-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.speaker-role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.section-title-modal {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 40px 0 30px;
    position: relative;
    padding-bottom: 15px;
    font-family: Poppins, sans-serif;
}

.section-title-modal:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #ff6b6b;
}

.coming-soon-content {
    text-align: center;
    padding: 40px 20px;
}

.coming-soon-icon {
    font-size: 5rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.coming-soon-text {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-family: Poppins, sans-serif;
}

/* Hide regular speaker sections when modal is open */
.modal-open .regular-speakers-section,
.modal-open .poster-presenters-section {
    display: none !important;
}

@media (max-width: 768px) {
    .partition-box {
        min-width: 100%;
    }

    .modal-fullscreen .modal-title {
        font-size: 1.5rem;
        font-family: Poppins, sans-serif;
    }

    .speaker-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .section-title-modal {
        font-size: 2rem;
        font-family: Poppins, sans-serif;
    }
}

 