@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600&display=swap');

/* font-family: 'Montserrat', sans-serif;
font-family: 'Playfair Display', serif; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

body {
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.main-part {
    display: flex;
}
.navbar{
    display: none;
}
.nav-wrapper {
    position: fixed;
    padding: 50px 20px;
    width: 250px;
    height: 100%;
}

.nav-heading {
    /* width: 180px; */
     display: flex;
    align-items: center;
    justify-content: center; 
}

.nav-heading img {
    width: 100%;
}
.nav{
    justify-content: center;
}
.nav-ul{
    padding-left: 0;
}
.nav-ul li {
    margin: 32px 0;
    text-align: center;
    transition: all 1s;

}
.navbar-expand-md{
    justify-content: center;
}
.navigation-links {
    font-size: 20px;
    font-weight: 600;
    color: #A09F9F;
    transition: all 1s;
}
/* .navigation-links.active{
    color: #ce696e;
} */
.navigation-links:hover {
    color: #ce696e;
}

.nav-ul li:hover {
    transform: translateX(10px);
}

.main-area {
    width: calc(100% - 250px);
    margin-left: 250px;
}

.carousel-item {
    width: 100%;
    height: 100vh;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-item::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #372d4861;
    position: absolute;
    top: 0;
    left: 0;
}

.carosel-content h2 {
    font-size: 25px;
    letter-spacing: 1px;
    font-weight: 500;
    color:rgb(230, 230, 230);
    text-align: center;
}

.carosel-content {
    position: absolute;
    top: 40%;
    left: 40%;
}

.carosel-content h3 {
    font-size: 40px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 50px;
    color: #fff;
}
.carousel-control-next-icon, .carousel-control-prev-icon{
    display: none;
}
/* part about me */

.about {
    margin:50px 0;
    text-align: center;
}

.about h2 {
    font-size: 35px;
    font-weight: 500;
    color: #0E5E6F;
}

.about p {
    width: 80%;
    margin: 0 auto;
    margin-top:25px;
    padding-inline: 20px;
    font-size: 20px;
    font-weight: 400;
    color: rgb(71, 71, 71);
    text-align: center;
}
.about p::selection{
    background-color: #ce696e;
    color: #ffffff;
}
/* part Education */

.for-margin{
    margin-top: 20px;
}
.education h2{
    color: #0E5E6F;
    font-size: 35px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 25px;
}
.middle{
    display: grid;
    place-items: center;
}
.box-icon{
    background-color: transparent;
    border:1px solid rgb(225, 225, 225);
    display: grid;
    place-items: center;
    width: 80px;
    height: 110px;
    transition: all .5s;
}
.box-icon:hover{
    background-color: #b46d7154;
    transition: all .5s;
}
.box-icon svg{
   fill: #ce696e;

    transition: all .5s;
}
.box-icon svg:hover{
    fill: #ffffff;
    transition: all .5s;
}
.box-area{
    width: 100%;
    box-shadow: 0px 0px 5px 2px #f6fcffe4;
    text-align: left;
    transition: all .5s;
}
/* .box-area:hover{
    box-shadow: 0px 0px 10px 0.3px  #dd589f60;
    transform: scale(1.00);
    border: 1px solid #dd589f;
    transition: all .5s;
} */
.box-area h3{
font-size: 20px;
letter-spacing: 1px;
color:#ce696e;
margin-bottom: 15px;
}
.box-area h4{
    font-size: 16px;
    color: #616161;
    font-weight: 600;
    line-height: 25px;
}
.box-area h4 span{
    font-size: 16px;
    color: #4f4f4f;
    font-weight: 400;
}
/* part Adition */
.aditional h2{
    color: #ce696e;
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px; 
}
.achivement-link{
    margin-top: 50px;
}




.separation img{
  
    display: block;
margin: 0 auto;
margin-top: 50px;
}
/* part WORK */

.work {
    margin: 50px 0;
}

.work h4 {
    font-size: 40px;
    font-weight: 500;
    color: #0E5E6F;
    margin-bottom: 50px;
    text-align: center;
}

.box {
    text-align: center;
}

.circle {
    margin: 0 auto;
    width: 90px;
    height: 90px;
    padding: 10px;
    border-radius: 100%;
    text-align: center;
    background-color: #f6f6f6;
    margin-bottom: 30px;
}

.circle img {
    width: 100%;
    height: 100%;
}

.box a {
    font-size:18px;
    font-weight: 500;
    color: #ce696e;
    cursor: pointer;
    transition: all .4s;
    position: relative;
}

.box a:hover::before {
    transition: all 2s;
    width: 100%;
}

.box a::before {
    content: '';
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, #fff 10%, #0E5E6F 90%);
    position: absolute;
    top: 115%;
}

.box p {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgb(99, 99, 99);
}

/* part SKILL */
.skill {
    margin-bottom: 50px;
}

.skill h2 {
    font-size:35px;
    font-weight: 500;
    color: #0E5E6F;
    margin-bottom: 50px;
    text-align: center;
}

.progress {
    width: 95%;
    height: 15px;
    background-color: #efefef;
    margin-top: 30px;
}

.progress-bar1 {
    width: 70%;
    background: linear-gradient(to right, #ce696e 10%, #0E5E6F 90%);
    border-radius: 50px;
}

.skill h3 {
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 300;
    color: rgb(99, 99, 99);
    margin-top: 10px;
}

.progress-bar2 {
    width: 75%;
    background: linear-gradient(to right, #ce696e 10%, #0E5E6F 90%);
    border-radius: 50px;
}

.progress-bar3 {
    width: 85%;
    background: linear-gradient(to right, #ce696e 10%, #0E5E6F 90%);
    border-radius: 50px;
}

/* SociaL */
.social-part{
    margin-top: 50px;
    margin-bottom: 30px;
}
.social-icon {
    width: 50px;
    height: 50px;
    border: 1.5px solid #ccc;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-left: 30px;
    transition: all .3s;
}

.social-icon i {
    font-size: 20px;
    color: #ce696e;
    transition: all .3s;
}
.social-icon a{
    display: block;
    margin: 0 auto;
  };
.social-icon:hover:first-child i {
    color: #3377FF;
    transition: all .3s;
}

.social-icon:hover:nth-child(2) i {
    color: #0a66c2;
    transition: all .3s;
}

.social-icon:hover:nth-child(3) i {
    color: #567D90;
    transition: all .3s;
}

.social-icon:hover:last-child i {
    color: #0E5E6F;
    transition: all .3s;
}

.resume{
    margin-bottom: 50px;
}
.resume h2 {
    font-size: 35px;
    font-weight:500;
    color:  #0E5E6F;
    margin-bottom: 40px;
    text-align: center;
}

.resume a {
    width: 50%;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    color: #0E5E6F;
    display: block;
    border: 1px solid #ccc;
    background: linear-gradient(to right, #0E5E6F 50%, #fff 50%);
    background-position: right bottom;
    background-size:200% 100%;
    transition: all .5s ease-out;
    margin: 0 auto;
}
.resume a:hover{
    background-position: left bottom;
    transition: all .5s ease-out;
    color: #f7f7f7;
    border: 1px solid #fffbfb;
}
.achivement {
    margin-block: 50px 0;
}

.achivement h2 {
    color: #0E5E6F;
    font-size: 35px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 50px;
}

.award-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.award-img img {
    width: 100%;
    height: 100%;
}