/* ===== GLOBAL RESET ===== */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(120deg, #f0f4f8, #d9e4f5);
    color: #0f172a;
}

/* ===== HEADER SECTION ===== */
#name {
    font-size: 3rem;
    font-weight: 700;
}

#address {
    font-size: 1.2rem;
    color: #475569;
}

/* PROFILE IMAGE */
#my_pic_size {
    width: 70%;
    border-radius: 50%;
    box-shadow: 5px 5px 18px 5px lightskyblue;
}

/* LINKS */
a {
    text-decoration: none;
    color: #0d6efd;
}

a:hover {
    text-decoration: underline;
}

/* ===== SECTION HEADINGS ===== */
#obj {
    font-size: 1.8rem;
    font-weight: 700;
    border-bottom: 3px solid #0d6efd;
    display: inline-block;
    margin-bottom: 1rem;
}

/* ===== PARAGRAPH ===== */
#para1 {
    font-size: 1.3rem;
    line-height: 1.7;
}

/* ===== TABLE ===== */
table {
    background: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* ===== SKILLS ===== */
#TS {
    font-size: 1.3rem;
    margin-top: 0.5rem;
}

#content {
    font-weight: 400;
    color: #334155;
}

/* ===== CERTIFICATES ===== */
#certificate_card {
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

#certificate_card:hover {
    transform: translateY(-10px) scale(1.03);
}

/* ===== WORKSHOPS ===== */
#workshop_content {
    font-size: 1.3rem;
}

/* ===== PROJECTS ===== */
#project_content {
    font-size: 1.3rem;
    line-height: 1.7;
}

#btn_proj {
    width: fit-content;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
}

/* ===== INTERNSHIP ===== */
#internship_content {
    font-size: 1.2rem;
}

/* ===== FOOTER ===== */
footer {
    margin-top: 4rem;
    padding: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    #name {
        font-size: 2.2rem;
        text-align: center;
    }

    #address {
        text-align: center;
    }

    #my_pic_size {
        width: 50%;
        display: block;
        margin: auto;
    }
}
