body {
    margin: 1px 8px;
    padding: 0;
    background: linear-gradient(145deg, rgb(12, 53, 17), rgb(53, 12, 17), rgb(17, 12, 17));
}

.full_body {
    height: 100%;
}

.pacifico-regular {
    font-family: "Pacifico";
    font-weight: 400;
    font-style: normal;
}

.header_nav {
    color: antiquewhite;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 400px;
    padding: 0 80px;

    position: fixed;
    left: 50%;
    transform: translateX(-50%);

    width: calc(100% - 160px);
    max-width: 1350px;
    z-index: 1000;

    border-radius: 15px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}


.nav {
    display: flex;
    justify-content: space-evenly;

}

.nav a {
    color: antiquewhite;
    text-decoration: none;
}

.nav a:hover {
    color: rgb(70, 226, 70);
    filter: drop-shadow(0 0 5px lightgreen);
}

.container {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px;
    top: 80px;
    margin-bottom: 100px;
}

.content {
    width: 50%;
}

.content1 h1 {
    font-family: 'Times New Roman', Times, serif;
    margin: 30px 0 0;
    font-size: 50px;
    color: antiquewhite;
}

.content1 h2 {
    font-family: "Protest Revolution";
    color: antiquewhite;
    font-weight: 10;
    font-size: 25px;
    margin: 10px 0 20px;

}

.content1 span {
    font-family: "Rampart One";
    font-weight: 10;
    font-size: 25px;
    color: rgb(70, 226, 70);
}

.content1 p {
    color: lightskyblue;
}

.content2 {
    display: flex;
    gap: 20px;
    align-items: center;
}

.content2 button {
    color: rgb(0, 0, 0);
    border-radius: 30px;
    height: 35px;
    width: 130px;
    background-color: rgb(70, 226, 70);
    border: none;
    filter: drop-shadow(0 0 5px lightgreen);
    transition: 0.5s ease;
}

.content2 i {
    padding: 10px;
    font-size: 18px;
    border-radius: 50%;
    color: rgb(70, 226, 70);
    border: 2px solid rgb(70, 226, 70);
    transition: 0.5s ease;
}

.content2 button:hover {
    color: darkgreen;
    filter: drop-shadow(0 0 8px rgb(0, 0, 0));
}

.content2 i:hover {
    color: darkgreen;
    filter: drop-shadow(0 0 3px rgb(255, 251, 36));
}

.img {
    display: flex;
    margin: 0 90px 20px 0px;
    justify-content: center;
    align-items: center;
    width: 363px;
    height: 363px;
    background: linear-gradient(0deg, green, rgb(255, 255, 255), orange);
    border-radius: 50%;
    animation: lod 5s infinite linear;
    filter: drop-shadow(0 0 10px rgb(233, 218, 16));
}

.img img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    animation: fiximg 5s infinite linear;
    object-fit: cover;

}

@keyframes lod {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fiximg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

#skills {
    padding: 80px 0 100px;
}

#skills h2 {
    font-family: "Shrikhand";
    font-weight: 500;
    color: white;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 30px;
}

.my_skills {
    display: flex;
    align-items: center;
    color: wheat;
    flex-direction: column;
    text-align: center;
    padding: 10px 0 25px;
}

.my_skills h3 {
    color: #fff;
}

.my_skills p {
    width: 70%;
    margin: 0 0 16px;
}

.skills-circle {
    width: 550px;
    height: 550px;
    margin: 40px auto;
    position: relative;
    border-radius: 50%;
    border: 5px solid transparent;
    background: linear-gradient(#000, #000) padding-box,
        linear-gradient(45deg, red, yellow, lime, cyan, blue, magenta) border-box;
}

.skill {
    position: absolute;
    text-align: center;
    color: white;
    top: 50%;
    left: 50%;
    transition: 0.4s;
}

.skill_range {
    position: absolute;
    text-align: center;
    color: white;
    top: 50%;
    left: 50%;

}

.skill img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #111;
    padding: 2px;
}

.skill:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px white);
    z-index: 100;
}

.skill:nth-child(1) {
    top: -30px;
    left: 235px;
}

.skill:nth-child(2) {
    top: 60px;
    left: 420px;
}

.skill:nth-child(3) {
    top: 230px;
    left: 482px;
}

.skill:nth-child(4) {
    top: 395px;
    left: 415px;
}

.skill:nth-child(5) {
    top: 495px;
    left: 245px;
}

.skill:nth-child(6) {
    top: 395px;
    left: 60px;
}

.skill:nth-child(7) {
    top: 230px;
    left: -30px;
}

.skill:nth-child(8) {
    top: 60px;
    left: 60px;
}

.skill_range:nth-child(9) {
    top: 205px;
    left: 213px;
    border-radius: 50%;
}

.circle-progress {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: white;
    background: conic-gradient(#222 0% 100%);
}

.circle-progress::before {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: #000;
}

.circle-progress span {
    position: relative;
    z-index: 2;
}

.skill_range_hide {
    display: none;
}

#project_container {
    padding: 80px 0 100px;
}

#project_container h2 {
    font-family: "Shrikhand";
    font-weight: 500;
    color: white;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 30px;
}

.project {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 30px;
    justify-items: center;
}

.card {
    height: 300px;
    width: 200px;
    border: 2px solid wheat;
    border-radius: 10px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    overflow: scroll;
    scrollbar-width: none;
    transition: 1s linear;
}

.size {
    height: 380px;
    width: 240px;
    transition: 1s linear;
}

.imgs {
    height: 200px;
    width: 180px;
    padding: 5px 0 0 10px;
    text-align: center;
    overflow: hidden;
}

.imgs_hide {
    display: none;
}

.imgs img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.card p {
    padding: 5px 10px;
    text-align: center;
    color: white;
}

.card p a {
    color: red;
}

.card i {
    color: white;
    position: relative;
    left: 43%;
    border: 2px solid white;
    border-radius: 50%;
    padding: 5px;
}

.card i:hover {
    color: rgb(189, 4, 90);
    filter: drop-shadow(0 0 3px rgb(255, 251, 36));
    font-weight: 20px;
    transform: scale(1.1);
    transition: all 0.5s linear;
}

.service {
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 100px 0;
}

.service_head {
    background: rgba(255, 166, 0, 0.592);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 60px rgba(129, 129, 129, 0.7);
    padding: 3px;
    border-radius: 60px;
}

.service_head h2 {
    font-family: "Shrikhand";
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 30px;
    margin: 10px;
}

.service_head p {
    margin: 5px 0 16px;
}

.service_head a {
    text-decoration: none;
    color: wheat;
}

.service_head a:hover {
    color: rgb(0, 0, 136);
    text-decoration: underline;
}

.my_service {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.my_service_inner {
    width: 70%;
}

.my_service_inner p {
    color: wheat;
}

.service_main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.single_service {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.single_service:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.single_service span {
    font-size: 40px;
    color: #ff6b00;
    margin-bottom: 15px;
    display: inline-block;
}

.single_service h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.single_service p {
    font-size: 14px;
    color: #c5bcbc;
    line-height: 1.6;
}


.footer {
    display: block;
    position: relative;
    margin-top: 25px;
    padding: 15px 25px;
    bottom: 0;
    text-align: center;
    align-items: center;
    color: #fff;
    font-size: 17px;
    opacity: 0.8;
}

.footer span {
    color: #00ffd5;
    font-weight: 600;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 30px;
}

.contact_us {
    display: grid;
    grid-template-rows: 1fr;
    padding: 20px;
}

.contact_us h2 {
    font-size: 35px;
    margin-bottom: 20px;
    color: antiquewhite;
}

.contact_us p {
    padding-left: 20px;
    margin: 0 0 25px;
    color: lightskyblue;
}

.contact_us a {
    line-height: 2.5;
    color: white;
    text-decoration: none;
}

.contact_us i {
    margin-right: 5px;
    color: rgb(70, 226, 70);
    font-size: 20px;
}

.contact_us a:hover {
    text-decoration: underline wavy rgb(70, 226, 70);
}

.form {
    background: #ffffff;
    width: 500px;
    height: 600px;
    max-width: 600px;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 10px 10px 60px rgba(0, 0, 0, 0.7);
}

.form h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.form h4 {
    color: #666;
    margin-bottom: 30px;
    font-size: 20px;
}

.form_row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form_group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form_group label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #444;
}

.form_group input,
.form_group select,
.form_group textarea {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
}

.form_group textarea {
    resize: none;
}

.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {
    border-color: #5b4b7a;
}

.form button {
    background: #5b4b7a;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.form button:hover {
    background: #473864;
}

/* responsiveness */
@media (max-width: 992px) {
    .container {
        flex-direction: column-reverse;
        top: 80px;
        padding: 20px;
        text-align: center;
        margin: 0;
    }

    .content {
        width: 100%;
    }

    .content2 {
        justify-content: center;
        margin: 25px 0;
    }

    .img {
        margin: 20px;
    }

    .contact {
        flex-direction: column;
    }

    .form {
        margin-top: 10px;
    }
}

@media (max-width: 900px) {
    .service_main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .header_nav {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 60px 20px;
    }

    .container {
        top: 100px;
    }

    .nav {
        justify-content: center;
        gap: 25px;
    }

    .form_row {
        flex-direction: column;
    }

    .form {
        height: 740px;
    }

    .form_group textarea {
        height: 50px;
    }
}

@media (max-width: 715px) {
    .header_nav {
        padding: 0 60px 20px;
    }

    .img {
        width: 300px;
        height: 300px;
    }

    .img img {
        width: 285px;
        height: 285px;
    }
}

@media (max-width: 645px) {
    .skills-circle {
        width: 400px;
        height: 400px;
    }

    .skill img {
        width: 60px;
        height: 60px;
    }

    .skill:nth-child(1) {
        top: -30px;
        left: 165px;
    }

    .skill:nth-child(2) {
        top: 30px;
        left: 294px;
    }

    .skill:nth-child(3) {
        top: 155px;
        left: 370px;
    }

    .skill:nth-child(4) {
        top: 307px;
        left: 313px;
    }

    .skill:nth-child(5) {
        top: 371px;
        left: 175px;
    }

    .skill:nth-child(6) {
        top: 309px;
        left: 28px;
    }

    .skill:nth-child(7) {
        top: 158px;
        left: -57px;
    }

    .skill:nth-child(8) {
        top: 30px;
        left: 29px;
    }

    .skill_range:nth-child(9) {
        top: 137px;
        left: 146px;
        border-radius: 50%;
    }

    .circle-progress {
        width: 115px;
        height: 115px;
    }
}

@media (max-width: 600px) {
    .header_nav {
        padding: 0 60px 20px;
    }

    body {
        margin: 0;
    }

    .header_nav h2 {
        font-size: 24px;
    }

    .nav {
        flex-wrap: wrap;
        gap: 20px;
    }

    .nav a {
        font-size: 16px;
    }

    .content1 h1 {
        font-size: 36px;
    }

    .content1 h2,
    .content1 span {
        font-size: 20px;
    }

    .content1 p {
        font-size: 14px;
    }

    .content2 button {
        width: 120px;
        height: 34px;
        font-size: 14px;
    }

    .content2 i {
        font-size: 16px;
        padding: 8px;
    }

    .img {
        width: 240px;
        height: 240px;
    }

    .img img {
        width: 225px;
        height: 225px;
    }

    .service_main {
        grid-template-columns: 1fr;
    }

    .form {
        width: 350px;
    }

    .footer {
        font-size: 14px;
        padding: 10px;
    }
}

.menu_icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 545px) {

    .header_nav {
        grid-template-columns: 1fr auto;
        padding: 0 70px;
    }

    .menu_icon {
        display: block;
        color: white;
    }

    .nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        width: 200px;
        border-radius: 10px;
        display: none;
        flex-direction: column;
        padding: 15px;
    }

    .nav a {
        display: block;
        padding: 10px 0;
    }

    .nav.active {
        display: flex;
    }
}

@media (max-width: 520px) {
    .skills-circle {
        width: 250px;
        height: 280px;
    }

    .skill img {
        width: 45px;
        height: 45px;
    }

    .skill p {
        font-size: 10px;
        margin: 5px 0;
    }

    .skill:nth-child(1) {
        top: -30px;
        left: 103px;
    }

    .skill:nth-child(2) {
        top: 13px;
        left: 171px;
    }

    .skill:nth-child(3) {
        top: 110px;
        left: 229px;
    }

    .skill:nth-child(4) {
        top: 209px;
        left: 197px;
    }

    .skill:nth-child(5) {
        top: 259px;
        left: 100px;
    }

    .skill:nth-child(6) {
        top: 220px;
        left: 7px;
    }

    .skill:nth-child(7) {
        top: 112px;
        left: -40px;
    }

    .skill:nth-child(8) {
        top: 24px;
        left: 7px;
    }

    .skill_range:nth-child(9) {
        top: 90px;
        left: 83px;
        border-radius: 50%;
    }

    .skill_range p {
        font-size: 10px;
        margin: 10px 0;
    }

    .circle-progress {
        width: 90px;
        height: 90px;
    }

    .circle-progress::before {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 465px) {
    .header_nav {
        padding: 0 60px 20px;

    }

    .img {
        margin: 0;
        width: 215px;
        height: 215px;
    }

    .img img {
        width: 200px;
        height: 200px;
    }

    .form {
        width: 350px;
    }

    .form {
        width: 200px;
    }

}

@media (max-width: 400px) {
    .header_nav h2{
        font-size: 20px;
    }
    .img{
        overflow: hidden;
    }
}
