/* ========================================
   CERTIFICATIONS SECTION
   ======================================== */

.certifications-section {
    margin-bottom: 5rem;
}

.certifications-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #212529;
    text-align: center;
}

/* ========================================
   CAREER GOALS SECTION
   ======================================== */

.goals-section {
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 20px;
    color: white;
}

.goals-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.goals-content {
    max-width: 900px;
    margin: 0 auto;
}

.goals-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: white;
}

.goals-content strong {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.goals-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.keyword {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.keyword:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 2rem 4rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    margin-bottom: 5rem;
}

.about-content {
    display: block; /* Changed from grid to block */
    max-width: 900px; /* Limit width for better readability */
    margin: 0 auto; /* Center the content */
}

.about-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2rem; /* Center and add bottom margin */
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #212529;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* ========================================
   SKILLS SECTION
   ======================================== */

.skills-section {
    margin-bottom: 5rem;
}

.skills-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #6366f1;
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.skill-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #6366f1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.skill-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #212529;
}

.skill-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* ========================================
   EDUCATION/EXPERIENCE SECTION
   ======================================== */

.experience-section {
    margin-bottom: 3rem;
}

.experience-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #212529;
    text-align: center;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    border-left: 4px solid #6366f1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-item h3 {
    font-size: 1.5rem;
    color: #212529;
    margin-bottom: 0.5rem;
}

.timeline-date {
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-item p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablets */
@media (max-width: 1024px) {
    .about-text h1 {
        font-size: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-container {
        padding: 100px 1rem 2rem;
    }
    
    .about-text h1 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
    }
    
    .skills-section h2,
    .experience-section h2 {
        font-size: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-card {
        padding: 1.5rem;
    }
}