*{
    margin: 0;
    padding: 0;
}

body{
    background-color: black;
    color: white;
}

/* Nav Bar */

#nav_bar #Name_Logo{
    font-size: 64px;
}

#nav_bar #Name_Logo span{
    color: orangered;
}


#nav_bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#nav_bar ul{
    list-style: none;
    display: flex;
}

ul li{
    display: flex;
    margin-left: 50px;
}

#nav_bar ul li a{
    color: white;
    border-radius: 25px;
    font-size: 22px;
    margin: 25px;
}

#nav_bar ul li a:hover{
    color: orangered;
}

/* Home */

#Home{
    display: flex;
    margin-top: 80px;
}

#Welcome{
    margin-bottom: 20px;
    font-size: 32px;
}

#Name{
    margin-bottom: 20px;
    font-size: 64px;
}

#Name span{
    color: orangered;
}

#Describe_Work{
    font-size: 24px;
    margin-bottom: 18px;
    color: orangered;
}

#Home .Paraghraph{
    margin-bottom: 25px;
}

#conect_us{
    font-size: 15px;
    border-radius: 25px;
    background-color: orangered;
    width: 200px;
    padding: 10px;
    text-align: center;
}

#Left_side_article ul{
    display: flex;
    list-style: none;
    margin-top: 25px;
}

#Left_side_article ul li{
    margin-left: 20px;
    border-radius: 50%;
    background-color: orangered;
    font-size: 38px;
}

#Left_side_article ul li i{
    color: white;
}

.Right_side_article{
    width: 880px;
    height: 380px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg , #F97316 , #ea580c);
    box-shadow: 0 8px 30px rgba(249,115,22,0.4);
}

.Right_side_article img,
#Photo_setion_2 img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid #1a1a2e;
}

/* Part 2 */

#About{
    text-align: center;
    margin-top: 100px;
}

#Header_section_Home{
    font-size: 64px;
}

#Header_section_Home span{
    color: orangered;
}

#Photo_setion_2{
    width: 380px;
    height: 380px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg , #F97316 , #ea580c);
    box-shadow: 0 8px 30px rgba(249,115,22,0.4);
}

#Describe_Work_About_Me{
    margin: 20px 0;
    font-size: 32px;
}

#Hire_me{
    margin-top: 25px;
    display: inline-block;
    padding:14px 45px;
    background: linear-gradient(135deg,#F97316,#ea580c);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(249,115,22,0.4);
    letter-spacing: 0.5px;
}

#Hire_me:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(249,115,22,0.5);
}

#Hire_me a{
    color: white;
}

/* MY SKILLS */

#Header_Skills{
    margin-top: 100px;
    text-align: center;
    font-size: 64px;
}

#Header_Skills span{
    color: orangered;
}

#My_Skills{
    margin-bottom: 20px;
}

.Skill_Info{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.Skill_Name{
    color: #fff;
    font-size: 25px;
    font-weight: 600;
}

.Skill_Percent{
    color: #F97316;
    font-size: 14px;
    font-weight: 700;
}

.Skill_Bar{
    width: 100%;
    height: 20px;
    background-color: #2a2a3e;
    border-radius: 10px;
    overflow: hidden;
}

.Skill_Fill{
    height: 100%;
    background: linear-gradient(90deg,#F97316,#ea580c);
    border-radius: 10px;
}

/* My Services */

#My_Service_Sentence{
    text-align: center;
    margin-top: 100px;
    font-size: 64px;
}

#My_Service_Sentence span{
    color: orangered;
}

#My_Services{
    display: flex;
    justify-content: space-evenly;
}

#Left_Service,
#Center_Service,
#Right_Service{
    text-align: center;
    border: 5px double orangered;
    margin: 30px;
    width: 30%;
}

#Left_Service i,
#Center_Service i,
#Right_Service i{
    margin: 30px 0;
    border-radius: 50px;
    background-color: orangered;
    width: 50px;
}


/* ============================================ */
/* ========== Media Queries ========== */
/* ============================================ */

/* ===== 1024px (تبلت بزرگ) ===== */
@media (max-width: 1024px) {
    #nav_bar #Name_Logo {
        font-size: 48px;
    }

    #nav_bar ul li a {
        font-size: 18px;
        margin: 15px;
    }

    .Right_side_article {
        width: 600px;
        height: 280px;
    }

    #Home .Paraghraph {
        font-size: 14px;
    }

    #Photo_setion_2 {
        width: 300px;
        height: 300px;
    }
}

/* ===== 768px (تبلت) ===== */
@media (max-width: 768px) {
    /* ===== منو ===== */
    #nav_bar {
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
    }

    #nav_bar #Name_Logo {
        font-size: 36px;
        margin-bottom: 10px;
    }

    #nav_bar ul {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
    }

    ul li {
        margin-left: 10px;
    }

    #nav_bar ul li a {
        font-size: 16px;
        margin: 8px 12px;
    }

    /* ===== صفحه اصلی (Home) ===== */
    #Home {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
        padding: 0 15px;
    }

    #Left_side_article {
        text-align: center;
        order: 2;
    }

    .Right_side_article {
        width: 280px;
        height: 280px;
        margin-bottom: 30px;
        order: 1;
    }

    #Welcome {
        font-size: 28px;
    }

    #Name {
        font-size: 36px;
    }

    #Describe_Work {
        font-size: 20px;
    }

    #Home .Paraghraph {
        font-size: 14px;
        padding: 0 10px;
    }

    #conect_us {
        width: 160px;
        margin: 0 auto;
        font-size: 14px;
        padding: 8px;
    }

    #Left_side_article ul {
        justify-content: center;
    }

    #Left_side_article ul li {
        margin: 0 10px;
        font-size: 30px;
    }

    /* ===== درباره من ===== */
    #About {
        margin-top: 60px;
        padding: 0 15px;
    }

    #Header_section_Home {
        font-size: 40px;
    }

    #Photo_setion_2 {
        width: 220px;
        height: 220px;
    }

    #Describe_Work_About_Me {
        font-size: 24px;
    }

    #About .paraghraph {
        font-size: 14px;
        padding: 0 10px;
    }

    #Hire_me {
        padding: 12px 30px;
        font-size: 16px;
    }

    /* ===== مهارت‌ها ===== */
    #Header_Skills {
        font-size: 40px;
        margin-top: 60px;
    }

    .My_Skills {
        padding: 0 15px;
    }

    .Skill_Name {
        font-size: 18px;
    }

    .Skill_Percent {
        font-size: 13px;
    }

    .Skill_Bar {
        height: 14px;
    }

    /* ===== خدمات ===== */
    #My_Service_Sentence {
        font-size: 40px;
        margin-top: 60px;
    }

    #My_Services {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }

    #Left_Service,
    #Center_Service,
    #Right_Service {
        width: 80%;
        margin: 15px auto;
    }

    #Left_Service i,
    #Center_Service i,
    #Right_Service i {
        margin: 20px 0;
        width: 40px;
        font-size: 24px;
    }

    #Left_Service h2,
    #Center_Service h2,
    #Right_Service h2 {
        font-size: 18px;
    }
}

/* ===== 480px (موبایل بزرگ) ===== */
@media (max-width: 480px) {
    body {
        padding: 0 10px;
    }

    #nav_bar #Name_Logo {
        font-size: 28px;
    }

    #nav_bar ul li a {
        font-size: 14px;
        margin: 5px 8px;
    }

    .Right_side_article {
        width: 200px;
        height: 200px;
    }

    #Welcome {
        font-size: 22px;
    }

    #Name {
        font-size: 28px;
    }

    #Describe_Work {
        font-size: 17px;
    }

    #Home .Paraghraph {
        font-size: 13px;
    }

    #conect_us {
        width: 140px;
        font-size: 13px;
        padding: 6px;
    }

    #Left_side_article ul li {
        font-size: 24px;
        margin: 0 8px;
    }

    #Header_section_Home {
        font-size: 32px;
    }

    #Photo_setion_2 {
        width: 180px;height: 180px;
    }

    #Describe_Work_About_Me {
        font-size: 20px;
    }

    #About .paraghraph {
        font-size: 13px;
    }

    #Hire_me {
        padding: 10px 24px;
        font-size: 14px;
    }

    #Header_Skills {
        font-size: 32px;
        margin-top: 40px;
    }

    .Skill_Name {
        font-size: 16px;
    }

    .Skill_Percent {
        font-size: 12px;
    }

    .Skill_Bar {
        height: 12px;
    }

    #My_Service_Sentence {
        font-size: 32px;
        margin-top: 40px;
    }

    #Left_Service,
    #Center_Service,
    #Right_Service {
        width: 90%;
        margin: 10px auto;
        padding: 15px;
    }

    #Left_Service i,
    #Center_Service i,
    #Right_Service i {
        font-size: 20px;
        width: 35px;
        margin: 15px 0;
    }

    #Left_Service h2,
    #Center_Service h2,
    #Right_Service h2 {
        font-size: 16px;
    }
}

/* ===== 375px (موبایل متوسط) ===== */
@media (max-width: 375px) {
    #nav_bar #Name_Logo {
        font-size: 24px;
    }

    #nav_bar ul li a {
        font-size: 12px;
        margin: 4px 6px;
    }

    .Right_side_article {
        width: 170px;
        height: 170px;
    }

    #Welcome {
        font-size: 20px;
    }

    #Name {
        font-size: 24px;
    }

    #Describe_Work {
        font-size: 15px;
    }

    #Home .Paraghraph {
        font-size: 12px;
    }

    #Header_section_Home {
        font-size: 28px;
    }

    #Photo_setion_2 {
        width: 150px;
        height: 150px;
    }

    #Describe_Work_About_Me {
        font-size: 18px;
    }

    #Header_Skills {
        font-size: 28px;
    }

    .Skill_Name {
        font-size: 14px;
    }

    #My_Service_Sentence {
        font-size: 28px;
    }

    #Left_Service,
    #Center_Service,
    #Right_Service {
        width: 95%;
        margin: 8px auto;
        padding: 12px;
    }

    #Left_Service h2,
    #Center_Service h2,
    #Right_Service h2 {
        font-size: 14px;
    }
}

/* ===== 320px (موبایل خیلی کوچک) ===== */
@media (max-width: 320px) {
    #nav_bar #Name_Logo {
        font-size: 20px;
    }

    #nav_bar ul li a {
        font-size: 11px;
        margin: 3px 4px;
    }

    .Right_side_article {
        width: 140px;
        height: 140px;
    }

    #Welcome {
        font-size: 18px;
    }

    #Name {
        font-size: 20px;
    }

    #Describe_Work {
        font-size: 13px;
    }

    #Home .Paraghraph {
        font-size: 11px;
    }

    #conect_us {
        width: 120px;
        font-size: 12px;
    }

    #Header_section_Home {
        font-size: 24px;
    }

    #Photo_setion_2 {
        width: 130px;
        height: 130px;
    }

    #Describe_Work_About_Me {
        font-size: 16px;
    }

    #Header_Skills {
        font-size: 24px;
        margin-top: 30px;
    }

    .Skill_Name {
        font-size: 13px;
    }

    .Skill_Percent {
        font-size: 11px;
    }

    .Skill_Bar {
        height: 10px;
    }

    #My_Service_Sentence {
        font-size: 24px;
        margin-top: 30px;
    }

    #Left_Service,
    #Center_Service,
    #Right_Service {
        width: 100%;
        padding: 10px;
        margin: 6px auto;
    }

    #Left_Service i,
    #Center_Service i,
    #Right_Service i {
        font-size: 18px;
        width: 30px;
    }

    #Left_Service h2,
    #Center_Service h2,
    #Right_Service h2 {
        font-size: 13px;
    }
}