@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.02);
    --accent-primary: #10b981; /* Emerald */
    --accent-secondary: #3b82f6; /* Modern Blue */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background effects */
.bg-blob {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(100px);
    animation: move 25s infinite alternate;
}

@keyframes move {
    0% { transform: translate(-10%, -10%) scale(1); }
    100% { transform: translate(15%, 15%) scale(1.1); }
}

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

/* Glassmorphism */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem;
    transition: var(--transition);
}

.glass:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Typography */
h1 {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
header {
    min-height: 80vh;
    padding: 4rem 0;
}

.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    text-align: left;
}

.hero-content {
    flex: 1;
}

.profile-container.corner {
    flex-shrink: 0;
}

.profile-img-small {
    width: 140px;
    height: 140px;
    border-radius: 30px; /* Slightly squared for premium look */
    object-fit: cover;
    border: 2px solid var(--glass-border);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    padding: 3px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.status-badge-mini {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.bio {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-primary {
    background: #fff;
    color: #000;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

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

.skill-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

/* Timeline */
.timeline-container {
    padding: 0;
    overflow: hidden;
}

.exp-item {
    padding: 3rem;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.exp-item:last-child {
    border-bottom: none;
}

.exp-item:hover {
    background: rgba(255, 255, 255, 0.01);
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.company-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.company-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 14px;
    background: #fff; /* White background to make non-transparent logos look like app icons */
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.exp-item:hover .company-logo {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.2);
}

.exp-header h3 {
    font-size: 1.4rem;
    color: #fff;
    margin: 0;
}

.role {
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
    h1 { font-size: 3.5rem; }
    .btn-group { flex-direction: column; width: 100%; }
    .container { padding: 1rem; }
    .glass { padding: 2rem; }
    .exp-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .company-title { gap: 1rem; }
}
