/* About Me Page CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'General Sans', sans-serif;
    background: linear-gradient(to right, #120024, #2d0a50);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 50px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #bb5efc;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: #bb5efc;
}

/* Page Title */
.page-title {
    font-size: 48px;
    margin-bottom: 50px;
    text-align: center;
}

.highlight {
    color: #bb5efc;
}

/* Section Styles */
.about-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: #bb5efc;
}


/* Experience Section */
.experience-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.experience-item {
    background-color: rgba(187, 94, 252, 0.1);
    padding: 25px;
    border-radius: 0 8px 8px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(187, 94, 252, 0.2);
}

.experience-title {
    font-size: 22px;
    color: #bb5efc;
    margin-bottom: 5px;
}

.experience-title span {
    font-size: 18px;
    color: #bbbbbb;
    margin-bottom: 2px;
}

.experience-company {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 500;
}

.experience-duration {
    font-size: 16px;
    color: #bbbbbb;
    margin-bottom: 15px;
}

/* Skills Section - Updated Layout */
.skills-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.skills-left-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.skills-right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.category-title {
    font-size: 22px;
    color: #bb5efc;
    margin-bottom: 20px;
}

.skill-item {
    margin-bottom: 20px;
}

.skill-name {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 16px;
}
.skill-level {
    height: 100%;
    background: linear-gradient(to right, #8a2be2, #bb5efc);
    border-radius: 5px;
    /* Initial state will be set by JS */
    width: 0%;
} 
.social-icons {

    display: flex;

    justify-content: center;

    gap: 20px;

    margin-bottom: 20px;

}



.social-icon {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background-color: rgba(187, 94, 252, 0.2);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    text-decoration: none;

    transition: background-color 0.3s ease;

}



.social-icon:hover {

    background-color: #bb5efc;

}





/* Social icons fix */
.social-icon i {
    font-size: 18px;
}

.skill-bar {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.skill-level {
    height: 100%;
    background: linear-gradient(to right, #8a2be2, #bb5efc);
    border-radius: 5px;
}

/* Education Section */
.education-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.education-item {
    background-color: rgba(187, 94, 252, 0.1);
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(187, 94, 252, 0.2);
}

.education-degree {
    font-size: 22px;
    color: #bb5efc;
    margin-bottom: 5px;
}

.education-school {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 500;
}

.education-duration {
    font-size: 16px;
    color: #bbbbbb;
    margin-bottom: 15px;
}

.certification-list {
    margin-left: 20px;
    margin-top: 10px;
}

.certification-list li {
    margin-bottom: 8px;
}

/* CTA Buttons */
.cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, #8a2be2, #bb5efc);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #bb5efc;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

/* Footer */
footer {
    margin-top: 80px;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(187, 94, 252, 0.3);
}

.social-icons {
    display: flex;
    gap: 45px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(187, 94, 252, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.social-icon:hover {
    background-color: #bb5efc;
}

.copyright {
    color: #bbbbbb;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .skills-container {
        grid-template-columns: 1fr;
    }
    
    .skills-left-column, .skills-right-column {
        gap: 30px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .experience-title, .education-degree {
        font-size: 20px;
    }
}
