/* === GENERAL === */
body {
    margin: 0;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    background-color: #0d0f1a;
    color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

/* === HEADER === */
.profile-header {
    text-align: center;
    padding: 2rem 1rem 1rem;
    background: #0d0f1a;
}

.profile-pic img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid #00f7ff;
    object-fit: cover;
    margin-bottom: 1rem;
}

.header-text h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 8px #00f7ff;
}

/* === DASHBOARD GRID === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 1.5rem;
}

/* === WIDGET CARDS === */
.card {
    background-color: #13162b;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 270px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-header-icon i {
    font-size: 1.5rem;
    color: #00f7ff;
}

.card-header-text h2 {
    font-size: 1.2rem;
    font-weight: 600;
}

.header-subtext {
    font-size: 0.85rem;
    color: #aaa;
}

/* === CONTENT SECTIONS === */
.card-content {
    flex-grow: 1;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.skills-list, .project-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-item, .project-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.skill-item i, .project-item i {
    color: #00f7ff;
}

/* === SERVICES === */
.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.service-item {
    background-color: #1a1d33;
    padding: 0.9rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: background 0.3s;
}

.service-item:hover {
    background-color: #252b4f;
}

.service-icon i {
    font-size: 1.4rem;
    color: #00f7ff;
}

.service-details h3 {
    font-size: 0.95rem;
    margin: 0;
}

/* === STATS WIDGET === */
.stats-inner {
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 1rem;
}

.stat-item h3 {
    font-size: 1.4rem;
    color: #00f7ff;
    margin-bottom: 0.3rem;
}

.stat-item p {
    font-size: 0.8rem;
    color: #ccc;
}

/* === MUSIC PLAYER === */
.music-player {
    background: #1c2036;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
}

.music-info h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.music-info p {
    font-size: 0.85rem;
    color: #bbb;
}

.player-controls {
    margin-top: 0.8rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.control-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: #444;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.6rem;
    cursor: pointer;
}

.progress {
    height: 100%;
    width: 0%;
    background-color: #00f7ff;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

/* === EXPERIENCE TIMELINE === */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.timeline-item {
    position: relative;
    padding-left: 20px;
}

.timeline-dot {
    width: 8px;
    height: 8px;
    background: #00f7ff;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 0;
}

.timeline-content h3 {
    font-size: 1rem;
}

.timeline-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.3rem;
}

.timeline-content p {
    font-size: 0.85rem;
    color: #ccc;
}

/* === FOOTER === */
footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    font-size: 0.85rem;
    color: #666;
}
