* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow-x: hidden; */
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 0.7rem;
}

::-webkit-scrollbar-track {
    background: var(--protrackcolor);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: #4a0fec;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    /* background: var(--hovercolor); */
    background: linear-gradient(#02059e, #ff03ab);
}

:root {
    --my-purple-color: #6e57e0;
    --my-name-color: #6e57e0;
    --firstcolor: #5921f3;
    --card-link-color: #5921f3;
    --hovercolor: #3203b6;
    --basecolor: #633fc7;
    --secondcolor: #847484;
    --element-color: white;
    --card-span-color: #8928d8;
    --listcolor: #404040;
    --protrackcolor: #c1b6fc;
    --text-color: rgb(77, 77, 77);
    --text-color-2: rgb(102, 102, 102);
    --redcolor: red;
    --bgcolor: #f7f7f7;
    --fontsize1: 48px;
    --fontsize2: 36px;
    --fontsize3: 24px;
    --fontsize4: 16px;
    --fontsize5: 14px;
    --fontsize6: 13px;
    --fontsize7: 20px;
    --fontsize8: 15px;
    --fontwt1: 600;
    --fontwt2: 500;
    --fontwt3: 400;
    --header-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.3);
    --footer-shadow: 0px -4px 9px 0px rgba(0, 0, 0, 0.3);
    --image-shadow: 0px 2px 16px 2px rgba(0, 0, 0, 0.3);
    --card-shadow: 4px 8px 8px 0px rgba(0, 0, 0, 0.6);
}

body {
    background-color: var(--bgcolor);
    transition: all 0.3s ease;
}

body.dark-mode {
    --card-link-color: hotpink;
    --bgcolor: #191627;
    --text-color: white;
    --text-color-2: #cdc9cd;
    --hovercolor: #a793f7;
    --firstcolor: #6e57e0;
    --element-color: #201b3a;
    --card-link-hover: #ff1493;
    --card-span-color: #00FFFF;
    --my-name-color: #00FFFF;
    --header-shadow: 0px 4px 9px 0px #00FFFF;
    --footer-shadow: 0px -4px 9px 0px #00FFFF;
    --image-shadow: 0px 0px 16px 1px #00FFFF;
    --card-shadow: 4px 8px 8px 0px #00FFFF;
}

.first-para {
    margin: 10px 0;
}

.fontmenu {
    color: var(--text-color);
    font-size: var(--fontsize5);
    font-weight: var(--fontwt2);
}

.fontsec {
    font-size: var(--fontsize4);
    font-weight: var(--fontwt3);
    color: var(--text-color-2);
}

.fonth1 {
    color: var(--text-color);
    font-size: var(--fontsize1);
    font-weight: 400;
}

.fonth1 span {
    color: var(--my-name-color);
    font-weight: 600;
}

.font_sub {
    font-size: var(--fontsize7);
    font-weight: var(--fontwt2);
    color: var(--text-color-2);
}

.head_subhead {
    line-height: 2.4rem;
}

header {
    position: fixed;
    height: 4rem;
    width: 100vw;
    background-color: var(--element-color);
    z-index: 3;
    box-shadow: var(--header-shadow);
}

.navbar {
    color: var(--text-color);
    background-color: var(--element-color);
    display: flex;
    width: 60rem;
    height: 4rem;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.navbar ul li {
    display: inline-block;
    list-style-type: none;
}

.theme-switch {
    cursor: pointer;
    margin-left: 1rem;
}

.menu ul li {
    margin: 1rem;
}

.nav-contact {
    margin: 0 !important;
}

.menu ul .fa-moon {
    color: var(--text-color);
    font-size: inherit;
}

.menu ul .fa-sun {
    color: var(--text-color);
    font-size: inherit;
    display: none;
}


.sec1 {
    /* background-color: aliceblue; */
    max-width: 60rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 7rem;
    margin-bottom: 10rem;
}

.sec2 {
    /* background-color: aliceblue; */
    max-width: 60rem;
    margin: auto;
    margin-bottom: 10rem;
}

.sec3 {
    /* background-color: aliceblue; */
    max-width: 60rem;
    margin: auto;
    margin-bottom: 10rem;
}

.main {
    width: 50%;
    padding: 2%;
}

.sec1 .sidesocials {
    width: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.navbar a,
.navbar a:visited,
.navbar a:active {
    text-decoration: none;
    color: var(--text-color);
}

.navbar a:hover {
    color: var(--hovercolor);
}


.sidesocials .fa-brands:visited,
.sidesocials .fa-brands:active,
.sidesocials .fa-brands {
    transform: scale(1.5);
    color: var(--my-purple-color);
    transition: all 0.1s ease;
}

.sidesocials .fa-brands:hover {
    transform: scale(1.9);
}

.rightimg {
    max-width: 17rem;
}

.rightimg img {
    width: 100%;
    border-radius: 75px 75px 140px 150px;
    box-shadow: var(--image-shadow)
}

.btn {
    padding: 16px 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: var(--basecolor);
    color: white;
    border: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn:hover {
    transform: scale(1.09);
    background-color: var(--firstcolor);
}

.maincont {
    margin-top: 1.5rem;
}

.maincont a {
    color: white;
    text-decoration: none;
}

.section_head {
    margin-top: 7rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10%;
}

.section_head>div:first-child {
    color: var(--text-color);
    font-size: var(--fontsize2);
    font-weight: var(--fontwt1);
}

.section_head>div:nth-child(2) {
    color: var(--text-color-2);
    font-size: var(--fontsize5);
    font-weight: var(--fontwt3);
}

.seccontainer {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
}

.sec2_img {
    /* background-color: #c1b6fc; */
    max-width: 17rem;
    text-align: center;
}

.seccontainer img {
    width: 85%;
    /* padding: 5%; */
    border-radius: 50%;
    box-shadow: var(--image-shadow);
}

.seccontdata {
    /* background-color: aqua; */
    font-size: var(--fontsize4);
    color: var(--text-color-2);
    width: 44%;
}

.secyearsprj {
    width: 75%;
    display: flex;
    height: 25%;
    padding-top: 2rem;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

.years {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.years>div:first-child,
.projects>div:first-child {
    font-size: var(--fontsize3);
    text-align: center;
    color: var(--text-color);
    font-weight: var(--fontwt1);
}

.years>div:nth-child(2),
.projects>div:nth-child(2) {
    text-align: center;
    font-size: var(--fontsize6);
    color: var(--text-color-2);
}

.resume {
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.skill_section {
    width: 81.5%;
    margin: auto;
    /* background-color: rgb(191, 253, 191); */
}

.skill_head {
    display: flex;
    /* justify-content: space-evenly; */
    align-items: center;
    width: 97%;
    padding: 0.5rem;
    margin: auto;
}

/* .web-dev-skill-section{
    height: 20px;
    transition: all 0.2s ease;
} */

.web-dev-skill-section.hidden,
.csec.hidden,
.da.hidden,
.fin.hidden {
    display: none;
    /* height: auto; */
}

.cyber_security:hover {
    background-color: var(--element-color);
}

.skills__arrow {
    font-size: 40px;
    color: var(--text-color);
    transition: all 0.2s ease;
}

.skills__arrow.rotate {
    transform: rotate(180deg);
}

.webdev {
    margin-bottom: 0.5rem;
    transition: all 0.15s ease;
    border-radius: 4px;
}

.skill_head .fa-code {
    font-size: 32px;
    color: var(--firstcolor);
}

.skill1 {
    line-height: 1.5rem;
}

.skill_head .skills__icon,
.skill_head .fa-shield-halved,
.skill_head .fa-chart-line,
.skill_head .fa-sack-dollar {
    font-size: 2rem;
    color: var(--firstcolor);
    margin-right: 0.7rem;
}

.skill1head {
    display: flex;
    background-color: yellowgreen;
}

.skill-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: yellow;
    flex-direction: column;
}

.skill_head .uil-angle-down {
    margin-left: auto;
}

/* #skills-section {
    /* background-color: yellow; */
/* } */

.skill1>div {
    display: block;
    font-size: var(--fontsize7);
    font-weight: var(--fontwt1);
    color: var(--text-color);
}

.front-end-icon {
    font-size: 2rem;
    color: var(--firstcolor);
    margin-right: 0.7rem;
}

.skill-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.skill-tags {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
    margin-top: 2rem;
    /* background-color: teal; */
}

.tag {
    width: 20%;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--my-name-color);
    border-radius: 10px;
    padding: 15px 0 5px 0;
}

.frontend-skill {
    color: var(--text-color);
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: var(--fontsize6);
}

.icon img {
    width: 60%;
}

.frontend {
    text-align: center;
    display: block;
    font-size: var(--fontsize7);
    font-weight: var(--fontwt1);
    color: var(--text-color);
}

.language_Percent>div {
    font-size: var(--fontsize4);
    font-weight: var(--fontwt1);
    color: var(--text-color);
}

.skill1 div:last-child,
.language_Percent div:last-child {
    font-size: var(--fontsize4);
    font-weight: var(--fontwt3);
    color: var(--text-color-2);
}

.skill_list {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    width: 90%;
    margin: auto;
}

.skill_list .fa-brands,
.fa-solid {
    font-size: 23px;
    color: var(--firstcolor);
    margin-right: 10px;
}

/* .language_Percent {
    width: 100%;
    display: flex;
    justify-content: space-between;
} */

.progress_track {
    /* display: inline; */
    width: 90%;
    height: 5px;
    margin: auto;
    background-color: var(--protrackcolor);
    border-radius: 3px;
    position: relative;
    top: 2px;
    margin-bottom: 2rem;
}

.progress_bar {
    /* width: 80%; */
    height: 5px;
    background-color: var(--firstcolor);
    border-radius: 3px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.skill_html_pb {
    width: 90%;
}

.skill_css_pb {
    width: 88%;
}

.skill_js_pb {
    width: 70%;
}

.skill_sql_pb {
    width: 62%;
}

.csec,
.da,
.fin {
    width: 90%;
    margin: auto;
    margin-bottom: 2rem;
}

.csec ul,
.da ul,
.fin ul {
    padding: 5px 26px;
}

.csec ul,
.da ul,
.fin ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* background-color: aqua; */
    padding: 0 3.5rem;
}

.csec .fa-circle {
    font-size: 10px;
}

.csec ul li,
.da ul li,
.fin ul li {
    font-size: var(--fontsize8);
    font-weight: var(--fontwt3);
    color: var(--text-color-2);
}


.separator {
    width: 0;
    height: 1px;
    background-color: black;
    margin: auto;
}

.sec4 {
    max-width: 60rem;
    /* background-color: aqua; */
    margin: auto;
    margin-bottom: 10rem;
}

.work_and_edu {
    width: 81.5%;
    display: flex;
    justify-content: space-between;
    margin: auto;
    /* background-color: bisque; */
}

.work {
    width: 50%;
    padding: 2%;
    /* background-color: #cfc7fd; */
}

.edu {
    width: 50%;
    padding: 2%;
    /* background-color: #ccfdc7; */
}

.wne_head {
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: var(--fontsize7);
    font-weight: var(--fontwt1);
}

.wne_box ul {
    margin-left: 1rem;
    padding: 0 2rem;
}

.wne_box ul li::marker {
    color: var(--text-color-2);
}

.wne_box ul li {
    margin-bottom: 1rem;
}

.wne_box ul li:last-child {
    margin-bottom: 0;
}

.line1 {
    font-size: var(--fontsize4);
    font-weight: var(--fontwt1);
    color: var(--text-color);
}

.line2_3 {
    flex-direction: column;
    font-size: var(--fontsize5);
    font-weight: var(--fontwt3);
    color: var(--text-color-2);
    display: flex;
    justify-content: space-between;
}

.edu_year .fa-calendar-days {
    margin-left: 20px;
}

.Edu_box {
    /* background-color: rgba(184, 141, 141, 0.39); */
    padding: 0 1rem;
}

.company_box {
    padding: 0 1rem;
    /* background-color: rgba(184, 141, 141, 0.39); */
}

.worknedu_separator {
    background-color: var(--secondcolor);
    width: 0.1rem;
    height: 13rem;
    margin: auto;
}

.sec5 {
    max-width: 60rem;
    /* background-color: rgb(196, 255, 214); */
    margin: auto;
    margin-bottom: 10rem;
}

/* .my_projects {
    width: 81.5%;
    margin: auto;
} */

.my_project_template {
    background-color: var(--element-color);
    border-radius: 3px;
    width: 35%;
    border-radius: 10px;
    box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.3);
    /* border: 1px solid var(--secondcolor); */
    transition: all 0.2s ease;
}

.my_project_template:hover {
    cursor: default;
    box-shadow: var(--card-shadow);
    transform: translateY(-5px);
}

.my_project_template img {
    border-radius: 9px 9px 0 0;
    width: 100%;
}

.project_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--fontsize4);
    font-weight: var(--fontwt1);
    margin-bottom: 2px;
    color: var(--text-color);
}

.project_title span {
    font-size: 12px;
    font-weight: var(--fontwt1);
    color: var(--card-span-color);
}

.project_description {
    font-size: var(--fontsize5);
    font-weight: var(--fontwt3);
    color: var(--text-color-2);
}

.my_projects {
    width: 81.5%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 2rem;
}

.my_projects img {
    width: 100%;
    object-fit: contain;
}

.project_box {
    width: 92%;
    margin: auto;
}

.project_box a {
    text-decoration: none;
    color: var(--card-link-color);
    font-size: var(--fontsize5);
    font-weight: var(--fontwt3);
    transition: all 0.2s ease;
}

.learn_more {
    margin-top: 1rem;
    color: var(--card-link-color);
}

.learn_more .fa-solid {
    color: var(--card-link-color);
    font-size: var(--fontsize6);
    padding: 0 2%;
}

.sec6 {
    /* background-color: rgb(183, 218, 248); */
    max-width: 60rem;
    margin: auto;
    margin-bottom: 10rem;
}

.contact_box {
    display: flex;
    width: 81.5%;
    margin: auto;
    /* background-color: aqua; */
}

.contact_box1 {
    padding: 0 6rem;
    display: flex;
    flex-direction: column;
    /* background-color: aquamarine; */
    width: 50%;
    gap: 2rem;
}

.number_mail_box1 {
    display: flex;
    align-items: center;
}

.contact_box1 .number_mail {
    display: flex;
}

.number_mail_box2 .number_mail_sub_box1 {
    font-size: var(--fontsize7);
    font-weight: var(--fontwt2);
    color: var(--text-color);
}

.number_mail_box2 .number_mail_sub_box2 {
    font-size: var(--fontsize5);
    font-weight: var(--fontwt3);
    color: var(--text-color-2);
}

.contact_box2 {
    /* background-color: rgb(232, 255, 222); */
    width: 50%;
}

.form_box form {
    text-align: center;
    line-height: 3rem;
}

.form_box form .form_element input {
    background-color: var(--element-color);
    border-radius: 3px;
    padding: 0.5rem 1.5rem;
    border: none;
}

.form_box form .form_element input::placeholder {
    font-size: var(--fontsize5);
    font-weight: var(--fontwt3);
    color: var(--text-color);
    opacity: 0.8;
}

.contact_box2 .form_box input[type="submit"] {
    background-color: var(--firstcolor);
    color: white;
    border: none;
    padding: 2% 4%;
    margin-top: 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.contact_box2 .form_box input[type="submit"]:hover {
    background-color: var(--hovercolor);
    cursor: pointer;
    transform: scale(1.05);
}

footer {
    height: 15rem;
    /* width: 100vw; */
    background-color: var(--firstcolor);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--footer-shadow)
}

.foot {
    display: flex;
    justify-content: space-evenly;
    width: 60rem;
    /* background-color: rgb(187, 124, 7); */
    margin: auto;
}

.footh_name {
    font-size: var(--fontsize2);
    font-weight: var(--fontwt1);
}

.footh_name .foot_sub {
    font-size: var(--fontsize7);
    font-weight: var(--fontwt2);
}

.foot_nav a {
    text-decoration: none;
    padding: 0 1rem;
    color: white;
}

.foot_nav a:hover,
.foot_socials a:hover i {
    color: #b8b8b8;
}

.foot_socials {
    height: 0;
    display: flex;
    gap: 1rem;
}

.foot_socials .fa-brands {
    font-size: 22px;
    color: white;
}

.workbox-arrow,
.edu-box-arrow {
    display: none;
}

.work-box,
.edu-box-sec {
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-box-arrow,
.edubox-arrow {
    display: none;
}

.project-container {
    width: 81.5%;
    background-color: rgb(255, 255, 255);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.3);
    /* border: 1px solid var(--secondcolor); */
    transition: all 0.2s ease
}
.project-container:hover{
    scale: 1.01;
    cursor: default;
    box-shadow: var(--card-shadow);
    transform: translateY(-5px);
}

.project-thumbnail {
    width: 50%;
    /* background-color: rgb(131, 131, 0); */
    height: 100%;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
}

.project-thumbnail img {
    object-fit: cover;
    height: 100%;
}

.project-description-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    height: 100%;
    background-color: var(--element-color);
    border-radius: 0 10px 10px 0;
    padding: 10px;
}

.project-title {
    font-size: var(--fontsize4);
    font-weight: var(--fontwt1);
    color: var(--text-color);
}

.project-tags {
    cursor: default;
    border: 1px solid var(--text-color-2);
    border-radius: 10px;
    padding: 1px 5px;
    font-size: 12px;
    font-weight: var(--fontwt1);
    color: var(--text-color-2);
}

.project-desc p {
    margin-top: 8px;
    font-size: var(--fontsize5);
    font-weight: var(--fontwt3);
    color: var(--text-color-2);
}

.project-links {
    width: 80%;
    font-size: var(--fontsize5);
    margin-inline: auto;
    margin-top: 10px;
    /* background-color: rgba(0, 128, 0, 0.253); */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.project-link-icon{
    font-size: var(--fontsize5);
    color: var(--card-link-color);
}
.fa-github, .fa-link{
    margin-right: 3px;
}

.project-link-btn a {
    text-decoration: none;
    color: var(--card-link-color);
}
.project-link-btn {
    text-decoration: none;
    border: none;
    background: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.project-links button::before,
.mini-project-links button::before {
    margin-left: auto;
}

.project-links button::after,
.project-links button::before,
.mini-project-links button::after,
.mini-project-links button::before {
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    transition: 0.5s;
}

.project-links button:hover::after,
.project-links button:hover::before,
.mini-project-links button:hover::after,
.mini-project-links button:hover::before {
    width: 100%;
}

.skill-tag-label{
    color: var(--text-color);
    margin-top: 7px;
    font-weight: 600;
}

.mini-projects{
    width: 81.5%;
    margin: auto;
    /* background-color: pink; */
}
.mini-projects h4{
    text-align: center;
    font-size: var(--fontsize7);
    font-weight: var(--fontwt1);
    color: var(--text-color);
}
.mini-project-links ul{
    /* background-color: pink; */
    width: 90%;
    margin: auto;
    margin-top: 12px;
}
.mini-project-links ul li {
    width: 100%;
    /* background-color: pink; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mini-project-links p {
    font-size: var(--fontsize4);
    font-weight: var(--fontwt3);
    color: var(--text-color-2);
    text-decoration: none;
    margin-top: 10px;
}
.hamburger{
    display: none;
}
/* responsiveness */
@media(max-width: 1000px) {

    .hamburger{
        display: block;
    }

    .work-box-arrow,
    .edubox-arrow {
        display: block;
    }

    .sec1,
    .sec2,
    .sec3,
    .sec4,
    .sec5,
    .sec6 {
        margin: 0;
    }

    .Edu_box {
        display: inline;
    }

    .Edu_box.hide-edu-box {
        display: none;
    }

    .workbox-arrow,
    .edu-box-arrow {
        color: var(--text-color);
        display: inline;
        font-size: 14px !important;
        transition: all 0.2s ease;
    }

    .workbox-arrow.rotate-up {
        transform: rotate(180deg);
    }


    .edu-box-arrow.rotate-up {
        transform: rotate(180deg);
    }

    .company_box.hide-edu-box {
        display: none;
    }

    .company_box {
        display: inline;
    }

    .work-box,
    .edu-box-sec {
        justify-content: space-between;
        align-items: baseline;
    }


    .sec1 {
        font-size: 1.5rem;
        padding: 0 2rem;
        margin: 7rem 1rem 0 1rem;
        width: 81.5%;
        margin-inline: auto;
        display: grid;
        /* grid-template-columns: 1fr; */
    }

    .fonth1 {
        font-size: 35px;
        font-weight: 400;
    }

    .font_sub {
        font-size: 16px;
        font-weight: 600;
    }

    .fontsec {
        font-size: 14px;
        font-weight: 400;
        width: 20rem;
    }

    .sidesocials {
        width: auto;
        display: grid;
        justify-content: center;
    }

    .rightimg {
        padding-top: 1.5rem;
        display: grid;
        grid-column: 2/3;
        grid-row: 1/2;
    }

    .main {
        position: relative;
        left: -1.3rem;
        top: -1rem;
        width: auto;
        display: grid;
        grid-column: 1 / 3;
    }

    .seccontainer {
        max-width: 81.5%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .seccontdata {
        width: 80%;
        /* background-color: aqua; */
        font-size: 15px;
        font-weight: 400;
        color: var(--secondcolor);
        display: flex;
        flex-direction: column;
    }

    .years>div:nth-child(2),
    .projects>div:nth-child(2) {
        font-size: 13px;
    }

    .section_head>div:first-child {
        font-size: 32px;
    }

    .section_head>div:nth-child(2) {
        font-size: 18px;
    }

    .skill1>div {
        font-size: 18px;
    }

    .skill1 div:last-child,
    .language_Percent div:last-child {
        font-size: 15px;
    }

    .skill_head .skills__icon,
    .skill_head .fa-shield-halved,
    .skill_head .fa-chart-line,
    .skill_head .fa-sack-dollar {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }

    .language_Percent>div {
        font-size: 15px;
        font-weight: 600;
    }

    .skill_list .fa-brands,
    .fa-solid {
        font-size: 21px;
    }

    .csec ul,
    .da ul,
    .fin ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px 18px;
        padding: 0 11px;
    }

    .work_and_edu {
        display: flex;
        flex-direction: column;
    }

    .worknedu_separator {
        display: none;
        width: 13rem;
        height: 1px;
        margin: 2rem auto;
    }

    .wne_head {
        text-align: start;
    }

    .work,
    .edu {
        width: 100%;
    }

    .line1 {
        font-size: 18px;
    }

    .line2_3 {
        flex-direction: column;
        font-size: 15px;
    }

    .my_project_template {
        height: 9rem;
        display: flex;
        border-radius: 3px;
        min-width: 95%;
        border-radius: 10px;
        border: 1px solid var(--secondcolor);
    }

    .my_project_template img {
        border-radius: 9px 0 0 9px;
        /* width: 52%; */
        width: 10rem;
        margin-right: 1rem;
        height: 100%;
        object-fit: cover;
    }

    /* .my_project_template a,
    .my_project_template a:visited {
        text-decoration-line: none;
        color: black;
    } */

    .project_box {
        height: 60%;
        display: flex;
        /* background-color: aqua; */
        flex-direction: column;
        justify-content: space-evenly;
    }

    .learn_more .fa-solid {
        padding-left: 2%;
    }

    .project_description {
        display: none;
    }

    .project_title {
        display: block;
        font-size: 18px;
        font-weight: 600;
    }

    .learn_more {
        margin: 0;
    }

    .contact_box {
        flex-wrap: wrap;
    }

    .contact_box1 {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
        padding: 0;
    }

    .contact_box2 {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
    }

    .number_mail_box2 .number_mail_sub_box1 {
        font-size: 16px;
    }

    .number_mail_box2 .number_mail_sub_box2 {
        font-size: 14px;
    }

    .foot {
        flex-direction: column;
        padding: 0 2rem;
    }

    .footh_name {
        font-size: 32px !important;
        font-weight: 400 !important;
        margin-bottom: 2rem;
    }

    .name1,
    .name2 {
        display: inline;
    }

    .foot_sub {
        font-size: 14px !important;
        font-weight: 300 !important;
    }

    .foot_nav a {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .foot_socials {
        gap: 2rem;
        margin-top: 2rem;
    }

    footer {
        height: 20.5rem;
    }

    .navbar {
        gap: 1rem;
        width: 90%;
        padding: 4px 0;
        /* background-color: aqua; */
        margin: auto;
        /* justify-content: center; */
    }

    .navbar a:active,
    .navbar a:visited {
        color: var(--text-color);
    }

    .logo {
        font-size: 22px;
        font-weight: 600;
    }

    .menu {
        /* display: none; */
        font-size: 15px;
        /* background-color: bisque; */
        width: 35%;
    }

    .menu ul {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        font-size: 12px;
        line-height: 0;
        /* place-items: center; */
    }

    .menu ul a:nth-child(1),
    .menu ul a:nth-child(2),
    .menu ul a:nth-child(3),
    .menu ul a:nth-child(4),
    .menu ul a:nth-child(5),
    .menu ul a:nth-child(6) {
        display: none;
    }

    .menu ul a:nth-child(7) {
        font-size: 21px;
        position: absolute;
        right: 24px;
        top: 22px;
    }

    .menu ul a:nth-child(8) {
        font-size: 26px;
        position: absolute;
        right: 0;
        top: 31px;
        color: var(--text-color);
    }

    .skill_head .uil-angle-down {
        font-size: 22px;
    }

    .fa-link, .project-desc p, .project-tags {
        font-size: 10px;
    }
}

@media(max-width: 650px) {
    .navbar {
        justify-content: space-between;
        align-items: center;
    }
    .tag {
        flex: 100px;
        flex-grow: inherit;
    }
    
}
@media(max-width: 570px) {
    .mini-project-links p, .project-link-btn a{
        font-size: 12px;
    }
    .mini-project-links span{
        font-size: 8px;
    }
}
@media(max-width: 420px) {
    .mini-project-links p, .project-link-btn a{
        font-size: 10px;
    }
    .mini-project-links span{
        font-size: 8px;
    }
}

@media(max-width: 730px) {
    .tag {
        padding: 10px;
        flex-wrap: wrap;
    }
    .project-container{
        border-radius: 12px;
        flex-direction: column;
        width: 250px;
        overflow: hidden;
    }
    .project-thumbnail{
        width: 100%;
        border-radius: 10px 10px 0 0;
    }
    .project-description-box{
        width: 100%;
        border-radius: 0 0 10px 10px;
    }
    .project-thumbnail img {
        border-radius: 10px 10px 0 0;
    }

    .icon {
        text-align: center;
        font-size: 8px;
    }

    .frontend-skill {
        text-align: center;
    }
    .skill-tag-label{
        font-size: 12px;
    }
}