* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", system-ui, sans-serif;
}

body {
    background-image: linear-gradient(
        to bottom right,
        rgba(14, 18, 22, 0.96),
        rgba(25, 30, 36, 0.96)
    );
    color: var(--text-main);
    line-height: 1.6;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow:
        0 0 0 1px rgba(120, 170, 255, 0.08),
        0 14px 45px rgba(0, 0, 0, 0.8),
        0 0 26px rgba(90, 140, 220, 0.25);
}

:root {
    --bg-body: #0e1216;
    --bg-card: #161b22;
    --text-main: #e6edf3;
    --text-muted: #8b949e;
    --accent: #7aa2f7;
    --border: #21262d;
    --max-width: 900px;
}


/* NAVBAR */
nav {
    position: sticky;
    top: 0;
    background: #0d1117;
    border-bottom: 1px solid #21262d;
    z-index: 100;
}

.nav-container {
    max-width: 1100px;
    margin: auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent);
}

/* HERO */
.hero {
    max-width: 900px;
    margin: auto;
    padding: 6rem 1rem;
    text-align: center;
}

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

.hero h2 {
    font-size: 1.4rem;
    margin-top: 0.5rem;
    font-weight: 700;
    color: #7aa2f7;
}

.hero p {
    margin-top: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    margin: 0.3rem;
    border: 1px solid #30363d;
    border-radius: 6px;
    text-decoration: none;
    color: #c9d1d9;
}

.btn.primary {
    background: #7aa2f7;
    border-color: #6694f7;
    color: white;
}

.btn:hover {
    opacity: 0.7;
}

/* SECTIONS */
.section {
    max-width: 900px;
    margin: auto;
    padding: 3rem 1rem;
}

.section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #f0f6fc;
}

a{
    color: var(--accent);
    text-decoration: none;
}
/* CARDS */
.card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.card h4 {
    color: var(--accent);
}

.date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}
.card span {
    display: block;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: monospace;
    color: var(--text-muted);
}

/* PROJECTS */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.project-card h4 {
    color: var(--accent);
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow:
        0 0 0 1px rgba(120, 170, 255, 0.08),
        0 14px 45px rgba(0, 0, 0, 0.8),
        0 0 26px rgba(90, 140, 220, 0.25);
}

.project-card span {
    display: block;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: monospace;
    color: var(--text-muted);
}

.project-card a {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--accent);
    text-decoration: none;
}

/* SKILLS */
.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    
}

.skills-grid span {
    background: #7aa2f7;;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    
}

.social-links a {
  font-size: 24px;
  margin-right: 16px;
  color:  #0a66c2;
  transition: color 0.2s ease;
  align-items: center;
}
.social-links {
     display: flex;
    align-items: center;/* vertically centers icons */
    justify-content: center;
    gap: 12px;           /* optional spacing */
    line-height: 0;
    padding: 6%;
}


.social-links a:hover {
  color: #333; /* LinkedIn blue */
}


/* FOOTER */
footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}
