:root {
    --navy: #081a33;
    --blue: #2563eb;
    --text: #162033;
    --muted: #5b6678;
    --bg: #f8fafc;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: white;
    line-height: 1.7;
}

.container {
    width: min(1200px, 90%);
    margin: auto;
}

.header {
    padding: 24px 0;
    position: sticky;
    top: 0;
    background: white;
    z-index: 100;
}

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

.logo {
    font-size: 32px;
    font-weight: 800;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
}

.resume-btn {
    background: var(--navy);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
}

.hero {
    padding: 80px 0;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, .92),
            rgba(255, 255, 255, .85),
            rgba(255, 255, 255, .55),
            rgba(255, 255, 255, .35)),
        url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 60px;
}

.eyebrow {
    color: var(--blue);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    margin: 20px 0;
    font-weight: 800;
}

.hero h1 span {
    color: var(--blue);
}

.hero p {
    font-size: 1.15rem;
    max-width: 650px;
    color: var(--muted);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.btn {
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: var(--navy);
    color: white;
}

.btn-secondary {
    border: 1px solid #d9dce2;
    color: var(--text);
}

.hero-image img {
    width: 100%;
    max-width: 475px;
    display: block;
    margin-left: auto;
}

.section {
    padding: 90px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.section-label {
    color: var(--blue);
    font-size: .85rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 12px 0 24px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-card {
    padding: 28px;
    border: 1px solid #e7ebf2;
    border-radius: 16px;
    transition: .2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.skill-icon {
  font-size: 2rem;
  color: #2563eb;
  margin-bottom: 15px;
}

.project-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #071528, #0d2a52);
    color: white;
}

.project-wrapper {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.light {
    color: #8fb7ff;
}

.project-left ul {
    margin-top: 25px;
    padding-left: 20px;
}

.project-left li {
    margin-bottom: 12px;
}

.dashboard-placeholder {
    height: 420px;
    border-radius: 20px;
    background: white;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact {
    padding: 90px 0;
    background: #f8fafc;
}

.contact-box {
    text-align: center;
    max-width: 800px;
}

.contact p {
    color: var(--muted);
}

@media(max-width:900px) {

    .hero-grid,
    .about-grid,
    .project-wrapper {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-image img {
        margin: auto;
    }

    nav {
        display: none;
    }
}
