:root {
    --primary-color: #ff3366;
    /* --bg-gradient: linear-gradient(135deg, rgba(255,230,240,0.5), rgba(230,250,255,0.5)); */
    /* --bg-gradient: linear-gradient(to right, #a8c0ff, #522eedc2); */
    --bg-gradient: linear-gradient(to right, #00b09b, #09796b);
    --card-bg: white;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    background: var(--bg-gradient);
    color: var(--text-color);
    line-height: 1.6;
}
a{
    text-decoration: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

/* Profile Sidebar */
.profile-sidebar {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 10rem;
    height: fit-content;
}

.profile-image {
    width: 235px;
    height: 235px;
    border-radius: 75%;
    margin-bottom: 1rem;
    margin-top: -150px;
    object-fit: cover;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-info {
    margin: 1.5rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.download-button {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    width: 100%;
    font-weight: 500;
    transition: opacity 0.2s;
}

.download-button:hover {
    opacity: 0.9;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
    .section {
        justify-items: center;
    }
}

.about{
    margin-top: 2rem;padding: 0;
}

#whatIdo{
    min-height: 300px;
}

.section-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* What I do Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    transition: transform 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}
.resume-section {
    float: left;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
    width: 100%;
}
.service-card--title{
    font-weight: bold;
    font-size: 16px;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Skills */
.skills-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-category {
    margin-bottom: 1.5rem;
}

.skill-category h3 {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-item {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.2s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.project-info {
    padding: 1rem;
}

/* Resume */
/* .resume-item {
    margin-bottom: 1.5rem;
} */

.resume-item h3 {
    color: #444;
    margin-bottom: 0.5rem;
}

.resume-date {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }

    .profile-sidebar {
        position: static;
        margin-top: 8rem;
    }

    .services-grid {
        /* grid-template-columns: 1fr; */
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        width: 100%;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}





.tips-section h2 {
    margin-bottom: 1.5rem;
}

.tip-card {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    background: #afb2d8;
    color: #ffffff;
    margin-top: 0.5rem;
    margin-right: 0.5rem;
}

.load-more {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.chevron-down {
    width: 20px;
    height: 20px;
    transition: transform 0.2s;
}

.chevron-down.rotate {
    transform: rotate(180deg);
}

.hidden {
    display: none;
}

.email-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}
.input-group {
    margin: 2rem 0;
}
input[type="email"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.email-list-button {
    padding: 1rem;
    background: #335bc4;
    color: #ffffff;
    width: 300px;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.funnel{
    font-weight: bold;
    font-size: 20px;
}



.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
}

.social-link.github:hover {
    background: rgba(0, 0, 0, 0.1);
    color: white;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

/* Add the social icons from Unicode */
.icon {
    font-size: 1.5rem;
}