* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #faf5f5;
    color: #333333;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.profile {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.profile-info h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.profile-info h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.main-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.left-column, .right-column {
    flex: 1;
    min-width: 300px;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #2a5298;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f4f8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card h3 i {
    font-size: 1.2rem;
}

.timeline-item {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 2px solid #eaeaea;
    position: relative;
}

.timeline-item:before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2a5298;
    left: -7px;
    top: 5px;
}

.timeline-date {
    font-weight: 600;
    color: #2a5298;
    margin-bottom: 5px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill {
    background: #eef4ff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #2a5298;
    font-weight: 500;
}

.progress-bar {
    height: 8px;
    background: #eaeaea;
    border-radius: 4px;
    margin: 10px 0;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #2a5298;
    border-radius: 4px;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    color: #666;
    border-top: 1px solid #eaeaea;
}

.footer-a{
    color:#2a5298;
    text-decoration: none;
}


.footer-a:hover{
    color:rgb(226, 230, 41)
}

.footer-b{
    color:#1d8f7c;
    text-decoration: none;
}


.footer-b:hover{
    color:rgb(64, 168, 197)
}

@media (max-width: 768px) {
    .profile {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-img {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .contact-info {
        justify-content: center;
    }
}