/* ===================================
   profile Styles
   =================================== */

/* SECTION BACKGROUND */
.profile-section {
    background: #f8fafc;
}

/* CARD BASE */
.profile-section .card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.profile-section .card:hover {
    transform: translateY(-5px);
}

/* PROFILE CARD SPECIAL */
.profile-card {
    background: linear-gradient(135deg, #eef2ff, #ffffff);
}

/* AVATAR */
.profile-avatar-wrapper {
    display: flex;
    justify-content: center;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #6366f1;
    object-fit: cover;
}

/* PROFILE TEXT */
.profile-info p {
    font-size: 14px;
    margin-bottom: 8px;
}

/* BUTTON (MATCH YOUR SITE) */
.btn-gradient {
    background: linear-gradient(90deg, #4f46e5, #6366f1);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-gradient:hover {
    opacity: 0.9;
}

/* COURSE ITEM */
.course-item {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.course-item:last-child {
    border-bottom: none;
}

/* BADGES */
.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* TABLE */
.table {
    margin-bottom: 0;
}

.table th {
    font-size: 13px;
    color: #64748b;
}

.table td {
    font-size: 14px;
    vertical-align: middle;
}

/* DOWNLOAD CARD */
.profile-section .card.text-center {
    background: linear-gradient(135deg, #f1f5ff, #ffffff);
}



/* WRAPPER CENTER */
.app-download {
    display: flex;
    flex-direction: column;
    align-items: center;   /* center horizontally */
    /* gap: 12px; */
}

/* BUTTON STYLE */
.app-download .app-btn {
    width: 260px;          /* 🔥 reduced width */
    padding: 12px 18px;
    border-radius: 12px;   /* less rounded like footer */
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

/* ALIGN CONTENT LEFT (LIKE FOOTER) */
.app-download .app-btn .d-flex {
    justify-content: flex-start !important;
}

/* GOOGLE BUTTON */
.app-download .google-btn {
    background: #4b5563;   /* match footer style */
}

/* APPLE BUTTON */
.app-download .apple-btn {
    background: #4b5563;
}

/* ICON */
.app-download .app-btn i {
    font-size: 29px;
    min-width: 25px;
}

/* TEXT */
.app-download .app-btn small {
    font-size: 11px;
    opacity: 0.7;
}

.app-download .app-btn .fw-bold {
    font-size: 16px;
}

/* HOVER */
.app-download .app-btn:hover {
    background: var(--primary-color);
}