:root {
    --primary-color: #ff8c00; /* Vibrant Orange */
    --secondary-color: #00ced1; /* Dark Turquoise */
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --text-color: #212529;
    --border-radius: 15px;
    --shadow: 0 10px 20px rgba(0,0,0,0.1);
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    background-color: var(--light-gray);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.hero {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 10rem 0;
    margin-bottom: 0;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero h1 {
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.profile-pic {
    max-width: 250px;
    border: 5px solid white;
    box-shadow: var(--shadow);
    margin: 0 auto;
    display: block;
}

#about {
    background-color: white;
}

.section-title {
    padding-bottom: 3rem;
}

.skill-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.skill-card i {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #e67e00;
    border-color: #e67e00;
    transform: translateY(-3px);
}

.btn-outline-light {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--text-color);
    transform: translateY(-3px);
}


#contact .social-links a {
    background-color: var(--dark-gray);
    color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 2rem;
}

#contact .social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

footer {
    background-color: var(--dark-gray);
    padding: 3rem 0;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #e9ecef;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 80px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 80px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 5px solid var(--primary-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    left: -17px;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}
.timeline-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
}