@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
    text-decoration: none;
    list-style: none;
}
html{
    scroll-behavior: smooth;
}
/* 
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
} */
.scroll-up-btn.show {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover {
    filter: brightness(90%);
}
.scroll-up-btn {
    position: fixed;
    height: 45px;
    width: 42px;
    background: #af79d1;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.header_section{
    width: 100%;
    max-width: 100%;
    height: 100vh;
    padding: 0 30px;
    background-image: url(./img/background1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.container{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
.menu_bar .sticky{
    background-color: #af79d1;
}
.menu_bar{
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.menu ul li{
    display: inline-block;
    padding: 0 20px;
    transition: 0.5s;
}
.menu ul li a{
    color: #555;
}
.logo p a{
    font-size: 25px;
    font-weight: 700;
    color: #555;
    font-weight: 600;
}
.logo span{
    color: #f20080;
    font-size: 35px;
}
.menu ul li:hover{
    background-color: #f20080;
    padding: 10px 20px;
    border-radius: 30px;
}
.menu ul li:hover a{
    color: #fff;
}

.checkbtn{
    font-size: 30px;
    color: #555;
    float: right;
    display: none;
    cursor: pointer;
}

#check{
    display: none;
}
.display_body{
    margin-top: 20%;
}
.display_dec{
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.display_title p{
    color: #555;
    font-size: 20px;
    font-weight:600;
    float: left;
}
.display_title p span{
    color: rgb(250, 14, 14);
    font-size: 30px;
    font-weight:700;
    letter-spacing: 2px;
}
.display_title h4{
    color: rgba(131, 14, 14, 0.712);
    font-size: 25px;
}
#cv-btn{
    margin-top: 20px;
    padding: 10px 70px;
    border: none;
    background-color: #af79d1;
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: 0.5s;
}
#cv-btn:hover{
    background-color: #af79d19f;
}

/* ==============================================
            About Section
=============================================== */
.about_section{
    background-color: #fff; 
}
.about_me{
    margin-top: 30px;
}
.about_tilte{
    padding: 50px 0;
    text-align: center;
}
.about_tilte h3{
    color: #f20080;
    font-size: 30px
}
.about_tilte h3::after{
    position: absolute;
    content: '';
    width: 150px;
    height: 2px;
    background-color: #555;
    left: 50%;
    margin-top: 20px;
    display: block;
    transform: translateX(-50%);
}
.about_tilte h3::before{
    position: absolute;
    content: 'who i am';
    margin-top: 36px;
    font-size: 20px;
    padding: 5px;
    background-color: #fff;
    left: 50%;
    display: block;
    transform: translateX(-50%);
    z-index: 1;
}

.about_tilte h3 span{
    color: red;
}

.about_pic img{
    height: 400px;
    width: 400px;
    object-fit: cover;
    border-radius: 6px;
}
.about_me{
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
}
.about_me .left{
    width: 45%;
}
.about_me .right{
    width: 55%;
}
.right p{
    text-align: justify;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}
.right a{
    float: left;
    display: inline-block;
    background: #af79d1;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #af79d1;
    transition: all 0.3s ease;
   
}
/* ===================================================
        services
==================================================== */
.services_section{
    background-color: #D8F2FF;
    padding: 30px 0;
}
.mee{
    text-align: center;
}
.mee h3::after{
    position: absolute;
    content: '';
    width: 200px;
    height: 2px;
    background-color: #555;
    left: 50%;
    margin-top: 20px;
    display: block;
    transform: translateX(-50%);
}
.mee h3::before{
    position: absolute;
    content: 'what a i provite';
    margin-top: 36px;
    font-size: 20px;
    padding: 5px;
    background-color: #D8F2FF;
    left: 50%;
    display: block;
    transform: translateX(-50%);
    z-index: 1;
}

.mee{
    padding: 50px 0;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
.mee h3{
    color: #f20080;
    font-size: 30px
}
.my_services{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 0 100px;
}
.card{
    width: 30%;
    background: #af79d1;
    text-align: center;
    border-radius: 6px;
    padding: 50px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    cursor: pointer;
}
.box i{
    font-size: 50px;
    color: #f20080;
    margin-bottom: 20px;
}
.box .text{
    font-size: 30px;
    color: #fff;
}
.card .box p{
    color: #fff;
    margin-top: 20px;
    font-size: 17px;
}
.card:hover{
    background-color: #f20080;
    color: #fff;
}
.box{
    transition: all 0.3s ease;
}
.card:hover .box i{
    color: #fff;
}
.card:hover .box{
    transform: scale(1.05);
}