﻿/* Profile Base Styles */
.profile-container {
    transition: all 0.5s ease-in-out;
}

.btn-back {
    color: #6c757d;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

    .btn-back:hover {
        color: #2575fc;
        transform: translateX(-5px);
    }

/* Glass Decoration */
.glass-bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(240, 248, 255, 0.6); /* Aliceblue with transparency for blur */
    top: 30px;
    left: -30px;
    z-index: -1;
    border-radius: 2rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.profile-img {
    border-radius: 1rem;
    object-fit: cover;
    border: 4px solid white;
    height: 432px;
    width:321px;
}

/* Stats Badge */
.stats-badge {
    position: absolute;
    bottom: -15px;
    right: 15px;
    background: white;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid #2575fc;
    min-width: 140px;
}

/* Social Buttons */
.social-link {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.linkedin {
    background: #0077b5;
    color: white !important;
}

    .linkedin:hover {
        background: #005582;
        box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3);
        transform: translateY(-2px);
    }

/* Typography & Accents */
.bg-cyan-soft {
    background-color: rgba(0, 255, 255, 0.1);
}

.text-cyan {
    color: #008b8b;
}

.bio-content p {
    margin-bottom: 1.5rem;
}


.expertise-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 13px;
    background: aliceblue;
    border-radius: 12px;
    border: 1px solid rgba(37, 117, 252, 0.1);
    transition: all 0.3s ease;
}

    .expertise-card i {
        font-size: 1.8rem;
        color: #2575fc;
        margin-bottom: 8px;
    }

    .expertise-card span {
        font-size: 0.85rem;
        font-weight: 600;
        color: #495057;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .expertise-card:hover {
        background: white;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-color: #2575fc;
    }