body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #2c2c2c;
    line-height: 1.6;

    background-image: linear-gradient(
        rgba(255,255,255,0.45),
        rgba(255,255,255,0.45)
    ),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
/* HEADER */
h1 {
    font-size: 34px;
    letter-spacing: -0.5px;
}

h5 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

/* SECTION CARD */
.section {
    background: white;
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* subtle hover (very important, but light) */
.section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* LISTS */
ul {
    padding-left: 18px;
    margin-bottom: 0;
}

li {
    margin-bottom: 4px;
}

/* LINKS */
a {
    text-decoration: none;
    color: #0d6efd;
}

a:hover {
    text-decoration: underline;
}

/* SMALL TEXT */
small {
    color: #6c757d;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
}


/* PROFILE IMAGE */
.profile-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    position: relative;
    border: 3px solid white;
}

/* SPINNING RING */
.spinner-ring {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 152px;
    height: 152px;
    border-radius: 50%;

    border: 2px solid transparent;
    border-top: 2px solid #0d6efd;
    border-right: 2px solid #0d6efd;
    box-shadow: 0 0 8px rgba(13,110,253,0.3);

    animation: spin 6s linear infinite;
}

/* ANIMATION */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}