
.scv-section {
    padding: 20px 0;
    background-color: #fff;
    overflow: hidden;
}

.scv-section:nth-child(even) {
    background-color: #f8fbff;
}

.section-year {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1965c0;
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scv-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.2;
    color: #444;
    margin-bottom: 25px;
}

.scv-title .text-blue {
    color: #1965c0;
    font-weight: 700;
}

.scv-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #5a5a5a;
}

.scv-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.scv-img-wrapper img {
    transition: transform 0.6s ease;
}

.scv-img-wrapper:hover img {
    transform: scale(1.05);
}

.milestone-grid {
    padding: 30px 0;
}

.milestone-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 5px solid #1965c0;
}

.milestone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.milestone-year {
    font-size: 24px;
    font-weight: 700;
    color: #1965c0;
    margin-bottom: 15px;
    display: block;
}

.names-list {
    column-count: 2;
    column-gap: 30px;
    margin-top: 20px;
}

.name-item {
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 8px;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.name-item::before {
    content: "•";
    color: #1965c0;
    position: absolute;
    left: 0;
    font-weight: bold;
}


.scv-section .col-lg-6 {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.scv-section .col-lg-6.left {
    transform: translateX(-50px);
}

.scv-section .col-lg-6.right {
    transform: translateX(50px);
}

.scv-section .col-lg-6.bottom {
    transform: translateY(50px);
}

.scv-section .col-lg-6.show {
    opacity: 1;
    transform: translate(0, 0);
}

@media (max-width: 991.98px) {
    .scv-title {
        font-size: 32px;
    }
    .names-list {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .scv-section {
        padding: 40px 0;
    }
}

/* Timeline Styles */
.timeline-container {
    position: relative;
    padding: 20px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 50px;
}

.timeline-dot {
    position: absolute;
    left: 13px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #1965c0;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(25, 101, 192, 0.2);
}

.timeline-date {
    font-weight: 700;
    color: #1965c0;
    margin-bottom: 5px;
    display: block;
}

/* Federation List */
.fed-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.fed-item {
    background: #f8fbff;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    color: #444;
    border-left: 4px solid #1965c0;
    transition: all 0.3s ease;
}


/* Jubilee Stats */
.jubilee-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .jubilee-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .jubilee-stats {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    border: 1px solid rgba(25, 101, 192, 0.1);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #1965c0;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.quote-box {
    background: #1965c0;
    color: #fff;
    padding: 40px;
    border-radius: 30px;
    position: relative;
    margin-top: 60px;
    overflow: hidden;
}

.quote-box::after {
    content: '"';
    position: absolute;
    right: 20px;
    bottom: -20px;
    font-size: 150px;
    opacity: 0.1;
    font-family: serif;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.max-width-800 {
    max-width: 800px;
}
