
.profile-card {

    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    overflow: hidden;
    position: relative;
}

.content-wrapper {

    margin-top: 120px;
    padding: 2rem;
    text-align: center;
    font-size: small;
}

.job-tittle {
    font-size: medium;
    color: black;
    font-weight: lighter;
}

.full-name {

    font-size: 1.5rem;
}

p {
    color: darkslategrey;
    margin: 5px;
    font-weight: bold;
}

.abdul-img {

    width: 100%;
    
}

.img-container {

    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 50px;
    left: 100px;
    border: 2px solid white;
    outline: white;
    }

.cover {

    background-image: linear-gradient(180deg,   rgb(230, 14, 14),rgb(114, 11, 11));
    width: 300px;
    height: 100px;
    position: absolute;
    top: 0;
    border-radius: 0 13px 13px;
    
}

svg {
    width: 17px;
    display: inline-block;
    color: rgb(129, 12, 12);
    
    
}

.icon-container {

    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-more {

    width: 200px;
    font-size: 1rem;
    padding: 10px 20px;
    border: none;
    margin: 5px;
    border-radius: 50px;
    cursor: pointer;
    background-color:rgb(114, 11, 11);
    color: #fff;
    transition: 0.3s ease-in-out;
    
}

button:hover {

    background-color: rgb(209, 14, 14);
}

hr {


    color: rgb(114, 11, 11);
}

.handles {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    margin-top: 8px;
}

@media (max-width: 700px) {
    .about-container {
        max-width: 98vw;
        margin: 16px auto;
        padding: 12px;
    }
    header .nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    header .nav li a {
        width: 100vw;
        text-align: center;
        padding: 12px 0;
        cursor: pointer;
    }

    header .nav li a:hover,
    header .nav li a:focus {
        background: darkgray;
        color: white;
    }
}