:root {
    /* Color Palette */
    --bg-color: #F8F9FA;
    --card-bg: #FFFFFF;
    --text-main: #1C1E21;
    --text-muted: #6C757D;

    /* Accents */
    --primary: #4361EE;
    --purple: #8338EC;
    --pink: #FF006E;
    --orange: #FB5607;
    --yellow: #FFBE0B;
    --green: #2EC4B6;

    /* Layout */
    --radius: 28px;
    --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px -15px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 50px;
}

/* Abstract Background Blob */
.blob-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(67, 97, 238, 0.05) 0%, rgba(255, 0, 110, 0.03) 30%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    animation: rotate-bg 60s linear infinite;
}

@keyframes rotate-bg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Typography Base */
h1,
h2,
h3,
h4 {
    letter-spacing: -0.02em;
    color: var(--text-main);
}

p {
    color: var(--text-muted);
}

/* Glass Navbar */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background: var(--text-main);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(28, 30, 33, 0.2);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 120px auto 0;
    padding: 0 20px;
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 24px;
    grid-auto-flow: dense;
}

.bento-item {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Grid Cell Placements */
.hero-item {
    grid-column: span 3;
    grid-row: span 1;
}

.focus-item {
    grid-column: span 2;
    grid-row: span 1;
    color: white;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.focus-item .bento-icon {
    font-size: 4rem;
    margin-bottom: 0;
}

.photo-item {
    grid-column: span 1;
    grid-row: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f3ff 0%, #ffffff 100%);
}

.experience-highlight {
    grid-column: span 2;
    grid-row: span 1;
}

.accordion-item {
    grid-column: span 2;
    grid-row: span 2;
}

.skills-item {
    grid-column: span 2;
    grid-row: span 1;
}

.edu-item {
    grid-column: span 2;
    grid-row: span 1;
    color: white;
}

.cta-item {
    grid-column: span 4;
    grid-row: span 1;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
}

/* Background Utilities */
.bg-gradient-1 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
}

.bg-gradient-2 {
    background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
}

.bg-dark {
    background: var(--text-main);
    color: white;
}

.bg-dark h2 {
    color: white;
}

/* Hero Content Styling */
.tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h2 {
    font-size: 1.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.15rem;
    max-width: 550px;
    margin-bottom: 24px;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 24px;
}

.hero-metric {
    display: flex;
    align-items: center;
    gap: 12px;
}

.metric-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.location {
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Gradient Cards Text */
.bg-gradient-1 p,
.bg-gradient-2 p {
    color: rgba(255, 255, 255, 0.9);
}

.bg-gradient-1 h3,
.bg-gradient-2 h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.bento-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

/* Photo Avatar */
.avatar-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.2);
    animation: float 6s ease-in-out infinite;
    overflow: hidden;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Experience Highlight */
.bento-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pill {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pill.bg-green {
    background: rgba(46, 196, 182, 0.1);
    color: var(--green);
}

.experience-highlight h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.experience-stats {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.stat span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Accordion / Job List */
.accordion-item h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: var(--transition);
}

.job:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.job-role {
    font-weight: 600;
    color: var(--text-main);
}

.job-company {
    color: var(--text-muted);
}

.job-time {
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Skills */
.skills-item h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sk-tag {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: default;
    transition: var(--transition);
}

.sk-tag:hover {
    transform: scale(1.05);
}

.sk-tag.bg-pink {
    background: rgba(255, 0, 110, 0.1);
    color: var(--pink);
}

.sk-tag.bg-blue {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
}

.sk-tag.bg-yellow {
    background: rgba(255, 190, 11, 0.15);
    color: #d49c00;
}

.sk-tag.bg-purple {
    background: rgba(131, 56, 236, 0.1);
    color: var(--purple);
}

.sk-tag.bg-green {
    background: rgba(46, 196, 182, 0.1);
    color: var(--green);
}

.sk-tag.bg-orange {
    background: rgba(251, 86, 7, 0.1);
    color: var(--orange);
}

/* Education Block */
.edu-item {
    justify-content: flex-start;
    gap: 24px;
}

.edu-block h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 4px;
}

/* CTA Item */
.glow {
    box-shadow: 0 0 20px rgba(67, 97, 238, 0.5);
    background: var(--primary);
}

.glow:hover {
    box-shadow: 0 0 30px rgba(67, 97, 238, 0.8);
    background: #324edb;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-item,
    .experience-highlight,
    .accordion-item,
    .skills-item,
    .edu-item,
    .cta-item {
        grid-column: span 2;
    }

    .focus-item,
    .photo-item {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .hero-item,
    .focus-item,
    .photo-item,
    .experience-highlight,
    .accordion-item,
    .skills-item,
    .edu-item,
    .cta-item {
        grid-column: span 1;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .job {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .job-time {
        text-align: left;
    }
}


