.body {
    width: 86%;
    background-color: rgb(1 8 17);
    border-radius: 5%;
    position: relative;
    left: 7%;
}


.nav_main ul {
    display: flex;
    justify-content: space-evenly;
    list-style: none;
    /* border: 2px solid white; */
    border-radius: 5%;
    /* width: 50%; */

}

.nav_main ul a {
    color: white;
    text-decoration: none;
    width: 100%;

}

.nav_main ul a:hover {
    color: rgb(231 90 238);
    border-left: 2px solid red;
}

/* intro*/
.hero {
    display: flex;
}

.intro {
    margin-left: 50px;
    display: inline-block;
}

.great {
    border: 1px solid;
    width: 12%;
    padding: 7px;
    font-size: larger;
    margin-bottom: 0;
}

.intro_section h1 {
    font-size: xxx-large;
    margin-bottom: 0;
}

.action {
    display: flex;
    justify-content: space-around;
}

.action div {
    width: 30%;
    height: 13vh;
    cursor: pointer;
    background: none;
    border-top: 1px solid rgb(30, 26, 26);
    border-left: 1px solid rgb(30, 26, 26);
}

.action div a {
    display: block;
    color: white;
    text-align: center;
    padding-top: 34px;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.action a:hover {
    transform: scale(1.2);
    transition-duration: 1s;
    border-radius: 20%;
    background: linear-gradient(45deg, rgba(156, 59, 201), rgba(38, 61, 178));
}

/* keysights*/

.keysights {
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: space-around;
}

.circle {
    width: 20%;
    height: 20%;
    border: 1px solid red;
    border-radius: 100%;
    overflow: hidden;
}

.divider {
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.453);
}

.content h2,
.content p {
    margin: 0;
    padding: 0;
}

/* About*/

#about {
    width: 100%;
    height: 35vh;
    display: flex;
    justify-content: space-evenly;
}

.item {
    text-align: center;
    width: 70%;

}

.item h2 {
    text-align: center;
    margin: 0;
    padding: 0;
}

.item p {
    margin: 0;
    padding: 0;

    word-wrap: break-word;
}

.about_table {
    row-gap: 20px;
    height: 100%;
    text-align: center;
}

.skill_ul {
    height: 100%;
    line-height: 3;
}



/*skills*/
#skills {
    width: 90%;
    height: 80vh;
    margin: auto;
    border-radius: 8%;
    background-color: rgb(21, 21, 48);
}

#skills>h2 {
    text-align: center;
    padding-top: 16px;
}

/*chart*/
.skills-chart {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 120px;
}

.donut {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background:
        conic-gradient(#3f92e0 0deg 128deg,
            #6544db 128deg 205deg,
            #4db3ef 205deg 282deg,
            #9fd5f7 282deg 334deg,
            #cf9172 334deg 360deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.donut-center {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #081624;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.donut-center h2 {
    color: #fff;
    font-size: 58px;
    font-weight: 700;
    line-height: 1;
}

.donut-center span {
    color: #a7a7a7;
    font-size: 20px;
    margin-top: 6px;
}

.chart-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info {
    display: flex;
    align-items: center;
    gap: 18px;
}

.info p {
    color: #e7e7e7;
    font-size: 22px;
    margin: 0;
}

.color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.powerbi {
    background: #3f92e0;
}

.sql {
    background: #6544db;
}

.python {
    background: #4db3ef;
}

.excel {
    background: #9fd5f7;
}

.tableau {
    background: #cf9172;
}

.blue_hr {
    border: none;
    height: 3px;
    background: linear-gradient(45deg, grey, rgb(17 47 74), grey);
}

.gird_card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
}

.item_card h3 {
    font-size: xx-large;
    color: #4db3ef;
}

.item_card p {
    font-size: small;
    color: gray;
}

/* projects */
.project {
    width: 100vw;

    overflow-x: scroll;
}

.card_project {
    display: grid;
    grid-template-columns: repeat(5, 45vw);
    justify-items: center;
    overflow-x: scroll;
}

.card-body {
    flex: 1 1 auto;
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
    color: wheat;
    background: linear-gradient(155deg, #1a2e4a, #010811);
}

.card:hover {
    box-shadow: 13px 20px 20px 8px #393535;
    transform: scale(.98);
    transition-duration: .5s;
    transition-timing-function: ease-in-out;
}

.card-img,
.card-img-bottom,
.card-img-top {
    width: 100%;
    height: 60vh;
}

/* certification */

#certificate h3,
.course {
    padding-left: 25px;
}

.bg-body-secondary {
    --bs-bg-opacity: 1;
    background-color: transparent !important;
}

.img_cet_item {
    width: 30vw;
}

.cet_p {
    color: #4db3ef
}

.cet_date {
    color: gray;
}

.row:hover {
    background: linear-gradient(136deg, #4f4e4e -3%, transparent, #0e263f82) !important;
}