/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Cover Image */
.cover-image {
    background: url('repair.jpg') center/cover no-repeat;
    width: 100%;
    height: 50vh;
}

/* Card Container */
.card {
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 400px;
    width: 90%;
    position: relative;
    margin-top: -180px;
}

/* Profile Picture Container */
.dp-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 5px solid var(--secondary-color);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    top: -100px;
    margin: 0 auto;
}

.dp-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Title and Description */
.card h1 {
    font-size: 24px;
    margin: 10px 0;
    margin-top: 70px;
    color: #333;
}

.card p {
    font-size: 16px;
    color: #777;
    margin: 5px 0 20px;
}

/* Social Links Container */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

/* Social Button Styles */
.social-links a {
    text-decoration: none;
    font-weight: bold;
    color: white;
    background:  var(--primary-color);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    font-size: 18px;
    transition: background 0.3s;
    padding: 0 10px;
}

.social-links a:hover {
    background: var(--secondary-color);
}

/* Follow Us Line */
.follow-us-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.follow-us-container hr {
    flex-grow: 1;
    border: 1px solid var(--light-color);
    margin: 0;
}

.follow-us-container p {
    margin: 0 10px;
    font-weight: bold;
}

/* Social Icons */
.social {
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}

.social a {
    width: 50px;
    height: 50px;
    border: 1px solid #efefef;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 25px;
}

/* Contact Section */
.contact {
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}

.contact a {
    border: 1px solid #efefef;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
}

/* Footer */
.footer {
    padding: 5px;
    text-align: center;
    margin-top: 20px;
}

.footer a {
    display: flex;
    color: #777;
    flex-direction: column;
    text-decoration: none;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* Media Queries */
@media only screen and (max-width: 767px) {
    .cover-image {
        height: 60vh;
    }

    .card {
        margin-top: -370px;
    }
}
