/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #0b1120;
    color: #e5e7eb;
    line-height: 1.7;
}


/* =========================
   MAIN CONTAINER
========================= */

body {
    width: 100%;
    min-height: 100vh;
}

.info_my,
.education_div,
.cert_my,
.proj_my,
.con_my,
.skil_my,
.len_my,
.saft_my {
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
}


/* =========================
   HEADINGS
========================= */

.h1_my {
    color: #38bdf8;
    font-size: 28px;
    margin-bottom: 20px;
    border-left: 4px solid #38bdf8;
    padding-left: 12px;
}

.name_class {
    font-size: 60px;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.info_my .h1_my {
    font-size: 30px;
    border: none;
    padding: 0;
}

h3 {
    max-width: 800px;
    margin: 25px auto;
    color: #94a3b8;
    font-size: 18px;
    font-weight: normal;
    line-height: 2;
}


/* =========================
   INTRO
========================= */

.info_my {
    text-align: center;
    padding: 100px 30px 70px;
    background: linear-gradient(
        145deg,
        #111827,
        #0f172a
    );

    border-radius: 25px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35);

    border: 1px solid #1e293b;
}


/* =========================
   EDUCATION
========================= */

.education_div {
    background: #111827;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #1e293b;
}

.education_div p {
    color: #cbd5e1;
    font-size: 17px;
    margin: 8px 0;
}


/* =========================
   CERTIFICATE
========================= */

.cert_my {
    text-align: center;
    background: #111827;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #1e293b;
}

.cs50_img {
    width: 100%;
    max-width: 650px;
    border-radius: 15px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5);

    transition: 0.3s;
}

.cs50_img:hover {
    transform: scale(1.02);
}


/* =========================
   PROJECTS
========================= */

.proj_my {
    background: #111827;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #1e293b;
}

.proj_my p {
    color: #cbd5e1;
    font-size: 18px;
    margin: 15px 0;
}


/* =========================
   PROJECT BUTTONS
========================= */

.but_proj {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0 30px;
}

.but_proj button,
.skil_my button,
.len_my button {
    background: #172554;
    color: #38bdf8;

    border: 1px solid #0ea5e9;

    padding: 8px 16px;

    border-radius: 20px;

    font-size: 14px;

    cursor: pointer;

    transition: 0.25s;
}

.but_proj button:hover,
.skil_my button:hover,
.len_my button:hover {
    background: #0ea5e9;
    color: white;

    transform: translateY(-2px);
}


/* =========================
   PROJECT SUB SECTIONS
========================= */

.net_prij,
.hard_my {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #334155;
}


/* =========================
   CONTACT
========================= */

.con_my {
    background: #111827;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #1e293b;
}

.con_my table {
    width: 100%;
    border-collapse: collapse;
}

.con_my td {
    padding: 14px 10px;
    border-bottom: 1px solid #1e293b;
}

.con_my td:first-child {
    color: #38bdf8;
    font-weight: bold;
    width: 120px;
}

.con_my a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.2s;
}

.con_my a:hover {
    color: #38bdf8;
}


/* =========================
   PROFILE IMAGE
========================= */

.img_my {
    text-align: center;
    margin: 40px 0;
}

.img_my img {
    width: 180px;
    height: 180px;

    object-fit: cover;

    border-radius: 50%;

    border: 4px solid #38bdf8;

    box-shadow:
        0 0 30px rgba(56, 189, 248, 0.25);
}


/* =========================
   SPECIALIZED SKILLS
========================= */

.skil_my {
    background: #111827;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #1e293b;
}

.skil_my button {
    margin: 5px;
}


/* =========================
   LANGUAGES
========================= */

.len_my {
    background: #111827;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #1e293b;
}

.len_my button {
    margin: 5px;
}


/* =========================
   SOFT SKILLS
========================= */

.saft_my {
    background: #111827;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #1e293b;
}

.saft_my p {
    display: inline-block;

    background: #172554;
    color: #cbd5e1;

    padding: 8px 15px;

    margin: 5px;

    border-radius: 20px;

    border: 1px solid #1e3a8a;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .info_my,
    .education_div,
    .cert_my,
    .proj_my,
    .con_my,
    .skil_my,
    .len_my,
    .saft_my {
        width: 94%;
        padding: 25px;
        margin: 25px auto;
    }

    .name_class {
        font-size: 38px;
    }

    .info_my .h1_my {
        font-size: 24px;
    }

    h3 {
        font-size: 16px;
    }

    .h1_my {
        font-size: 23px;
    }

    .con_my {
        overflow-x: auto;
    }

    .con_my table {
        min-width: 500px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .name_class {
        font-size: 30px;
        letter-spacing: 1px;
    }

    .info_my {
        padding: 60px 20px;
    }

    h3 {
        font-size: 15px;
    }

    .but_proj button,
    .skil_my button,
    .len_my button {
        font-size: 12px;
        padding: 7px 12px;
    }
}
.but_project{
        background: #172554;
    color: #38bdf8;
    border: 1px solid #0ea5e9;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.25s;

}
.h1_myy{
         color: #38bdf8;
    font-size: 28px;
    margin-bottom: 20px;
    border-left: 4px solid #38bdf8;
    padding-left: 12px;
}
  
