@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
::selection {
    color: #fff;
    background-color:var(--main-color) ;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background-color:var(--second-color) ;
}
::-webkit-scrollbar-thumb {
    background-color:var(--main-color) ;
    border-radius: 10px;
}
:root {
    --main-color:#ff7b00ea;
    --second-color:#ffe0c3ea;
    --title-color:#222;
    --subtitle-color:#8d8d8d;
}
body {
    font-family: 'Poppins',sans-serif;
    min-height: 100vh;
    height: 1000px;
    overflow-x: hidden;
    position: relative;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.section {
    padding: 90px 0 0;
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 50px;
}
.btn {
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
    padding: 10px 15px;
    color: #fff;
    font-size: 16px;
    border-radius: 10px;
    transition: .4s;
}
.btn:hover {
    background-color: transparent;
    border: 2px solid var(--main-color);
    color: var(--main-color);
}
.btn i {
    font-size: 20px;
    margin-left: 10px;
}
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: .8;
    color: #222;
    position: relative;
    margin-bottom: 100px;
    padding-bottom: 20px;
}
.section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: var(--main-color);
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--main-color);
}
.grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 2rem;
}
header {
    position: fixed;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
}
header .active {
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .15);
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    width: 150px;
    height: auto;
    display: flex;
    align-items: center;
}
.menu {
    white-space: nowrap;
    transition: .5s;
    z-index: 999;
    position: relative;
}
.menu_item {
    display: inline-block;
}
.menu_link {
    padding: 5px 10px;
    position: relative;
    transition: .4s;
    color: #333;
    font-weight: 500;
}
.menu_link::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    transform: scale(0);
    transition: .4s;
}
.menu_link:hover {
    color: var(--main-color);
}
.active_link {
    color: var(--main-color);
}
.menu_link.active_link::before,
.menu_link:hover::before {
    transform: scale(1);
}
.close_icon {
    font-size: 25px;
    position: absolute;
    top: 30px;
    right: 250px;
    z-index: 1000;
    color: var(--main-color);
    cursor: pointer;
    display: none;
}
.toggle_icon {
    font-size: 32px;
    display: none;
    cursor: pointer;
    margin-right: 10px;
}
@media screen and (max-width:768px) {
    .container {
        padding: 0 30px;
    }
    .menu {
        position: absolute;
        right: 0;
        top: 0;
        background-color: #eee;
        height: 100vh;
        padding-top: 100px;
        width: 300px;
        text-align: center;
        transform: translateX(110%);
        box-shadow: -10px 0 20px rgba(0, 0, 0, .15);
    }
    .menu.active{
        transform: translateX(0);
    }
    .menu_item {
        display: block;
        margin: 20px 0;
    }
    .menu_link {
        color: #333;
    }
    .toggle_icon {
        display: block;
    }
    .close_icon {
        display: block;
    }
}

/* Home Page */
.home {
    padding-top: 114px;
    position: relative;
    display: block;
}
.home_container {
    align-items: center;
}
.home_container h4 {
    font-size: 28px;
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
}
.home_container h1 {
    font-size: 40px;
    font-weight: 600;
    font-family: 'Poppins' sans-serif;
    white-space: nowrap;
    margin-bottom: 10px;
    color: var(--title-color);
}
.home_container p {
    margin: 10px 0 40px;
    color: #333;
    font-size: 18px;
}
.home_container .btn {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
}
.home_social {
    display: flex;
    column-gap: 20px;
}
.home_social a{
    font-size: 22px;
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    color: #333;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
}
.home_social a:hover {
    color: var(--main-color);
    box-shadow: 0 0 10px var(--main-color);
}
.home_img {
    text-align: right;
}

@media screen and (max-width:768px) {
    .home_content h4 {
        font-size: 16px;
    }
    .home_content h1 {
        font-size: 32px;
    }
    .home_content p {
        font-size: 15px;
    }
}

@media screen and (max-width:576px) {
    .home_container {
        grid-template-columns: 1fr;
        row-gap: 2rem;
        justify-content: center;
    }
    .home_content {
        order: 2;
        text-align: center;
    }
    .home_social {
        justify-content: center;
    }
    .home_img {
        text-align: center;
    }
}

/* About Page */
.about_container {
    column-gap: 0;
    align-items: center;
}
.about_content p {
    color: #333;
    margin: 20px 0 15px;
}
.about_info {
    display: flex;
    column-gap: 20px;
    margin-top: 40px;
}
.about_info > div {
    text-align: center;
    background-color: var(--second-color);
    border: 2px dashed var(--main-color);
    border-radius: 10px;
    padding: 10px 15px;
    width: 40%;
}
.about_info > div .number {
    color: var(--main-color);
    font-size: 32px;
    font-weight: 700;
}
.about_info > div .text {
    font-size: 15px;
    font-weight: 600;
}

@media screen and (max-width:992px) {
    .about_container {
        grid-template-columns: 3fr 2fr;
    }
}
@media screen and (max-width:768px) {
    .about_container {
        grid-template-columns: 1fr;
        justify-content: center;
        text-align: center;
    }
    .about_info {
        justify-content: center;
    }
    .about_info > div .text {
        font-size: 14px;
    }
}

/* Resume Page */
.resume_container {
    grid-template-columns: 1fr 5fr;
}
.resume_tabs ul {
    position: sticky;
    top: 150px;
    position: -webkit-sticky;
}
.resume_tabs ul li a {
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    color: #222;
    position: relative;
    transition: .3s;
}
.resume_tabs ul li a.current {
    color: var(--main-color);
    margin-left: 20px;
    position: relative;
}
.resume_tabs ul li a.current::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -35px;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--main-color);
}
.page {
    margin-bottom: 70px;
}
.page_heading {
    font-size: 25px;
    color: var(--title-color);
    margin-bottom: 25px;
}
.resume_wrap {
    background-color: #faf9ff;
    margin-bottom: 15px;
    padding: 40px 30px;
    display: flex;
    position: relative;
    border-radius: 10px;
    transition: .3s;
}
.resume_wrap-icon {
    background-color: var(--main-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.resume_wrap-icon i {
    font-size: 25px;
    color: #fff;
}
.resume_wrap_content {
    width: calc(100% - 100px);
    padding: 0 0 10px 10px;
}
.resume_wrap .date {
    font-weight: 600;
}
.resume_wrap-content h4 {
    font-size: 20px;
    color: var(--main-color);
}
.resume_wrap-content .position {
    color: var(--subtitle-color);
    font-size: 14px;
    font-weight: 400;
}
.resume_wrap:hover {
    background-color: var(--main-color);
    color: #faf9ff;
}
.resume_wrap:hover .resume_wrap-icon {
    background-color: #fff;
}
.resume_wrap:hover .resume_wrap-icon i {
    color: var(--main-color);
}
.resume_wrap:hover h4,
.resume_wrap:hover span {
    color: #fff;
}
.progressBoxes {
    gap: 3rem;
}
.progress_name {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 10px;
}
.progress {
    width: 100%;
    height: 7px;
    border-radius: 10px;
    background-origin: var(--second-color);
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
}
.progress_bar {
    height: 100%;
    border-radius: 10px;
    background-color: var(--main-color);
    position: relative;
}
.progress_bar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% - 7px);
    transform: translateY(-50%);
    height: 15px;
    width: 15px;
    background-color: var(--main-color);
    border-radius: 50%;
}
@media screen and (max-width:992px) {
    .resume_container {
        grid-template-columns: 1fr;
    }
    .resume_tabs {
        display: none;
    }
    .resume_wrap {
        padding: 20px 15px;
    }
}
@media screen and (max-width:576px) {
    .resume_wrap {
        text-align: center;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .resume_wrap .resume_wrap-icon {
        margin-bottom: 15px;
    }
    .resume_wrap_content {
        width: 100%;
    }
    .progressBoxes {
        grid-template-columns: 1fr;
    }
}

/* Services Page */
.services_container {
    grid-template-columns: repeat(2, 230px);
    column-gap: 2rem;
    justify-content: center;
}
.services_item {
    position: relative;
    box-shadow: 5px 5px 10px rgba(0,0,0,.1);
    padding: 100px 40px 40px 40px;
}
.services_item i {
    color: var(--main-color);
    font-size: 32px;
    display: block;
}
.services_item .services_title {
    font-size: 22px;
    font-weight: 500;
    color: var(--title-color);
    margin: 20px 0;
}
.services_button {
    display: flex;
    align-items: center;
    color: var(--main-color);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}
.services_button i {
    font-size: 22px;
    margin-left: 5px;
    transition: .3s;
}
.services_button:hover i {
    transform: translateX(10px);
}
.services_model {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,.2);
    z-index: 1000;
    display: none;
    padding: 0 30px;
}
.services_model.active-model {
    display: flex;
}
.services_model > div {
    position: relative;
    background-color: #555;
    max-width: 500px;
    max-height: 450px;
    padding: 50px;
    font-size: 14px;
    color: #fff;
    border-radius: 20px;
}
.services_model .model_close-icon {
    position: absolute;
    right: 30px;
    top: 30px;
    color: var(--main-color);
    font-size: 20px;
    cursor: pointer;
}
.services_model-description,
.services_model-title {
    text-align: center;
}
.services_model-description {
    margin: 10px 0 30px;
}
.services_model-title {
    font-size: 22px;
    color: #fff;
}
.services_model ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.services_model ul li i {
    font-size: 20px;
    margin-right: 10px;
}
@media screen and (max-width:768px) {
    .services_container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 2rem;
    }
    .services_item {
        padding-top: 30px;
    }
    .services_item h3 {
        font-size: 18px;
    }
}
@media screen and (max-width:576px) {
    .services_container {
        grid-template-columns: 1fr;
        row-gap: 2rem;
    }
}
@media screen and (max-width:396px) {
    .services_model > div {
        padding: 40px 20px;
    }
}

/* Contact Page */
.contact {
    padding-bottom: 60px;
}
.contact_container {
    display: flex;
    justify-content: center;
}
.contact_content {
    min-width: 50%;
    display: flex;
    flex-direction: column;
    padding: 0 50px;
}
.inputs {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
}
input {
    margin-bottom: 30px;
    width: 100%;
}
input,
textarea {
    border-radius: 10px;
    padding: 20px;
    border: none;
    outline: none;
    background-color: #eee;
    color: var(--title-color);
    font-size: 16px;
}
input:focus,
textarea:focus {
    box-shadow: 0 0 5px #a8bbe0;
}
.contact_content .btn {
    width: 185px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}
@media screen and (max-width:576px) {
    .contact_content {
        padding: 0;
    }
    .inputs {
        flex-direction: column;
    } 
}
/* Footer Page */
.footer_bg {
    background-color: var(--main-color);
    padding-top: 30px;
}
.footer_container {
    text-align: center;
}
.main_footer {
    padding-bottom: 50px;
    border-bottom: 1px solid rgb(219,219,219);
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    color: #fff;
}
.footer_social {
    display: flex;
    justify-content: center;
    column-gap: 20px;
}
.footer_social a {
    background-color: #fff;
    color: var(--title-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
.footer_social a:hover {
    background-color: var(--second-color);
}
.footer_copy {
    padding: 20px 0;
    color: #dbdbdb;
}