/* Global Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #ffffff;
    --section-bg: #f3f4f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--background);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 44px;
    width: auto;
    display: block;
    margin: 0 auto;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 100%);
    padding: 0 2rem;
}

.profile-container {
    margin-bottom: 2rem;
}

.profile-image {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.05);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hero-content h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 2rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Sections */
section {
    padding: 5rem 2rem;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* About Section */
.about {
    background: var(--section-bg);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-category {
    background: var(--background);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.skill-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    margin-bottom: 0.5rem;
    color: var(--light-text);
    background: var(--background);
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    padding: 0.7rem 1.2rem;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s, color 0.2s;
    cursor: pointer;
}

.skill-category li:hover {
    box-shadow: 0 6px 18px rgba(37,99,235,0.13);
    background: #f0f6ff;
    color: var(--primary-color);
    transform: translateY(-6px) scale(1.04);
}

/* Experience Section */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    padding: 2rem;
    background: var(--background);
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.date {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-content .location {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.timeline-content ul {
    list-style: none;
    color: var(--light-text);
    margin-left: 0;
    padding-left: 0;
}

.timeline-content li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.timeline-content li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.timeline-content ul ul {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.timeline-content ul ul li {
    font-size: 0.95rem;
    color: var(--light-text);
}

.timeline-content strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Contact Section */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-links a {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: var(--section-bg);
    color: var(--light-text);
}

/* Learning Goals Section */
.learning-goals {
    background: var(--section-bg);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.goal-category {
    background: var(--background);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.goal-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.goal-category ul {
    list-style: none;
    padding-left: 0;
}

.goal-category li {
    margin-bottom: 0.8rem;
    color: var(--light-text);
    position: relative;
    padding-left: 1.5rem;
    background: var(--background);
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    padding: 0.7rem 1.2rem;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s, color 0.2s;
    cursor: pointer;
}

.goal-category li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.goal-category li:hover {
    box-shadow: 0 6px 18px rgba(37,99,235,0.13);
    background: #f0f6ff;
    color: var(--primary-color);
    transform: translateY(-6px) scale(1.04);
}

/* Timeline v2 Section */
.timeline-v2 {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
}

.timeline-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    z-index: 1;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 2rem 2rem;
    box-sizing: border-box;
}

.timeline-item.left {
    left: 0;
    text-align: left;
}

.timeline-item.left .timeline-content {
    margin-right: 0;
    margin-left: 40px;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-item.right .timeline-content {
    margin-left: 40px;
}

.exp-meta {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.timeline-content {
    background: var(--background);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
    display: inline-block;
    min-width: 320px;
    max-width: 95%;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.timeline-content ul {
    list-style: none;
    color: var(--light-text);
    margin-left: 0;
    padding-left: 0;
}

.timeline-content li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {
        width: 100%;
        left: 0 !important;
        text-align: left;
    }
    .timeline-v2::before {
        left: 20px;
        transform: none;
    }
    .timeline-content {
        margin: 0 0 2rem 40px !important;
        min-width: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
}

/* Strengths Section */
.strengths {
    background: var(--section-bg);
    padding: 4rem 2rem;
    text-align: center;
}

.strengths h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.strengths-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.strengths-list li {
    background: var(--background);
    color: var(--text-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    min-width: 180px;
    margin-bottom: 1rem;
    transition: box-shadow 0.2s;
    background: var(--background);
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    padding: 0.7rem 1.2rem;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s, color 0.2s;
    cursor: pointer;
}

.strengths-list li:hover {
    box-shadow: 0 6px 18px rgba(37,99,235,0.13);
    background: #f0f6ff;
    color: var(--primary-color);
    transform: translateY(-6px) scale(1.04);
}

/* Proficiency Section */
.proficiency {
    background: var(--background);
    padding: 4rem 2rem;
}

.proficiency h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

.proficiency-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.proficiency-category h3 {
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    text-align: left;
}

.progress-item {
    margin-bottom: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--background);
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    padding: 0.7rem 1.2rem;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s, color 0.2s;
    cursor: pointer;
}

.progress-item span {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    background: var(--section-bg);
    border-radius: 8px;
    height: 22px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.progress-bar > div {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 60%, var(--secondary-color) 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: right;
    padding-right: 10px;
    border-radius: 8px 0 0 8px;
    display: flex;
    align-items: center;
    transition: width 0.7s cubic-bezier(.4,2.3,.3,1);
}

.progress-item:hover {
    box-shadow: 0 6px 18px rgba(37,99,235,0.13);
    background: #f0f6ff;
    color: var(--primary-color);
    transform: translateY(-6px) scale(1.04);
}

@media (max-width: 900px) {
    .proficiency-categories {
        grid-template-columns: 1fr;
    }
}

/* Remove special cloud platforms styling */
.cloud-platforms,
.cloud-skill,
.cloud-title,
.cloud-dot,
.aws-dot,
.gcp-dot,
.azure-dot,
.cloud-skill ul,
.cloud-skill li,
.cloud-simple-list,
.cloud-simple-list li,
.cloud-simple-list li:hover {
    /* Remove these styles as they're no longer needed */
}

.timeline-ball {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(37,99,235,0.18);
    z-index: 10;
    border: 4px solid #fff;
    transition: top 0.2s cubic-bezier(.4,2.3,.3,1);
    pointer-events: none;
} 