

:root {
    --brand-blue: #143d8b;
    --brand-gold: #dea250;
    --text: #0d1b2a;
}

.des {
    color: var(--text);
    padding-left: 20px;
}

.profile-main {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(1200px 600px at 20% -10%, rgba(20, 61, 139, .25), transparent 60%),
        radial-gradient(1200px 600px at 120% 20%, rgba(222, 162, 80, .18), transparent 60%),
        linear-gradient(180deg, #f7f9fc 0%, #f0f4ff 100%);
    color: var(--text);
    padding-top: 100px;
    margin-bottom: 50px;
}

/* .profile-main ul li {
    display: flex;
    gap: 10px;
} */
.profile-main ul li i {
   font-weight: 400;
   line-height: 2;
}


.profile-hero {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-gold));
    color: #fff;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    position: relative;
}

.profile-glass {
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(20, 61, 139, .12);
}

.profile-chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: #f2f6ff;
    border: 1px solid #e2e8ff;
    color: var(--brand-blue);
    font-weight: 600;
    font-size: .85rem;
}

.profile-title {
    position: relative;
    padding-bottom: .5rem;
    margin-bottom: 1.25rem;
}

.profile-title::after {
    content: "";
    position: absolute;
    left: 25px;
    bottom: 0;
    height: 3px;
    width: 72px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-gold));
}

li{
    list-style: none;
    
}

.avatar-img {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.avatar-img img {
    height: 400px;
    object-fit: cover;
}
.btn-brand {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--brand-blue);
    --bs-btn-border-color: var(--brand-blue);
    border-radius: 999px;
    padding-inline: 1rem;
}

.blockquote {
    border-left: 4px solid var(--brand-gold);
    padding: 5px 20px;
    font-style: italic;
    color: var(--brand-blue);
    border: 2px solid var(--brand-gold);
    border-radius: 15px;
    display: inline-block;
    font-size: 18px;
}


.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #143d8b;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: #dea250;
    transform: scale(1.1);
}
 .chip {
      display: inline-flex; align-items: center; gap: .5rem;
      padding: 4px 30px; border-radius: 999px;
      background: #f2f6ff; border: 1px solid #e2e8ff; color: var(--brand-blue);
      font-weight: 600; font-size: .85rem;
    }

     ul {
            padding-left: 40px;
        }

    @media screen and (max-width: 767px) {
        ul {
            padding-left: 0px;
        }
    }