* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    /* background-color: #313030; */
    background-color: #111;
}

/* Navigation Styles */
.div_of_navbar {
    border: 2px solid rgb(0, 255, 0);
    /* box-shadow: 1px 1px 5px rgb(0, 255, 0); */
    border-radius: 50px;
    width: min(30vw, 500px);
    max-width: 90vw;
    margin: 20px auto;
}

.unorder_list_navbar {
    display: flex;
    justify-content: center;
    border-radius: 50px;
    gap: clamp(10px, 2vw, 15px);
    padding: 0;
    margin: 0;
    list-style: none;
}

.list_item {
    color: white;
    font-family: monospace;
    font-size: clamp(12px, 1.3vw, 18px);
    padding: 10px 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.list_item:hover {
    color: orange;
}

/* Profile Photo */
.my_photo_box {
    height: clamp(150px, 25vw, 250px);
    width: clamp(150px, 25vw, 250px);
    border-radius: 50%;
    margin: 50px auto;
    border: 2px solid white;
    /* box-shadow: 1px 1px 25px orange; */
    /* background: linear-gradient(45deg, #ff6b00, #ff8f33); */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* font-size: clamp(48px, 8vw, 80px); */
    /* color: white; */
    /* font-family: "Poppins", sans-serif; */
    /* font-weight: 800; */
}

.my_photo_box img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 5px solid black;
    object-fit: cover;
}

/* About Me Section */
.About_me_section {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.About_me_section .Hey_there {
    color: silver;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
    text-align: center;
    font-size: clamp(18px, 4vw, 25px);
    letter-spacing: 2px;
}

.About_me_section .my_name {
    color: rgb(232, 228, 228);
    font-weight: 800;
    font-family: "Poppins", sans-serif;
    text-align: center;
    font-size: clamp(24px, 5vw, 30px);
    letter-spacing: 2px;
    margin: 10px 0;
}

.About_me_section .role {
    color: silver;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-align: center;
    font-size: clamp(18px, 4vw, 25px);
    letter-spacing: 2px;
}

.About_me_section .what_i_like {
    color: white;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    text-align: center;
    font-size: clamp(14px, 3vw, 16px);
    margin: 15px 0;
}

.About_me_section .my_location {
    padding: 5px;
    color: silver;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    text-align: center;
    font-size: clamp(14px, 3vw, 16px);
}

/* Media Icons */
.Media_box {
    display: flex;
    justify-content: center;
    gap: clamp(15px, 4vw, 25px);
    width: 100%;
    margin: 30px auto;
    /* background-color: red; */
}

.Media_box a {
    color: white;
    font-size: clamp(24px, 5vw, 32px);
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.Media_box a:hover {
    color: rgb(0, 255, 0);
    transform: translateY(-3px);
}

/* Projects Section */
.project_section {
    width: min(90%, 1200px);
    margin: 50px auto;
    padding: 0 20px;
    /* background-color: red; */
}

.project_section .project_heading {
    padding: 20px 0;
    color: white;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 5vw, 32px);
}

.project_boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    /* background-color: lightyellow; */
}

.project_box_1,
.project_box_2 {
    height: auto;
    min-height: 490px;
    width: min(330px, 100%);
    border-radius: 10px;
    /* box-shadow: 1px 1px 4px orange; */
    border: 2px solid white;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .project_box_1:hover,
.project_box_2:hover {
    transform: translateY(-5px);
    box-shadow: 2px 8px 15px rgba(255, 165, 0, 0.3);
} */

.image_box_1,
.image_box_2 {
    height: 250px;
    width: 100%;
    border: 2px solid white;
    border-radius: 10px;
    background-color: white;
    /* background-image: url(https://my-portfolio-two-psi-75.vercel.app/_next/image?url=%2Fdrag%26drop.png&w=3840&q=75); */
    background-size: cover;
    background-repeat: no-repeat;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* color: white; */
    /* font-size: 18px; */
    /* font-family: "Poppins", sans-serif; */
    /* text-align: center; */
}

.project_name_1,
.project_name_2 {
    color: white;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    padding: 15px 0 5px 0;
    font-size: clamp(16px, 3vw, 18px);
}

.project_discription_1,
.project_discription_2 {
    color: rgb(149, 146, 146);
    font-weight: 300;
    font-family: "Poppins", sans-serif;
    padding: 5px 0 20px 0;
    font-size: clamp(12px, 2.5vw, 13px);
    line-height: 1.4;
}

.projevt_Demo_button_1,
.projevt_Demo_button_2,
.check_the_code_1,
.check_the_code_2 {
    display: inline-block;
    font-size: clamp(12px, 2.5vw, 14px);
    font-weight: 300;
    text-decoration: none;
    color: white;
    font-family: "Poppins", sans-serif;
    border: 1px solid white;
    padding: 8px 15px;
    border-radius: 25px;
    margin: 5px 10px 5px 0;
    transition: all 0.3s ease;
}

.projevt_Demo_button_1:hover,
.projevt_Demo_button_2:hover,
.check_the_code_1:hover,
.check_the_code_2:hover {
    background-color: rgb(0, 255, 0);
    border-color: rgb(0, 255, 0);
    color: black;
}

/* Tech Stack Section */
.Tech_stack_box {
    width: min(90%, 1200px);
    margin: 80px auto 50px;
    padding: 0 20px;
    /* background-color: red; */
}

.Tech_stack_box .Tech_stack_heading {
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.Tech_stack_box .skill_icon_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border: 2px solid white;
    height: auto;
    min-height: 300px;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    padding: 20px;
    transition: 0.3s ease;
}

.Tech_stack_box .skill_icon_box:hover {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.skill_icon_box .tech_item {
    height: 60px;
    width: 60px;
    margin: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    /* border: 1px solid white; */
    /* box-shadow: 0px 0px 15px white; */
    border-radius: 50%;
}

/* .skill_icon_box .tech_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgb(0, 140, 255);
} */

/*  */

/* Contact Section */
.contact_section {
    width: min(90%, 1200px);
    margin: 80px auto 0;
    padding: 40px 20px;
    /* background: rgba(255, 255, 255, 0.05); */
    background-color: transparent;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 165, 0, 0.2); */
    /* border: 1px solid white; */
}

.contact_heading {
    /* color: rgb(0, 255, 0); */
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.contact_text {
    color: silver;
    font-family: "Poppins", sans-serif;
    font-size: clamp(14px, 3vw, 16px);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact_buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    /* background-color: red; */
}

.contact_buttons a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    /* background: linear-gradient(45deg, #ff6b00, #ff8f33); */
    /* border: 2px solid white; */
    /* color: black; */
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact_buttons a:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4); */
    background-color: orange;
    border-color: orange;
    color: black;
}

/* Footer */
footer {
    margin-top: 60px;
    padding: 30px 20px;
    text-align: center;
    /* border-top: 1px solid white; */
}

.footer_text {
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .div_of_navbar {
        width: 90vw;
    }

    .unorder_list_navbar {
        gap: 10px;
    }

    .list_item {
        padding: 8px 12px;
        font-size: 14px;
    }

    .project_boxes {
        flex-direction: column;
        align-items: center;
    }

    .project_box_1,
    .project_box_2 {
        width: 100%;
        max-width: 400px;
    }

    .About_me_section .my_name {
        margin: 15px 0;
    }

    .Media_box {
        margin: 40px auto;
    }

    .project_section {
        margin: 30px auto;
    }

    .Tech_stack_box {
        margin: 50px auto 0;
    }

    .contact_buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .my_photo_box {
        height: 200px;
        width: 200px;
        margin: 30px auto;
    }

    .About_me_section {
        padding: 0 15px;
    }

    .project_section,
    .Tech_stack_box {
        padding: 0 15px;
    }

    .projevt_Demo_button_1,
    .projevt_Demo_button_2,
    .check_the_code_1,
    .check_the_code_2 {
        padding: 6px 12px;
        margin: 3px 5px 3px 0;
    }

    .image_box_1,
    .image_box_2 {
        height: 200px;
    }

    .project_discription_1 br,
    .project_discription_2 br {
        display: none;
    }
}

/* Extra small screens */
@media (max-width: 320px) {
    .div_of_navbar {
        width: 95vw;
    }

    .list_item {
        font-size: 12px;
        padding: 6px 8px;
    }

    .my_photo_box {
        height: 150px;
        width: 150px;
    }
}