* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    list-style: none;
}

body {
    height: auto;
    background-color: #121212;
    background-color: #202020;
    color: white;
}

header.sticky {
    background-color: #202020;
    color: white;
    padding: 10px 12%;
}

header.sticky .navbar a,
header.sticky .logo,
header.sticky .main .dropdown .ri-user-fill {
    color: white;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 15px 12%;
    transition: all 0.50s ease;
}

.logo {
    font-size: 1.7rem;
    font-weight: 600;
    color: white;
    transition: all 0.50s ease;
}

.navlis .navbar {
    display: flex;
    margin-bottom: 0px;
}

.navlis .navbar a {
    font-size: 1rem;
    font-weight: 500;
    padding: 5px 0px;
    margin: 0px 15px;
    transition: all 0.50s ease;
    color: white;
}

.navlis .navbar a:hover,
.logo:hover {
    color: #ff6600;
    text-decoration: none;
}

#menu-icon {
    font-size: 30px;
    cursor: pointer;
    display: none;
}

.ri-user-fill {
    font-size: 25px;
    color: white;
}

@media (max-width: 890px) {
    .navbar a {
        padding: 5px 0;
        margin: 0 20px;
        color: white;
    }
}

@media (max-width: 1104px) {
    #menu-icon {
        display: block;
        padding-left: 10px;
        color: white;
        margin-bottom: 0px;
    }

    header {
        padding: 12px;
    }

    .navbar {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 160px;
        height: auto;
        background-color: white;
        color: black;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        border-radius: 10px;
        transition: all 0.50s ease;
    }

    .navlis .navbar li a {
        display: block;
        padding: 10px 0;
        text-align: center;
        color: black;
    }

    .navbar a:hover {
        color: blue;
    }

    .navbar.open {
        right: 0;
    }
}

.container {
    margin-top: 120px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.container .left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.left .image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #444444;
    box-shadow: 5px 7px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.left .image img {
    height: 100%;
    width: 100%;
    transition: 0.5s;
}

.left .image img:hover {
    translate: 0.5;
}

.left .social-icons {
    display: flex;
}

.left .social-icons a {
    font-size: 20px;
    color: white;
    transition: 0.5s;
}

.left .social-icons a:hover {
    color: #ff6600;
    transform: rotate(360deg);
}

.container .right {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0px 20px;
}

.right .buttons {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

.right .buttons button {
    padding: 8px 12px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.4s;
    text-align: center;
    background-color: transparent;
    outline: none;
    color: white;
    border: 2px solid #444444;
    margin-right: 20px;
}

.right .buttons button:hover {
    background-color: #ff6600;
    color: white;
    border-color: #ff6600;
}

.right .introduction {
    font-size: 20px;
    margin-bottom: 10px;
}

.right .name {
    color: #ff6600;
    font-size: 30px;
    margin-bottom: 10px;
}

.right .description {
    color: grey;
    font-size: 16px;
    line-height: 1.5;
}

.cont {
    max-width: 1100px;
    margin: 10px auto;
    border-radius: 8px;
    overflow: hidden;
}

.heading {
    color: #ff6600;
    padding: 15px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.cont .content {
    padding: 10px;
    color: grey;
    /* line-height: 1.8; */
    font-size: 18px;
}

.cont .skills {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    flex-wrap: wrap;
}

.cont .skills .skill-box:nth-child(2) {
    transition-delay: 200ms;
}

.cont .skills .skill-box:nth-child(3) {
    transition-delay: 300ms;
}

.cont .skills .skill-box:nth-child(4) {
    transition-delay: 400ms;
}

.cont .skills .skill-box {
    width: 240px;
    height: 160px;
    padding: 20px;
    border: 2px solid #ff6600;
    margin: 10px;
    border-radius: 30px;
}

.cont .skills .skill-box h5 {
    color: white;
    margin-bottom: 3px;
}

.cont .skills .skill-box p {
    margin-bottom: 2px;
    color: grey;
}

.education {
    max-width: 800px;
    margin: 20px auto;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.education p {
    margin-bottom: 10px;
    font-size: 16px;
    /* line-height: 1.6; */
}

.education p:nth-child(3n+3) {
    margin-bottom: 10px;
}

.education p i {
    margin-right: 5px;
    color: #ff6600;
    /* Orange color */
}

@media (max-width: 768px) {
    .education {
        padding: 15px;
    }
}

.projects {
    max-width: 1000px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.projects .food,
.projects .port {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border: 2px solid white;
    padding: 20px;
    border-radius: 30px;
}


.food:hover {
    border-color: #ff6600;
}

.port:hover {
    border-color: #ff6600;
}

.projects .food .im,
.projects .port .im {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ff6600;
    /* Orange color */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.projects .food .content {
    margin-left: 30px;
}

.projects .food .content p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: grey;
}

.projects .port p {
    line-height: 1.6;
    margin-bottom: 10px;
    margin-left: 30px;
    color: grey;
}

@media (max-width: 768px) {
    .projects {
        padding: 15px;
    }

    .projects .food,
    .projects .port {
        flex-direction: column;
    }

    .projects .food .im,
    .projects .port .im {
        margin-bottom: 10px;
    }
}

.maincontainer {
    margin-top: 0px;
}

.maincontainer .container {
    max-width: 1000px;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
}

.maincontainer .container .left-box {
    float: left;
    width: 40%;
    padding: 20px;
    box-sizing: border-box;
    color: grey;
}

.maincontainer .container .right-box {
    float: left;
    width: 60%;
    padding: 20px;
    box-sizing: border-box;
}

.maincontainer .container .right-box h2 {
    text-align: center;
    color: #ff8c00;
}

.maincontainer .container .right-box label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: white;
}

.maincontainer .container .right-box input,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
    outline: none;
}

.maincontainer .container .right-box input:focus,
textarea:focus {
    border-color: #4caf50;
}

.maincontainer .container .right-box textarea {
    height: 120px;
}

.maincontainer .container .right-box .ll {
    text-align: center;
}

.maincontainer .container .right-box .ll button {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
    outline: none;
}

.maincontainer .container .right-box button:hover {
    background-color: #e07e00;
}


.maincontainer .container .left-box .map-label a:hover {
    text-decoration: underline;
}

.maincontainer .container .left-box .contact-info {
    margin-bottom: 20px;
}

.maincontainer .container .left-box .contact-info .l h3 {
    text-align: center;
    color: white;
}

.maincontainer .container .left-box .contact-info .lab {
    color: white;
}

.maincontainer .container .left-box .contact-info label {
    font-weight: normal;
    color: white;
}

.maincontainer .container .left-box .contact-info p {
    margin: 5px 0;
    color: grey;
}

.maincontainer .container .left-box .symbol {
    margin-right: 5px;
}

.maincontainer .container .left-box .pin-symbol {
    color: #e07e00;
}

.maincontainer .container .left-box .phone-symbol {
    color: #4caf50;
}

@media(max-width:700px) {
    .maincontainer .container {
        flex-direction: column;
    }

    .maincontainer .container .left-box {
        width: 100%;
    }

    .maincontainer .container .right-box {
        width: 100%;
    }
}

.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.hidden1 {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(100%);
    transition: all 1s;
}

.show1 {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.hidden2 {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(100%);
    transition: all 1s;
}

.show2 {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}