/* Clean Professional Resume Theme - Light Mode */

:root {
    --bg: #f9f9f9;
    --surface: #ffffff;
    --text: #1c1c1c;
    --text-muted: #6c757d;
    --accent: #0d6efd;
    --font-sans: 'Segoe UI', Roboto, sans-serif;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    --transition: 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Custom Pointer */
  #cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
  }
  
  /* Layout Container */
  .container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 0;
  }
  
  /* Header & Nav */
  .site-header {
    background: var(--surface);
    border-bottom: 1px solid #e6e6e6;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  /* Profile Image & Info */
  .profile-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .profile-info {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .profile-pic {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .site-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
  }
  .site-tagline {
    font-size: 1rem;
    color: var(--text-muted);
  }
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
  }
  .site-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  .site-nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    padding-bottom: 0.25rem;
    position: relative;
  }
  .site-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: var(--accent);
    transition: width var(--transition);
  }
  .site-nav a:hover::after,
  .site-nav a.active::after {
    width: 100%;
  }
  .site-nav a:hover {
    color: var(--accent);
  }
  
  /* Section Headers */
  section h2 {
    font-size: 1.75rem;
    border-left: 4px solid var(--accent);
    padding-left: 0.75rem;
    margin-bottom: 1.25rem;
    color: var(--text);
  }
  
  /* Sections */
  section {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .section-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Lists */
  .section-about p,
  .section-contact p {
    font-size: 1.05rem;
  }
  
  .timeline,
  .section-education ul {
    list-style: none;
    display: grid;
    gap: 2rem;
  }
  .timeline li,
  .section-education li {
    background: var(--surface);
    padding: 1.5rem;
    border-left: 4px solid var(--accent);
    border-radius: 6px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
  }
  .timeline li:hover,
  .section-education li:hover {
    transform: translateY(-4px);
  }
  .timeline h3,
  .section-education h3 {
    margin-bottom: 0.3rem;
    color: var(--text);
  }
  .meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
  }
  
  /* Skills */
  .chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .chips span {
    background: #e9ecef;
    color: var(--text);
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 20px;
    border: 1px solid #d1d1d1;
    transition: background var(--transition);
  }
  .chips span:hover {
    background: var(--accent);
    color: white;
  }
  
  /* Contact */
  .section-contact a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
  }
  .section-contact a:hover {
    text-decoration: underline;
  }
  
  /* Footer */
  .site-footer {
    text-align: center;
    padding: 2rem 0;
    background: #f1f1f1;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid #e0e0e0;
  }
  
  /* Responsive Nav */
  @media (max-width: 768px) {
    .nav-toggle {
      display: block;
    }
  
    .site-nav {
      position: absolute;
      top: 100%;
      right: 0;
      background: var(--surface);
      width: 220px;
      transform: translateX(100%);
      transition: transform var(--transition);
      box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
      flex-direction: column;
      padding: 1rem;
      z-index: 999;
    }
  
    .site-nav.open {
      transform: translateX(0);
    }
  
    .site-nav ul {
      flex-direction: column;
    }
  
    .site-nav li + li {
      margin-top: 1rem;
    }
  }
  
  section {
    scroll-margin-top: 180px; 
  }
 

 .contact-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-bubble {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  color: var(--text);
  border: 1px solid #d1d1d1;
  border-radius: 30px;
  padding: 0.6rem 1rem;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition);
}

.contact-bubble:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.contact-bubble a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.contact-bubble a:hover {
  text-decoration: underline;
}

