/* About Page Color Scheme Fixes */

/* Hero Section Background Fix */
.hero-about-section {
    background: #0f0f0f;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-about-section .animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-about-section .gradient-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 1, 79, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 1, 79, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

/* Hero Content */
.hero-about-section .hero-content {
    position: relative;
    z-index: 1;
}

.hero-about-section .sub-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 1, 79, 0.1);
    border: 1px solid rgba(255, 1, 79, 0.3);
    border-radius: 30px;
    color: #ff014f;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-about-section .hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.hero-about-section .gradient-text {
    background: linear-gradient(135deg, #ff014f 0%, #ff4d7d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-about-section .hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Hero Stats */
.hero-about-section .hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.hero-about-section .stat-item h3 {
    font-size: 2.5rem;
    color: #ff014f;
    font-weight: 700;
    margin-bottom: 5px;
}

.hero-about-section .stat-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Hero Buttons */
.hero-about-section .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-about-section .btn-primary {
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff014f 0%, #ff4d7d 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hero-about-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 1, 79, 0.3);
}

.hero-about-section .btn-secondary {
    padding: 15px 30px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hero-about-section .btn-secondary:hover {
    border-color: #ff014f;
    color: #ff014f;
}

/* Hero Image Wrapper Fix */
.hero-about-section .hero-image-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.hero-about-section .image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 1, 79, 0.2) 0%, rgba(255, 1, 79, 0.05) 100%);
    padding: 5px;
}

.hero-about-section .hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    position: relative;
    z-index: 1;
    object-fit: cover;
    max-height: 600px;
}

.hero-about-section .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* Floating Badges */
.hero-about-section .floating-badge {
    position: absolute;
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid rgba(255, 1, 79, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.hero-about-section .floating-badge i {
    color: #ff014f;
    font-size: 1.2rem;
}

.hero-about-section .floating-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
}

.hero-about-section .top-badge {
    top: 30px;
    right: -20px;
}

.hero-about-section .bottom-badge {
    bottom: 50px;
    left: -20px;
}

/* Personal Info Section Fix */
.personal-info-section {
    background: #1a1a1a;
    padding: 100px 0;
    position: relative;
}

.personal-info-section .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 1, 79, 0.1);
    border: 1px solid rgba(255, 1, 79, 0.3);
    border-radius: 30px;
    color: #ff014f;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.personal-info-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff;
}

.personal-info-section .info-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.personal-info-section .info-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Info List */
.personal-info-section .info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.personal-info-section .info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.personal-info-section .info-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 1, 79, 0.1);
    border: 1px solid rgba(255, 1, 79, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff014f;
    font-size: 1.2rem;
}

.personal-info-section .info-item span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.personal-info-section .info-item strong {
    color: #fff;
    font-weight: 500;
}

/* Expertise Cards */
.personal-info-section .expertise-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.personal-info-section .expertise-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.personal-info-section .expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 1, 79, 0.2);
    border-color: rgba(255, 1, 79, 0.3);
}

.personal-info-section .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.personal-info-section .card-icon.cloud {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.personal-info-section .card-icon.devops {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.personal-info-section .card-icon.orchestration {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.personal-info-section .card-icon.backend {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.personal-info-section .expertise-card h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.personal-info-section .expertise-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Skills Showcase Section Fix */
.skills-showcase-section {
    background: #0f0f0f;
    padding: 100px 0;
    position: relative;
}

.skills-showcase-section .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 1, 79, 0.1);
    border: 1px solid rgba(255, 1, 79, 0.3);
    border-radius: 30px;
    color: #ff014f;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.skills-showcase-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff;
}

/* Skills Tabs */
.skills-showcase-section .nav-tabs {
    border: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.skills-showcase-section .nav-link {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.6);
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.skills-showcase-section .nav-link:hover {
    border-color: rgba(255, 1, 79, 0.5);
    color: #fff;
}

.skills-showcase-section .nav-link.active {
    background: linear-gradient(135deg, #ff014f 0%, #ff4d7d 100%);
    border-color: #ff014f;
    color: white;
}

/* Skills Grid */
.skills-showcase-section .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.skills-showcase-section .skill-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.skills-showcase-section .skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 1, 79, 0.2);
    border-color: rgba(255, 1, 79, 0.3);
}

.skills-showcase-section .skill-icon {
    font-size: 3rem;
    color: #ff014f;
    margin-bottom: 20px;
}

.skills-showcase-section .skill-card h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.skills-showcase-section .skill-level {
    display: flex;
    align-items: center;
    gap: 15px;
}

.skills-showcase-section .level-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.skills-showcase-section .level-progress {
    height: 100%;
    background: linear-gradient(90deg, #ff014f 0%, #ff4d7d 100%);
    border-radius: 10px;
    transition: width 1s ease;
}

.skills-showcase-section .level-text {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Particle Container Animation */
.hero-about-section .particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Achievements Section Styles */
.achievements-section {
    background: #1a1a1a;
    position: relative;
    padding: 80px 0;
}

.achievements-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(255, 1, 79, 0.1) 0%, rgba(255, 1, 79, 0.05) 100%);
    border: 2px solid rgba(255, 1, 79, 0.3);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 1, 79, 0.2);
    border-color: rgba(255, 1, 79, 0.5);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff014f 0%, #ff4d7d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    position: relative;
    z-index: 2;
}

.achievement-card.featured .achievement-icon {
    width: 100px;
    height: 100px;
    font-size: 40px;
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
}

.achievement-number::after {
    content: '+';
    font-size: 2rem;
    color: #ff014f;
    margin-left: 5px;
}

.achievement-label {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 500;
}

.achievement-detail {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.achievement-decoration {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 1, 79, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Timeline Section Styles */
.timeline-section {
    background: #0f0f0f;
    padding: 80px 0;
    position: relative;
}

.timeline-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
}

/* Timeline Toggle */
.timeline-toggle {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.timeline-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-btn.active {
    background: linear-gradient(135deg, #ff014f 0%, #ff4d7d 100%);
    border-color: #ff014f;
    color: white;
}

.timeline-btn:hover:not(.active) {
    border-color: #ff014f;
    color: white;
}

/* Timeline Container */
.timeline-container {
    position: relative;
    padding: 40px 0;
    display: none;
}

.timeline-container.active {
    display: block;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #ff014f 0%, rgba(255, 1, 79, 0.3) 100%);
    transform: translateX(-50%);
}

/* Timeline Items */
.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item.left {
    left: 0;
    padding-right: 40px;
}

.timeline-item.right {
    left: 50%;
    padding-left: 40px;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ff014f;
    border: 4px solid #1a1a1a;
    border-radius: 50%;
    top: 0;
    z-index: 2;
}

.timeline-item.left .timeline-dot {
    right: -10px;
}

.timeline-item.right .timeline-dot {
    left: -10px;
}

.timeline-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 1, 79, 0.2);
    border-color: rgba(255, 1, 79, 0.3);
}

.timeline-date {
    display: inline-block;
    background: linear-gradient(135deg, #ff014f 0%, #ff4d7d 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 5px;
}

.timeline-company {
    font-size: 1.1rem;
    color: #ff014f;
    margin-bottom: 15px;
}

.timeline-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.timeline-tags span {
    padding: 5px 12px;
    background: rgba(255, 1, 79, 0.1);
    border: 1px solid rgba(255, 1, 79, 0.3);
    border-radius: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Certification List */
.cert-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

a.cert-item {
    text-decoration: none;
}

a.cert-item:hover {
    color: #ff014f;
    transform: translateX(10px);
}

.cert-item i {
    color: #ff014f;
    font-size: 0.9rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero-about-section .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-about-section .hero-stats {
        gap: 20px;
    }
    
    .hero-about-section .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .personal-info-section .expertise-cards {
        grid-template-columns: 1fr;
    }
    
    .hero-about-section .floating-badge {
        display: none;
    }
    
    .skills-showcase-section .nav-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .skills-showcase-section .nav-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .achievement-card.featured {
        grid-column: span 1;
    }
    
    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px !important;
        padding-right: 0 !important;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-dot {
        left: 10px !important;
        right: auto !important;
    }

    .timeline-toggle {
        flex-direction: column;
        align-items: center;
    }

    .timeline-btn {
        width: 250px;
    }
}