/* === RESET & BASE STYLES === */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}
/* === PROFILE CARD === */
.profile-card {
background: white;
border-radius: 20px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
overflow: hidden;
width: 100%;
max-width: 400px;
transition: transform 0.3s ease;
}
.profile-card:hover {
transform: translateY(-5px);
}
/* === CARD HEADER === */
.card-header {
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
text-align: center;
padding: 30px 20px;
}
.profile-img {
width: 120px;
height: 120px;
border-radius: 50%;
border: 4px solid white;
margin-bottom: 15px;
object-fit: cover;
}
.student-name {
font-size: 24px;
margin-bottom: 5px;
font-weight: bold;
}
.student-title {
opacity: 0.9;
font-size: 16px;
}
/* === CARD INFO === */
.card-info {
padding: 25px;
}
.info-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 0;
border-bottom: 1px solid #f0f0f0;
}
.info-item:last-child {
border-bottom: none;
}
.label {
font-weight: bold;
color: #555;
}
.value {
color: #777;
}
/* === SKILLS SECTION === */
.card-skills {
padding: 0 25px 25px;
}
.card-skills h3 {
margin-bottom: 15px;
color: #333;
font-size: 18px;
}
.skills-list {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.skill-tag {
background: #e9ecef;
color: #495057;
padding: 6px 12px;
border-radius: 20px;
font-size: 14px;
transition: all 0.3s ease;
}
.skill-tag:hover {
background: #667eea;
color: white;
transform: scale(1.05);
}
/* === ACTION BUTTONS === */
.card-actions {
padding: 0 25px 25px;
display: flex;
gap: 12px;
}
.btn {
padding: 12px 24px;
border: none;
border-radius: 8px;
font-size: 14px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
flex: 1;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.btn-primary {
background: #667eea;
color: white;
}
.btn-primary:hover {
background: #5a6fd8;
transform: translateY(-2px);
}
.btn-secondary {
background: transparent;
color: #667eea;
border: 2px solid #667eea;
}
.btn-secondary:hover {
background: #667eea;
color: white;
}