.history-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #fff;
}
.list-all-news .item .wrapper .content .title a{
    font-size: 20px;
}
.history-section h2.title{
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #F5914A;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Timeline Styles with Swiper */
.timeline-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
/* Loading Spinner */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    min-height: 300px;
    color: #F5914A;
    font-size: 18px;
    font-weight: 600;
}

.loading-spinner i {
    font-size: 48px;
    margin-bottom: 20px;
    animation: spinRotate 1s linear infinite;
}

@keyframes spinRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Error Message */
.error-message {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    min-height: 250px;
    color: #d32f2f;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    background: rgba(211, 47, 47, 0.05);
    border: 2px solid rgba(211, 47, 47, 0.2);
    border-radius: 10px;
    margin: 20px 0;
}

.error-message::before {
    content: '⚠️';
    font-size: 32px;
    margin-right: 15px;
}

/* Loading Overlay Effect */
#tab-content {
    transition: opacity 0.3s ease;
}

#tab-content.loading {
    opacity: 0.6;
    pointer-events: none;
}
.timeline-swiper-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.timelineSwiper {
    width: 100%;
    padding: 20px 0;
}

.timelineSwiper::before {
    content: '';
    position: absolute;
    top: 80%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F5914A, transparent);
    z-index: 0;
}

.timelineSwiper .swiper-slide {
    margin-bottom: 15px;
    width: auto;
    display: flex;
    justify-content: center;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-item:hover .year-text {
    color: #F5914A;
    font-weight: 600;
}

.timeline-item:hover .timeline-dot {
    background-color: #F5914A;
    border-color: #F5914A;
    transition: all;
    box-shadow: 0 0 15px rgba(245, 145, 74, 0.5);
}

.year-text {
    font-size: 18px;
    color: #666;
    text-transform: uppercase;
    font-weight: 400;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.timeline-item.active .year-text {
    color: #F5914A;
    font-weight: 700;
}

.timeline-dot {
    top: 150%;
    width: 12px;
    height: 12px;
    box-shadow: none;
    border-radius: 50%;
    background-color: #000;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.timeline-dot.active {
    background-color: #F5914A;
    border-color: #F5914A;
    box-shadow: 0 0 20px rgba(245, 145, 74, 0.6);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(245, 145, 74, 0.4);
    }
    50% {
        box-shadow: 0 0 15px rgba(245, 145, 74, 0.7), 
                    0 0 20px rgba(245, 145, 74, 0.5),
                    0 0 25px rgba(245, 145, 74, 0.3);
    }
}

.nav-arrow {
    background: #fff;
    border: 2px solid #F5914A;
    font-size: 24px;
    color: #F5914A;
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    background-color: #F5914A;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(245, 145, 74, 0.3);
}

.nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #ddd;
    color: #ddd;
}

.nav-arrow:disabled:hover {
    background: #fff;
    transform: none;
    box-shadow: none;
}

.swiper-button-prev-custom {
    margin-right: 20px;
}

.swiper-button-next-custom {
    margin-left: 20px;
}

/* Tabs Styles */
.tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 20px;
}

.tab {
    text-transform: uppercase;
    background: #fff;
    border-top: 1px solid #F5914A;
    border-bottom: 1px solid #F5914A;
    border-right: 1px solid #F5914A;
    border-left: none ;
    width: 20%;
    height: 65px;
    padding: 0px !important;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    margin-bottom: -3px;
    outline: none !important;
    letter-spacing: 0.5px;
  
}
.tab:first-child{
    border-left: 1px solid #F5914A;
}
.tab:hover {
    color: #fff;
    background-color: #F5914A;
    transition: all 0.3s ease;

}

.tab.active {
    color: #fff;
    background-color: #F5914A;

    
    
}



/* Content Styles */


.image-section {
    display: flex;
    align-items: flex-start;
}

.main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    border: 4px solid #F5914A;
    box-shadow: 0 10px 30px rgba(245, 145, 74, 0.3);
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 145, 74, 0.4);
}

.info-section {
    padding: 20px 0;
    position: relative;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #F5914A;
    color: #000;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: #F5914A;
}

.info-item {
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    border-left: 4px solid #F5914A;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(245, 145, 74, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.info-label {
    font-size: 18px;
    font-weight: 700;
    color: #F5914A;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-text {
    font-size: 16px;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.6;
}

.info-text.sub {
    color: #666;
    margin-left: 20px;
    font-size: 15px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    font-size: 16px;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
    padding-left: 10px;
}

.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    background: #F5914A;
    border-radius: 50%;
}

.info-list li.sub {
    color: #666;
    margin-left: 20px;
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tabs {
        flex-wrap: wrap;
    }

    .tab {
        padding: 15px 25px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 36px;
    }

    .year-text {
        font-size: 14px;
    }

    .nav-arrow {
        padding: 5px 10px;
        font-size: 20px;
    }

    .tabs {
        
        justify-content: flex-start;
        
    }

    .tab {
        white-space: nowrap;
    }

    .section-title {
        font-size: 24px;
    }

    .content {
        gap: 30px;
    }
}
@media (max-width: 575px) {
    .tab{
        width: 50%;
        border-left: 1px solid rgb(245, 145, 74);
    }
}