/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    text-align: center;
}

.header {
    background-color: #0d6efd;
    color: white;
    padding: 15px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.profile-section {
    margin: 20px auto;
    width: 90%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-section img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #0d6efd;
}

.profile-section h3 {
    color: #0d6efd;
    font-size: 20px;
    margin-top: 10px;
}

.profile-section p {
    font-size: 16px;
    color: #555;
    margin: 5px 0;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid #ddd;
}

.bottom-nav a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bottom-nav a i {
    font-size: 18px;
    color: #0d6efd;
}