﻿/* General Styles */
body {
    padding-top: 56px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.section-title {
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 600;
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,.125);
    font-weight: 600;
}

/* Experience Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    padding: 20px;
    border-left: 2px solid #007bff;
    position: relative;
    margin-bottom: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 24px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #007bff;
}

/* Skills Section */
.skill-item {
    margin-bottom: 1rem;
}

.skill-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.progress {
    height: 0.5rem;
    border-radius: 0.25rem;
}

/* Education Section */
.education-item {
    margin-bottom: 2rem;
}

.education-title {
    font-weight: 600;
    color: #2c3e50;
}

.education-date {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-icon {
    margin-right: 10px;
    color: #007bff;
}

.linkedin-link {
    display: block;
    text-decoration: none;
    color: #0077b5;
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    border: 1px solid #e9ecef;
}

.linkedin-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #0077b5;
    text-decoration: none;
}

.linkedin-link i {
    color: #0077b5;
    transition: transform 0.3s ease;
}

.linkedin-link:hover i {
    transform: scale(1.1);
}

.linkedin-link h4 {
    color: #2c3e50;
    font-weight: 600;
}

.linkedin-link p {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    padding: 1rem 0;
    margin-top: 2rem;
    border-top: 1px solid #dee2e6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section {
        padding: 2rem 0;
    }
    
    .timeline-item {
        padding: 15px;
    }
}
