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

:root {
    --cream: #FDFBF7;
    --ink: #1A1A1A;
    --charcoal: #2D2D2D;
    --slate: #6B6B6B;
    --soft-gray: #E8E6E1;
    --accent: #C84B31;
    --accent-light: #E67E5F;
    --highlight: #2E5266;
    --highlight-light: #6D9DC5;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Decorative background elements */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.bg-decoration::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 75, 49, 0.06) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.bg-decoration::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 82, 102, 0.05) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    padding: 80px 0 120px;
    position: relative;
    animation: fadeInDown 0.8s ease-out;
}

.header-number {
    position: absolute;
    top: 60px;
    right: 60px;
    font-size: 180px;
    font-weight: 800;
    color: var(--soft-gray);
    line-height: 1;
    opacity: 0.6;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.name {
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--ink) 0%, var(--charcoal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.contact-bar {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    animation: fadeIn 1s ease-out 0.5s backwards;
    align-items: center;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    color: var(--slate);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.contact-item:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
    transform: translateY(-2px);
}

/* Section Headers */
.section {
    margin-bottom: 120px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.section:nth-child(2) {
    animation-delay: 0.2s;
}

.section:nth-child(3) {
    animation-delay: 0.4s;
}

.section:nth-child(4) {
    animation-delay: 0.6s;
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
}

.section-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
}

.section-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--soft-gray) 0%, transparent 100%);
    align-self: center;
}

/* About Section */
.about-content {
    margin-top: 40px;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 30px;
}

.skills-section {
    margin-top: 40px;
}

.skills-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 16px;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.skill-tag {
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--soft-gray);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.skill-tag:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* Experience Section */
.experience-item {
    margin-bottom: 60px;
    padding-left: 40px;
    border-left: 3px solid var(--soft-gray);
    position: relative;
    transition: all 0.3s ease;
}

.experience-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 13px;
    height: 13px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--cream);
}

.experience-item:hover {
    border-left-color: var(--accent);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 10px;
}

.company-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
}

.date-range {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.role-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--highlight);
    margin-bottom: 16px;
}

.experience-item ul {
    list-style: none;
    margin-top: 16px;
}

.experience-item li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    color: var(--charcoal);
    font-size: 16px;
    line-height: 1.7;
}

.experience-item li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Startup Projects Section - HIGHLIGHTED */
.projects-section {
    /* background: linear-gradient(135deg, rgba(46, 82, 102, 0.03) 0%, rgba(200, 75, 49, 0.02) 100%); */
    margin-left: -60px;
    margin-right: -60px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 75, 49, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.project-item {
    margin-bottom: 50px;
    padding-left: 40px;
    border-left: 3px solid var(--soft-gray);
    position: relative;
    transition: all 0.3s ease;
}

.project-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0px;
    width: 13px;
    height: 13px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 4px rgba(200, 75, 49, 0.1);
}

.project-item:hover {
    border-left-color: var(--accent);
}

.project-item:hover::before {
    box-shadow: 0 0 0 8px rgba(200, 75, 49, 0.15);
    transform: scale(1.2);
}

.project-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.project-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    text-transform: uppercase;
}

.project-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.5px;
    flex: 1;
}

.project-description {
    font-size: 16px;
    color: var(--charcoal);
    margin-bottom: 16px;
    line-height: 1.7;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    /* border-top: 1px solid var(--soft-gray); */
}

.tech-item {
    padding: 6px 12px;
    background: white;
    border: 1px solid var(--soft-gray);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--charcoal);
    transition: all 0.2s ease;
}

.tech-item:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--accent);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.project-link:hover {
    color: var(--highlight);
    border-bottom-color: var(--highlight);
    transform: translateX(5px);
}

.project-highlights {
    list-style: none;
    margin-top: 16px;
}

.project-highlights li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    color: var(--charcoal);
    font-size: 15px;
    line-height: 1.7;
}

.project-highlights li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Education Section */
.education-item {
    margin-bottom: 40px;
    padding-left: 40px;
    border-left: 3px solid var(--soft-gray);
    position: relative;
    transition: all 0.3s ease;
}

.education-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 13px;
    height: 13px;
    background: var(--highlight);
    border-radius: 50%;
    border: 3px solid var(--cream);
}

.education-item:hover {
    border-left-color: var(--highlight);
}

.degree {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.institution {
    font-size: 16px;
    color: var(--slate);
    font-weight: 500;
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 0;
    color: var(--slate);
    font-size: 14px;
    border-top: 1px solid var(--soft-gray);
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-text {
    color: var(--slate);
}

.social-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: white;
    border: 2px solid var(--soft-gray);
    border-radius: 6px;
    color: var(--charcoal);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-button:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 75, 49, 0.2);
}

.social-button.linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
}

.social-button.github:hover {
    background: var(--ink);
    border-color: var(--ink);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .projects-section {
        margin-left: -40px;
        margin-right: -40px;
        padding: 60px 40px;
    }

    .header-number {
        font-size: 140px;
        right: 40px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .projects-section {
        margin-left: -32px;
        margin-right: -32px;
        padding: 60px 32px;
    }

    .project-item {
        padding-left: 25px;
        margin-bottom: 40px;
    }

    .project-item::before {
        top: 0px;
        left: -10px;
    }

    .project-title {
        font-size: 20px;
    }

    .project-description {
        font-size: 15px;
    }

    .project-highlights li {
        font-size: 14px;
    }

    .header-number {
        font-size: 120px;
        right: 32px;
        top: 40px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .projects-section {
        margin-left: -20px;
        margin-right: -20px;
        padding: 50px 20px;
    }

    header {
        padding: 40px 0 60px;
    }

    .project-item {
        padding-left: 25px;
        margin-bottom: 35px;
    }

    .project-item::before {
        left: -6px;
        width: 11px;
        height: 11px;
        top: 6px;
    }

    .project-badge {
        padding: 4px 10px;
        font-size: 10px;
    }

    .project-title {
        font-size: 18px;
    }

    .project-description {
        font-size: 14px;
    }

    .project-highlights li {
        font-size: 14px;
        padding-left: 20px;
    }

    .tech-item {
        padding: 5px 10px;
        font-size: 11px;
    }

    .project-link {
        font-size: 14px;
    }

    .title {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .header-number {
        display: none;
    }

    .section-title {
        font-size: 28px;
    }

    .section-number {
        font-size: 14px;
    }

    .section-header {
        gap: 12px;
        margin-bottom: 30px;
    }

    .section {
        margin-bottom: 60px;
    }

    .about-text {
        font-size: 16px;
    }

    .skills-container {
        gap: 8px;
    }

    .skill-tag {
        padding: 8px 12px;
        font-size: 12px;
    }

    .experience-item {
        padding-left: 25px;
        margin-bottom: 40px;
    }

    .company-name {
        font-size: 20px;
    }

    .date-range {
        font-size: 12px;
        margin-top: 4px;
    }

    .role-title {
        font-size: 16px;
    }

    .experience-item li {
        font-size: 14px;
        padding-left: 20px;
        margin-bottom: 10px;
    }

    .project-card {
        padding: 30px 24px;
    }

    .project-title {
        font-size: 22px;
    }

    .project-description {
        font-size: 14px;
    }

    .project-highlights li {
        font-size: 14px;
        padding-left: 20px;
    }

    .tech-stack {
        gap: 6px;
    }

    .tech-item {
        padding: 5px 10px;
        font-size: 11px;
    }

    .education-item {
        padding-left: 25px;
        margin-bottom: 30px;
    }

    .education-item::before {
        left: -10px;
        width: 11px;
        height: 11px;
    }

    .degree {
        font-size: 18px;
    }

    .institution {
        font-size: 14px;
    }

    footer {
        padding: 40px 0;
        font-size: 12px;
    }

    .social-buttons {
        gap: 12px;
    }

    .social-button {
        font-size: 13px;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .projects-section {
        margin-left: -16px;
        margin-right: -16px;
        padding: 40px 16px;
    }

    header {
        padding: 30px 0 40px;
    }

    .project-item {
        padding-left: 20px;
        margin-bottom: 30px;
    }

    .project-item::before {
        left: -9px;
        width: 10px;
        height: 10px;
        top: 0px;
    }

    .project-header {
        gap: 10px;
        margin-bottom: 10px;
    }

    .project-title {
        font-size: 17px;
        line-height: 1.3;
    }

    .project-description {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .project-highlights {
        margin-top: 14px;
    }

    .project-highlights li {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 8px;
        padding-left: 18px;
    }

    .tech-stack {
        gap: 5px;
        margin-top: 14px;
        padding-top: 14px;
    }

    .tech-item {
        padding: 4px 8px;
        font-size: 10px;
    }

    .project-link {
        font-size: 13px;
        margin-top: 14px;
    }

    .name {
        letter-spacing: -0.5px;
        line-height: 95px;
    }

    .title {
        font-size: 14px;
        letter-spacing: 0.5px;
        margin-bottom: 1px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-number {
        font-size: 12px;
    }

    .section {
        margin-bottom: 50px;
    }

    .about-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .skills-container {
        gap: 6px;
    }

    .skill-tag {
        padding: 7px 10px;
        font-size: 11px;
    }

    .experience-item {
        padding-left: 20px;
        margin-bottom: 35px;
    }

    .experience-item::before {
        left: -10px;
        width: 11px;
        height: 11px;
    }

    .company-name {
        font-size: 18px;
        line-height: 1.3;
    }

    .role-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .experience-item li {
        font-size: 13px;
        line-height: 1.6;
        padding-left: 18px;
    }

    .education-item {
        padding: 20px;
    }

    .degree {
        font-size: 16px;
        line-height: 1.4;
    }

    .institution {
        font-size: 13px;
    }

    footer {
        padding: 30px 0;
        font-size: 11px;
        margin-top: 50px;
    }

    .footer-content {
        gap: 20px;
    }

    .social-buttons {
        gap: 10px;
        flex-direction: column;
        width: 100%;
        max-width: 250px;
    }

    .social-button {
        font-size: 12px;
        padding: 10px 16px;
        width: 100%;
        justify-content: center;
    }

    .bg-decoration::before,
    .bg-decoration::after {
        display: none;
    }
}
