/* ================= GLOBAL STYLES ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ===== Animations ===== */
section,
.TechnicalSkills div,
.SoftSkills div,
.Project-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When visible, fade in and slide up */
section.visible,
.TechnicalSkills div.show,
.SoftSkills div.show,
.Project-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= BODY & HEADER ================= */
body {
    background-color: #f5f5f5;
    color: #333;
}

.header {
    background-color: #2c3e50;
    padding: 10px;
}

.profile-pic {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.name-title {
    color: #ecf0f1;
    text-align: center;
    margin-top: 10px;
}

.download-cv {
    text-align: center; 
    margin-top: 20px;
}

.download-cv button {
    padding: 10px 20px;
    background-color: #3a86d2;
    color: white;
    border: 2px solid #ffffff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.download-cv button:hover {
    background-color: #265d9c; 
}

.contact-info {
    color: #ecf0f1;
    text-align: center;
    margin-top: 10px;
}

/* ================= ABOUT ================= */
.about-content {
    margin: 60px 100px;
}

.aboutH {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.about-content>hr {
    margin-bottom: 20px;
    width: 95%;
    border-top: 3px solid;
}

.about-content>p {
    border: 2px solid #d4d4d4;
    padding: 30px 20px;
    border-radius: 5px;
    background-color: #ecf0f1;
    width: 95%;
    line-height: 1.75;
    font-size: large;
}

/* ================= EDUCATION ================= */
.education {
    margin: 60px 100px;
}

.education>h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.education>hr {
    margin-bottom: 20px;
    width: 95%;
    border-top: 3px solid;
}

.edu-item {
    border: 2px solid #d4d4d4;
    padding: 30px 20px;
    border-radius: 5px;
    background-color: #ecf0f1;
    width: 95%;
    line-height: 1.75;
}

/* ================= SKILLS ================= */
.skills {
    margin: 60px 100px;
}

.skills>h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.skills>hr {
    margin-bottom: 20px;
    width: 95%;
    border-top: 3px solid;
}

.skills>h3 {
    margin-bottom: 8px;
}

.TechnicalSkills,
.SoftSkills {
    border: 2px solid #d4d4d4;
    padding: 30px 20px;
    border-radius: 5px;
    background-color: #ecf0f1;
    width: 95%;
    line-height: 1.75;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.TS,
.SS {
    border: #2c3e50 2px solid;
    padding: 3px;
    border-radius: 5px;
    background-color: #3a86d2;
    color: white;
}

/* ================= PROJECTS ================= */
.projects {
    margin: 60px 100px;
}

.projects>h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.projects>hr {
    margin-bottom: 0px;
    width: 95%;
    border-top: 3px solid;
}

.Project-items {
    padding: 30px 20px 0px 20px;
    width: 95%;
    line-height: 1.75;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Project-item {
    border: 2px solid #d4d4d4;
    padding: 20px;
    border-radius: 5px;
    background-color: #ecf0f1;
    width: 100%;
    line-height: 1.75;
    margin-bottom: 20px;
}

/* ================= CONTACT ================= */
.contact {
    margin: 0px 100px 60px 100px;
}

.contact>h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.contact>hr {
    margin-bottom: 20px;
    width: 95%;
    border-top: 3px solid;
}

.contact-items {
    border: 2px solid #d4d4d4;
    padding: 30px 20px;
    border-radius: 5px;
    background-color: #ecf0f1;
    width: 95%;
    line-height: 1.75;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-left h4,
.contact-right h4 {
    color: #7d7e7f;
    margin-top: 0;
}

.CI {
    display: block;
    margin-bottom: 12px;
}

/* ================= FOOTER ================= */
footer {
    background-color:#2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 10px;
    margin: 10px 0 0 0;
    height: 80px;
    display:flex;
    align-items: center;
    justify-content:center;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 768px) {
    .about-content,
    .education,
    .skills,
    .projects,
    .contact {
        margin-left: 20px;
        margin-right: 20px;
    }

    .profile-pic {
        height: 150px;
        width: 150px;
    }

    .name-title h1 {
        font-size: 1.5rem;
    }

    .name-title h2 {
        font-size: 1rem;
    }

    .TechnicalSkills,
    .SoftSkills {
        justify-content: center;
        gap: 10px;
    }

    .contact-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .Project-items {
        padding-left: 0;
        padding-right: 0;
    }

    footer {
        font-size: 0.9rem;
        height: auto;
        padding: 20px;
    }
}
