/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo h2 {
    color: #1a1a1a;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cv-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
}

.cv-link::after {
    display: none;
}

.cv-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding-top: 80px;
    position: relative;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.greeting {
    display: block;
    font-size: 1.5rem;
    color: #666;
    font-weight: 400;
}

.name {
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: white;
    color: #667eea;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-container {
    position: relative;
}

.profile-image {
    width: 350px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: translateY(-10px);
}

/* Profile Placeholder Styles */
.profile-placeholder {
    width: 350px;
    height: 400px;
    background: linear-gradient(135deg, #f0f2ff 0%, #e8ebff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    border: 2px dashed #667eea;
}

.profile-placeholder:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #e8ebff 0%, #f0f2ff 100%);
}

.placeholder-content {
    text-align: center;
    color: #667eea;
}

.placeholder-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.placeholder-content p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    border-top: 1px solid #e9ecef;
}

.about-intro {
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 500;
}

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

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

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

.highlight-item i {
    font-size: 2rem;
    color: #667eea;
    margin-top: 0.5rem;
}

.highlight-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.highlight-item p {
    color: #555;
    line-height: 1.6;
    font-weight: 400;
}

/* Personal Branding Section */
.personal-branding {
    padding: 6rem 0;
    background: #f8f9ff;
}

.branding-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.branding-photo {
    position: sticky;
    top: 100px;
}

.branding-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.branding-image:hover {
    transform: translateY(-5px);
}

.branding-statement {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.value-proposition {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e8ebff;
}

.value-proposition h3 {
    color: #1a1a1a;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.value-proposition h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.value-text {
    font-size: 1.3rem;
    color: #667eea;
    font-style: italic;
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 1.5rem;
    background: #f8f9ff;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.value-proposition p:last-child {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

.core-strengths, .professional-aspirations, .unique-differentiators {
    margin-bottom: 3rem;
}

.core-strengths h3, .professional-aspirations h3, .unique-differentiators h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.core-strengths h3::before, .professional-aspirations h3::before, .unique-differentiators h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.strength-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9ff;
    border-radius: 12px;
    border: 1px solid #e8ebff;
    transition: transform 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-2px);
}

.strength-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.strength-content h4 {
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.strength-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.aspirations-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.aspiration-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9ff;
    border-radius: 12px;
    border: 1px solid #e8ebff;
}

.aspiration-item i {
    font-size: 1.5rem;
    color: #667eea;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.aspiration-item h4 {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.aspiration-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.differentiators-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.diff-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #f8f9ff;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.diff-point i {
    color: #667eea;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.diff-point span {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Responsive for Personal Branding */
@media (max-width: 768px) {
    .branding-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .branding-photo {
        position: static;
        text-align: center;
    }
    
    .branding-image {
        width: 280px;
        height: 350px;
    }
    
    .branding-statement {
        padding: 2rem;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    
    .strength-item, .aspiration-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Experience Section */
.experience {
    padding: 6rem 0;
    background: #f8f9ff;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e6ed;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    padding-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    background: #667eea;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #e0e6ed;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.timeline-title {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.timeline-company {
    font-size: 1.1rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.timeline-period {
    color: #888;
    font-weight: 500;
    margin-bottom: 1rem;
}

.timeline-description {
    list-style: none;
    padding: 0;
}

.timeline-description li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.5rem;
    color: #666;
}

.timeline-description li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Education Section */
.education {
    padding: 6rem 0;
    background: white;
}

.education-grid {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.education-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: #f8f9ff;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.education-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.education-content h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.education-content h4 {
    font-size: 1.1rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.education-period {
    color: #888;
    font-weight: 500;
    margin-bottom: 1rem;
}

.education-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.education-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-tag {
    background: #667eea;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Skills Section */
.skills {
    padding: 6rem 0;
    background: #f8f9ff;
}

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

.skill-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
}

.skill-category h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-item {
    background: #f0f2ff;
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* CV Section */
.cv-section {
    padding: 6rem 0;
    background: white;
}

.cv-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.cv-info h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cv-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cv-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cv-preview {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 15px;
}

.pdf-preview {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pdf-preview iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f8f9ff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateX(5px);
}

.contact-method i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method h4 {
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-method a {
    color: #667eea;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.footer-info p {
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    background: #667eea;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

    .cv-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .education-item {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        padding-left: 0;
    }

    .timeline-marker {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .profile-image {
        width: 280px;
        height: 320px;
    }

    .profile-placeholder {
        width: 280px;
        height: 320px;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .cv-buttons {
        align-items: stretch;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-intro,
.timeline-item,
.education-item,
.skill-category {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.pdf-preview iframe {
    background: #f8f9ff;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .hero-buttons,
    .social-links,
    .contact-form {
        display: none !important;
    }
    
    body {
        color: black !important;
        background: white !important;
    }
    
    .section-title::after {
        display: none;
    }
}

/* Projects Section */
.projects {
    padding: 6rem 0;
    background: white;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: -2rem auto 4rem;
    line-height: 1.6;
}

.project-showcase {
    background: #f8f9ff;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.project-header {
    text-align: center;
    margin-bottom: 2rem;
}

.project-title {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-description {
    text-align: center;
    margin-bottom: 3rem;
}

.project-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* H1B Dashboard Image Styles */
.dashboard-image-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

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

.highlight-box {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8ebff;
}

.highlight-box h4 {
    color: #1a1a1a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-box h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-box li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #666;
    border-bottom: 1px solid #e8ebff;
}

.highlight-box li:last-child {
    border-bottom: none;
}

.highlight-box li strong {
    color: #667eea;
    font-weight: 600;
}

.highlight-box li i {
    color: #667eea;
    width: 16px;
    flex-shrink: 0;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.dashboard-header h4 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: #666;
    font-size: 1rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.metric-card {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8ebff;
}

.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.metric-content {
    flex: 1;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.metric-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.charts-section {
    margin-bottom: 3rem;
}

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

.chart-container {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8ebff;
}

.chart-container h5 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.chart-container canvas {
    width: 100% !important;
    height: 300px !important;
}

.insights-section {
    margin-bottom: 3rem;
}

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

.insight-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.insight-card h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.insight-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insight-card li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.insight-card i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.methodology-section {
    margin-bottom: 3rem;
}

.methodology-section h5 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.method-item {
    background: #f8f9ff;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #e8ebff;
    transition: transform 0.3s ease;
}

.method-item:hover {
    transform: translateY(-2px);
}

.method-item i {
    color: #667eea;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-item span {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.project-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Future Projects */
.future-projects {
    margin-top: 2rem;
}

.future-projects h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 2rem;
}

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

.project-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.project-card .project-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.project-card h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.project-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive Design for Projects */
@media (max-width: 768px) {
    .project-showcase {
        padding: 2rem 1.5rem;
    }
    
    .project-title {
        font-size: 1.6rem;
    }
    
    .dashboard-image-container {
        padding: 1.5rem;
    }
    
    .dashboard-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-box {
        padding: 1.5rem;
    }
    
    .project-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .project-showcase {
        padding: 1.5rem 1rem;
    }
    
    .dashboard-image-container {
        padding: 1rem;
    }
    
    .highlight-box {
        padding: 1.25rem;
    }
    
    .highlight-box h4 {
        font-size: 1.1rem;
    }
    
    .highlight-box li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
}

/* PIMCO Project Styles */
.project-images {
    margin: 2rem 0;
}

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

.image-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.image-item:hover {
    transform: translateY(-3px);
}

.project-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.image-caption {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

.technical-features {
    margin: 3rem 0;
}

.technical-features h4 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

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

.feature-item {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e8ebff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.feature-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h5 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.code-section {
    margin: 3rem 0;
    background: #f8f9ff;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #e8ebff;
}

.code-section h4 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

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

.code-block {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.code-block h5 {
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.code-block h5::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.code-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.code-block li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.code-block li:last-child {
    border-bottom: none;
}

.code-block li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.code-block strong {
    color: #1a1a1a;
    font-weight: 600;
}

.holdings-section {
    margin: 3rem 0;
}

.holdings-section h4 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.holdings-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8ebff;
}

.holdings-info p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.holdings-info strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsive for PIMCO project */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .code-highlights {
        grid-template-columns: 1fr;
    }
    
    .code-section {
        padding: 2rem 1.5rem;
    }
    
    .image-item {
        padding: 1rem;
    }
}

/* NOW Corp Investment Thesis Styles */
.investment-highlights {
    margin: 2.5rem 0;
}

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

.highlight-metric {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.highlight-metric:hover {
    transform: translateY(-5px);
}

.highlight-metric .metric-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.highlight-metric .metric-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.highlight-metric .metric-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.thesis-section {
    margin: 3rem 0;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.thesis-section h4 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.thesis-content {
    display: grid;
    gap: 2rem;
}

.thesis-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9ff;
    border-radius: 12px;
    border: 1px solid #e8ebff;
}

.thesis-point i {
    font-size: 2rem;
    color: #667eea;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.thesis-point h5 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.thesis-point p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.team-section {
    margin: 3rem 0;
}

.team-section h4 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

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

.team-info, .presentation-info {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8ebff;
}

.team-info h5, .presentation-info h5 {
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.team-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e8ebff;
    color: #666;
    font-size: 0.95rem;
}

.team-list li:last-child {
    border-bottom: none;
}

.team-list strong {
    color: #1a1a1a;
    font-weight: 600;
}

.presentation-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.presentation-info li {
    padding: 0.6rem 0;
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.presentation-info li::before {
    content: '✓';
    color: #667eea;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.differentiators-section {
    margin: 3rem 0;
}

.differentiators-section h4 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

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

.diff-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.diff-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    display: block;
}

.diff-item h5 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.diff-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive for NOW Corp project */
@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .highlight-metric {
        padding: 1.5rem;
    }
    
    .highlight-metric .metric-number {
        font-size: 1.8rem;
    }
    
    .thesis-point {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .team-content {
        grid-template-columns: 1fr;
    }
    
    .differentiators-grid {
        grid-template-columns: 1fr;
    }
}