:root {
    --primary-color: #2d3436;
    --secondary-color: #0984e3;
    --accent-color: #00b894;
    --text-color: #2d3436;
    --light-bg: #f5f6fa;
    --white: #ffffff;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 0 2rem;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

nav ul li {
    margin-left: 2rem;
}

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

nav ul li a:hover {
    color: var(--secondary-color);
}

.linkedin-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0077b5;
}

.linkedin-link i {
    font-size: 1.2rem;
}

.linkedin-link:hover {
    color: #005582;
}

/* Hero Section */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: -1;
}

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.hero-text {
    padding-right: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
}

.hero-main {
    max-width: 800px;
}

#hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

#hero h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    opacity: 0.9;
}

.hero-stats {
    grid-column: 1 / -1;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

.cta-buttons {
    grid-column: 1 / -1;
    display: flex;
    gap: 1.5rem;
}

.cta-primary, .cta-secondary {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(9, 132, 227, 0.2);
}

.cta-secondary {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.cta-primary:hover, .cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(9, 132, 227, 0.3);
}

.hero-visual {
    position: relative;
    top: auto;
    margin-top: 1rem;
}

.experience-badge {
    background: var(--white);
    padding: 2rem;
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    text-align: center;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.experience-badge .label {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Responsive adjustments for hero section */
@media (max-width: 1024px) {
    .hero-text {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        position: relative;
        top: 0;
        justify-self: center;
        margin-bottom: 2rem;
    }

    #hero h1 {
        font-size: 3rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .experience-badge {
        width: 150px;
        height: 150px;
    }

    .experience-badge .years {
        font-size: 2.5rem;
    }
}

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

.key-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.experience-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.year {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Expertise Section */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.expertise-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.expertise-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.expertise-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-wrapper-simple {
    max-width: 800px;
    margin: 3rem auto;
    text-align: center;
}

.contact-message {
    margin-bottom: 2rem;
}

.contact-message p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-color);
    padding: 1rem 2rem;
    background: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: var(--secondary-color);
}

.social-link i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
    
    .contact-message p {
        font-size: 1.1rem;
    }
}

/* About Section Styles */
.summary {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 900px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

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

.highlight-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.highlights {
    list-style: none;
}

.highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.highlights li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.competencies {
    margin-top: 4rem;
}

.competencies h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.competencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.competency-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.competency-card:hover {
    transform: translateY(-5px);
}

.competency-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.competency-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }

    #hero h2 {
        font-size: 1.5rem;
    }

    .experience-item {
        grid-template-columns: 1fr;
    }

    nav ul {
        justify-content: center;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .competencies-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

.achievements {
    list-style: none;
    margin-top: 1rem;
}

.achievements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

/* Add after existing hero styles */

.welcome-message {
    margin: 2rem 0;
    grid-column: 1 / -1;
}

.welcome-message p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.welcome-message p:first-child {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--secondary-color);
}

/* Adjust responsive styles */
@media (max-width: 768px) {
    .welcome-message p {
        font-size: 1rem;
    }
    
    .welcome-message p:first-child {
        font-size: 1.2rem;
    }
}

/* After welcome-message styles */

.opportunities-banner {
    grid-column: 1 / -1;
    margin-bottom: 2rem;
}

.opportunities-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.opportunities-header i {
    font-size: 1.2rem;
}

.role-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.role-category h4 {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.target-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.role-tag {
    background: var(--white);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(9, 132, 227, 0.2);
}

.role-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(9, 132, 227, 0.15);
    background: var(--secondary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .opportunities-banner {
        padding: 1rem;
    }
    
    .role-tag {
        font-size: 0.9rem;
    }
}

.location {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.location i {
    color: var(--accent-color);
} 