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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #f8fafc;
}

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

/* Header / Nav */
.navbar {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    z-index: 100;
    border-bottom: 1px solid #e2e8f0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #0f172a;
}

.logo span {
    color: #4f46e5;
    /* accent color */
}

.nav-links a {
    color: #334155;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #4f46e5;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1 1 400px;
}

.hero-content .badge {
    display: inline-block;
    background-color: #e0e7ff;
    color: #4f46e5;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #0f172a;
}

.hero-content h1 .highlight {
    color: #4f46e5;
}

.hero-content p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #4f46e5;
    color: white;
}

.btn-primary:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.3);
}

.btn-outline {
    border-color: #cbd5e1;
    color: #334155;
}

.btn-outline:hover {
    border-color: #4f46e5;
    color: #4f46e5;
    background-color: #f8fafc;
}

.hero-image {
    flex: 1 1 300px;
    text-align: center;
}

.hero-image i {
    font-size: 15rem;
    color: #4f46e5;
    opacity: 0.2;
}

/* Skills Section */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #0f172a;
}

.section-title span {
    color: #4f46e5;
}

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

.skill-card {
    background-color: white;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e2e8f0;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.skill-card i {
    font-size: 2.5rem;
    color: #4f46e5;
    margin-bottom: 0.75rem;
}

.skill-card h3 {
    font-size: 1rem;
    font-weight: 600;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.project-card {
    background-color: white;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: 0.2s;
}

.project-card:hover {
    border-color: #4f46e5;
}

.project-card .company {
    font-weight: 600;
    color: #4f46e5;
    margin-bottom: 0.25rem;
}

.project-card .date {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
    display: block;
}

.project-icon {
    font-size: 2rem;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.project-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tag {
    background-color: #e0e7ff;
    color: #4f46e5;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.project-link {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.project-link:hover {
    gap: 1rem;
}

/* Contact Section */
.contact {
    background-color: white;
    border-radius: 40px;
    padding: 3rem 2rem;
    margin: 4rem auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    max-width: 36rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: #475569;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
}

.contact-item i {
    width: 2rem;
    color: #4f46e5;
    font-size: 1.5rem;
}

.contact-item a {
    color: #334155;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #4f46e5;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    color: #94a3b8;
    font-size: 1.5rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #4f46e5;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    color: #64748b;
    border-top: 1px solid #e2e8f0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links a {
        margin: 0 0.75rem;
    }

    .hero .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}