/* Rebranding Section Enhancements */
.about-thumb {
    position: relative;
    overflow: visible;
}

.floating-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 2;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 84, 85, 0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.about-content .section-title h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
}

.about-content .section-title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--p3-clr);
}

.theme-btn {
    transition: all 0.3s ease;
}

.theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* Legacy Continuity Section */
.bg-light {
    background-color: #f8f9fa !important;
}

.point-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.legacy-points .point-item {
    transition: transform 0.3s ease;
}

.legacy-points .point-item:hover {
    transform: translateX(5px);
}

.floating-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 15px;
    font-weight: 600;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

.legacy-thumb {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.legacy-thumb img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.legacy-thumb:hover img {
    transform: scale(1.03);
}
/* Transformation Section */
.timeline-wrapper {
    position: relative;
}

.timeline-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.floating-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-item {
    padding: 25px;
    margin-bottom: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    position: relative;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -15px;
    top: 40px;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.timeline-item.active {
    border-left: 4px solid var(--primary);
}

/* Global Section */
.global-map {
    position: relative;
}

.location-marker {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transform: scale(0);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.7; }
}

/* CEO Section */
.ceo-card {
    position: relative;
    overflow: hidden;
}

.ceo-card:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

/* New Era Section */
.feature-card {
    transition: transform 0.3s ease;
    background: rgba(255,255,255,0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon-circle {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bg-primary-soft {
    background: rgba(13, 110, 253, 0.1);
}