/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 350px 1fr;
    min-height: calc(100vh - 40px);
}

/* Left Column Styles */
.left-column {
    background: #f8f9fa;
    padding: 40px 30px;
    border-right: 1px solid #e9ecef;
}

.profile-section {
    text-align: center;
    margin-bottom: 40px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.title {
    color: #7c4dff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.tagline {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1rem;
}

.description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-section,
.education-section {
    margin-bottom: 40px;
}

.contact-section h3,
.education-section h3 {
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-item .icon {
    margin-right: 12px;
    font-size: 1rem;
}

.education-item h4 {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.education-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.date {
    font-style: italic;
}

/* Right Column Styles */
.right-column {
    padding: 40px;
    background: white;
}

.experience-section h2,
.projects-section h2 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.job {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.job:last-child {
    border-bottom: none;
}

.company-header {
    margin-bottom: 20px;
}

.company-header h3 {
    color: #7c4dff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.role {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

.company-header .date {
    color: #6c757d;
    font-size: 0.9rem;
}

.projects h4 {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

.projects ul {
    list-style: none;
    margin-bottom: 20px;
}

.projects li {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.projects li:before {
    content: "•";
    color: #7c4dff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Projects Section */
.projects-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.project-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease;
}

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

.project-image {
    height: 120px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    border-radius: 10px;
}

.cart-page {
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
}

.cart-page-2 {
    background: linear-gradient(45deg, #a8edea, #fed6e3);
}

.project-card h4 {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-card p {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.read-more {
    color: #7c4dff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Bottom Section */
.bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.skills-section h3,
.tools-section h3 {
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.skills-section ul,
.tools-section ul {
    list-style: none;
}

.skills-section li,
.tools-section li {
    color: #495057;
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
}

.skills-section li:last-child,
.tools-section li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        grid-template-columns: 1fr;
        border-radius: 15px;
    }

    .left-column,
    .right-column {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bottom-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .left-column,
    .right-column {
        padding: 20px 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }
}
