*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


body {
  font-family: 'Inter', sans-serif;
  background: #f0f2f5;
  color: #1a1a2e;
  font-size: 15px;
  line-height: 1.7;
}

/* ── HEADER (unchanged colors) ── */
header {
  background-color: #007BFF;
  color: #fff;
  padding: 28px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}


.profile-pic img {
  width: 110px;
  height: 110px;
  border-radius: 80%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.4);
  display: block;
}

header h1 {
  font-family: 'Lora', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.header-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.header-socials a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 6px;
  text-decoration: none;
  color: white;
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.15s;
}
.header-socials a:hover { opacity: 0.85; transform: translateY(-1px); }
.header-socials a img { width: 16px; height: 16px; display: block; }
.github-btn { background: #24292e; }
.linkedin-btn { background: #0a66c2; }

/* ── NAV (unchanged colors) ── */
nav {
  background-color: #000000;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  gap: 4px;
}

nav ul li a {
  display: block;
  color: #36AE7C;
  text-decoration: none;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
  border-bottom: 2px solid transparent;
}
nav ul li a:hover {
  color: #fff;
  background: rgba(54,174,124,0.12);
  border-bottom-color: #36AE7C;
}

/* ── MAIN LAYOUT ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 32px 80px;
}

/* ── SECTION HEADERS ── */
.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  margin-top: 64px;
}
.section-header:first-child { margin-top: 0; }

.section-header h2 {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 600;
  color: #1a1a2e;
  white-space: nowrap;
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #007BFF44, transparent);
}

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #007BFF;
  background: #007bff14;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #007bff30;
}

/* ── CONTACT ── */
.contact-info {
  text-align: center;
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.contact-info p { font-size: 14px; color: #888; margin-bottom: 4px; }
.contact-info a { color: #007BFF; text-decoration: none; font-weight: 500; }
.contact-info a:hover { text-decoration: underline; }


        a {
            color: #007BFF;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

          /* ── RESPONSIVE ── */
  @media (max-width: 680px) {
    header { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
    nav ul { justify-content: flex-start; overflow-x: auto; }
    .container { padding: 36px 16px 60px; }
    .grid { grid-template-columns: 1fr; }
  }
