/* ============================
   IMPORT FONTS
============================ */
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============================
   GLOBAL RESET
============================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
   padding-top: 20px; /* height of header */
}

/* ============================
   ROOT VARIABLES
============================ */
:root {
  --white-color: #fff;
  --dark-color: #252525;
  --primary-color: #3b141c;
  --secondary-color: #f3961c;
  --accent: #e5a1e5;
  --text-soft: #a1a1a1;

  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.3rem;

  --border-radius-m: 30px;
}

/* ============================
   GLOBAL ELEMENTS
============================ */
a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

/* ============================
   HEADER / NAV
============================ */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 5%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Home {
  min-height: calc(100vh - 70px);
}


/* LOGO */
.logo span {
  font-size: 2.6rem;
  font-weight: 600;
  font-family: 'Times New Roman', Times, serif;
  letter-spacing: 1.5px;
  cursor: pointer;
  color: #ffb3ff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.logo span:hover {
  transform: scale(1.08);
  color:#e5a1e5;
}

/* NAV LINKS (DESKTOP) */
.links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-family:Georgia, 'Times New Roman', Times, serif;
  font: size 2.5em;
}

.link a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background:#e5a1e5;
  transition: width 0.3s ease;
}

.link a:hover {
  color:#e5a1e5;
}

.link a:hover::after {
  width: 100%;
}

/* ============================
   HAMBURGER
============================ */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* ============================
   MOBILE MENU
============================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background: #000;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: right 0.4s ease;
  z-index: 2000;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.mobile-menu a:hover {
  color:#e5a1e5;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ============================
   HERO / HOME
============================ */
.Home {
  min-height: 100vh;
  padding: 6rem 4rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.header-image img {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.header-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gradient glow behind image */
.image-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(229, 161, 229, 0.45),
    rgba(229, 161, 229, 0.15),
    transparent 70%
  );
  filter: blur(60px);
  z-index: 0;
}

/* Image stays sharp on top */
.header-image img {
  position: relative;
  z-index: 1;
}


.home-content {
  font-family: Georgia, 'Times New Roman', Times, serif;
  max-width: 420px;
}

.home-content h1 {
  font-size: 2.6rem;
  font-weight: 600;
}

.home-content h1 span {
  color: var(--accent);
}

.typing-text {
  font-size: 2.5rem;
  font-weight: 300;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: var(--text-soft);
}

.home-content p {
  margin: 1rem 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ============================
   SOCIAL ICONS
============================ */
.social-icons {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 0 10px var(--accent);
}



/* =========================
   BUTTON – HIRE ME (CLEAN)
========================= */
.btn {
  text-decoration: none;
  padding: 0.7rem 1.8rem;
  border-radius: 30px;
  background-color: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Subtle, professional glow */
.btn.hire-me:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 6px rgba(229, 161, 229, 0.6),
    0 0 12px rgba(229, 161, 229, 0.3);
}
.btn.hire-me:active {
  transform: translateY(0);
  box-shadow: none;
}
@keyframes sparkle { 0% { background-position: 0 0; }
 50% { background-position: 5px 5px; } 100% 
 { background-position: 0 0; }
}

/* ============================
   SECTIONS
============================ */
section {
  padding: 4rem;
}

section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

section p {
  color: var(--text-soft);
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 900px) {
  .links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .Home {
    flex-direction: column;
    text-align: center;
    padding-top: 7rem;
  }

  .header-image img {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 500px) {
  .header-image img {
    width: 220px;
    height: 220px;
  }

  .home-content h1 {
    font-size: 2rem;
  }
}
/* ============================
   about section
============================ */
/* Target the actual section */
#about {
  background: #121212;
  border-radius: 12px;
  padding: 3rem 4rem;
  margin-top: 4rem;
  color: #e5a1e5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

#about:hover {
  box-shadow: 0 12px 35px rgba(229, 161, 229, 0.25);
  transform: translateY(-4px);
  cursor: pointer;
}

/* Heading */
#about h2 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #e5a1e5;
  text-align: center;
  cursor: pointer;
}

/* Paragraphs */
.intro-text,
.current-focus,
.hire-me-reason {
  font-size: 1.1rem;
  text-align: justify;
  font-family: Georgia, 'Times New Roman', Times, serif;
  margin-top: 1rem;
  cursor: pointer;
}

/* Question emphasis */
.important-question {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  color: beige;
  cursor: pointer;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Highlights */
.highlight {
  font-weight: 600;
  transition: color 0.3s ease;
}

#about:hover .highlight {
  color: #ffb3ff;
  cursor: pointer;
}
#about-list {
  margin-top: 2rem;
  padding-left: 1.2rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  cursor: pointer;
}
.about-list li::marker {
  color: #e5a1e5;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

#about-list li {
  margin-bottom: 0.6rem;
  list-style: "→  ";
  font-size: 1.05rem;
  transition: color 0.3s ease, transform 0.3s ease;
  font-family: Georgia, 'Times New Roman', Times, serif;
}
#about-list li:hover {
  
  transform: translateY(-2px);
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Mobile */
@media (max-width: 600px) {
  #about h2 {
    font-size: 2rem;
  }
  .intro-text,
  .current-focus,
  .hire-me-reason {
    font-size: 1rem;
  }
}

/* ============================
   SKILLS SECTION
============================ */
#skills {
  background: #121212;
  border-radius: 12px;
  padding: 3rem 4rem;
  margin-top: 4rem;
  color: #e5a1e5;
  font-family: 'Times New Roman', Times, serif;
}

/* Section Heading */
#skills h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 3.5rem;
  color: #e5a1e5;
  letter-spacing: 1px;
}

/* ============================
   GRID (FIXED ALIGNMENT)
============================ */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

/* ============================
   CARD BASE (ALL SAME BEHAVIOR)
============================ */
.skill-card,
.skill-card-softskills,
.skill-card.coursework-card {
  background: #121212;
  border-radius: 14px;
  padding: 2.4rem;
  border: 1px solid rgba(229, 161, 229, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
  cursor: pointer;
  min-height: 240px; /* IMPORTANT: keeps all cards visually aligned */
}

.skill-card:hover,
.skill-card-softskills:hover,
.skill-card.coursework-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(229, 161, 229, 0.25);
  border-color: rgba(229, 161, 229, 0.45);
}

/* Card Titles */
.skill-card h3,
.skill-card-softskills h3,
.skill-card.coursework-card h3 {
  margin-bottom: 1.2rem;
  font-size: 1.35rem;
  color: #ffffff;
}

/* ============================
   SPECIAL CARD STYLES
============================ */
.skill-card.learning {
  background: linear-gradient(
    135deg,
    rgba(229, 161, 229, 0.12),
    rgba(18, 18, 18, 0.95)
  );
  border: 1px dashed rgba(229, 161, 229, 0.45);
}

.skill-card-softskills {
  background: linear-gradient(
    135deg,
    rgba(255, 200, 255, 0.12),
    rgba(18, 18, 18, 0.95)
  );
  border: 1px solid rgba(255, 200, 255, 0.4);
}

.skill-card.coursework-card {
  background: linear-gradient(
    135deg,
    rgba(229, 161, 229, 0.08),
    rgba(18, 18, 18, 0.95)
  );
}

.skill-card.coursework-card h3 {
  color:#ffffff;
}

/* ============================
   LIST + ARROWS (SINGLE SYSTEM)
============================ */
.skill-card ul,
.skill-card-softskills ul,
.skill-card.coursework-card ul {
  padding-left: 1.3rem;
}

.skill-card li,
.skill-card-softskills li,
.skill-card.coursework-card li {
  position: relative;
  margin-bottom: 1rem;
  list-style: none;
  padding-left: 1.3rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.25s ease, color 0.25s ease;
}

/* Arrow */
.skill-card li::before,
.skill-card-softskills li::before,
.skill-card.coursework-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #e5a1e5;
  font-weight: bold;
  transition: color 0.25s ease, transform 0.25s ease;
}

/* Hover */
.skill-card li:hover,
.skill-card-softskills li:hover,
.skill-card.coursework-card li:hover {
  transform: translateX(6px);
  color: #ffffff;
}

.skill-card li:hover::before,
.skill-card-softskills li:hover::before,
.skill-card.coursework-card li:hover::before {
  color: #ffffff;
  transform: translateX(3px);
}

/* ============================
   SKILL NAME + DESCRIPTION
============================ */
.skill-name {
  color: #e5a1e5;
  font-weight: 500;
  transition: color 0.25s ease;
}

.skill-card li:hover .skill-name {
  color: #ffffff;
}

/* Description */
.skill-desc {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  color: #ffd6ff;
  font-size: 0.7rem;
  margin-top: 0.25rem;
  transition: all 0.35s ease;
}

.skill-card li:hover .skill-desc,
.skill-card-softskills li:hover .skill-desc,
.skill-card.coursework-card li:hover .skill-desc {
  opacity: 1;
  max-height: 100px;
}

/* ============================
   SKILL BARS
============================ */
.skill-bar {
  margin-bottom: 1.4rem;
}

.skill-bar span {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  color: #e5a1e5;
}

.skill-bar em {
  font-size: 0.8rem;
  opacity: 0.65;
  font-style: normal;
}

.bar {
  width: 100%;
  height: 8px;
  background: rgba(229, 161, 229, 0.2);
  border-radius: 20px;
  overflow: hidden;
}

.fill {
  height: 100%;
  width: 0;
  border-radius: 20px;
  background: linear-gradient(90deg, #e5a1e5, #ffb3ff);
  transition: width 0.6s ease;
}

.fill.animate {
  width: inherit;
}

/* Levels */
.fill.c { width: 80%; }
.fill.java { width: 70%; }
.fill.python { width: 50%; }

.skill-card:hover .fill {
  box-shadow: 0 0 10px rgba(229, 161, 229, 0.6);
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 600px) {
  #skills {
    padding: 2.5rem 2rem;
  }

  #skills h2 {
    font-size: 2.1rem;
  }

  .skill-card,
  .skill-card-softskills,
  .skill-card.coursework-card {
    padding: 1.8rem;
    min-height: auto;
  }

  .skill-card h3,
  .skill-card-softskills h3,
  .skill-card.coursework-card h3 {
    font-size: 1.2rem;
  }
}
.links a.active,
.mobile-menu a.active {
  color: #ffb3ff;
  font-weight: 600;
}

/*Education timeline */


#Education {
  padding: 4rem 2rem;          /* spacing around the section */
  background-color: #121212;   /* dark background to match your portfolio */
  color: #fff;                 /* default text color */
  font-family: Georgia, 'Times New Roman', Times, serif; /* classic serif fonts */
}

#Education h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #e5a1e5;             /* matches your portfolio accent color */
  text-align: center;
  margin-bottom: 3rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.education-timeline {
  position: relative;
  margin: 2rem 0;
  padding-left: 40px;
  border-left: 3px solid #e5a1e5; /* timeline line color */
  font-family: Georgia, 'Times New Roman', Times, serif;
}

/* Timeline item */
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  opacity: 0;             /* start hidden for animation */
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
}

/* Show timeline item when active */
.timeline-item.active {
  opacity: 1;
  transform: translateX(0);
}

/* Circle for each timeline point */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -27px;
  top: 8px;
  width: 5px;
  height: 5px;
  background-color: #e5a1e5; /* dot color */
  border-radius: 50%;
  border: 3px solid #fff;
}

/* Year */
.timeline-year {
  font-weight: 600;
  color: #e5a1e5;
  margin-bottom: 0.5rem;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* Timeline content */
.timeline-content h3 {
  margin: 0.2rem 0;
  font-size: 1.2rem;
  color: #fff;
}

.timeline-content p {
  margin: 0.2rem 0;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: #ccc; /* soft text color for details */
  font-size: 0.95rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .education-timeline {
    padding-left: 20px;
    border-left: 2px solid #e5a1e5;
  }

  .timeline-item::before {
    left: -18px;
    width: 5px;
    height: 5px;
  }

  .timeline-year {
    font-size: 0.95rem;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
  }
}


/* Experience timeline container */


#Experience {
  padding: 4rem 2rem;          /* spacing around the section */
  background-color: #121212;   /* dark background to match your portfolio */
  color: #fff;                 /* default text color */
  font-family: Georgia, 'Times New Roman', Times, serif; /* classic serif fonts */
}

#Experience h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #e5a1e5;             /* matches your portfolio accent color */
  text-align: center;
  margin-bottom: 3rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.experience-timeline {
  position: relative;
  margin: 2rem 0;
  padding-left: 40px;
  border-left: 3px solid #e5a1e5;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

/* Experience item */
.experience-item {
  position: relative;
  margin-bottom: 2rem;
  opacity: 0;             /* hidden for animation */
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
}

/* Active animation */
.experience-item.active {
  opacity: 1;
  transform: translateX(0);
}

/* Dot */
.experience-item::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 8px;
  width: 5px;
  height: 5px;
  background-color: #e5a1e5;
  border-radius: 50%;
  border: 3px solid #fff;
}

/* Year */
.experience-year {
  font-weight: 600;
  color: #e5a1e5;
  margin-bottom: 0.5rem;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* Content */
.experience-content h3 {
  margin: 0.2rem 0;
  font-size: 1.2rem;
  color: #fff;
}

.experience-content ul {
  margin: 0.5rem 0;
  padding-left: 1.2rem;
  color: #ccc;
}

.experience-content ul li {
  margin-bottom: 0.3rem;
}

.experience-content a {
  color: #e5a1e5;
  text-decoration: none;
}

.experience-content a:hover {
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .experience-timeline {
    padding-left: 20px;
    border-left: 2px solid #e5a1e5;
  }

  .experience-item::before {
    left: -15px;
    width: 5px;
    height: 5px;
  }

  .experience-year {
    font-size: 0.95rem;
  }

  .experience-content h3 {
    font-size: 1.1rem;
  }

  .experience-content ul li {
    font-size: 0.9rem;
  }
}
/* ============================
   PROJECTS SECTION
============================ */
#Projects {
  padding: 4rem 2rem;
  background-color: #121212;
  color: #fff;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

#Projects h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #e5a1e5;
  text-align: center;
  margin-bottom: 3rem;
}

/* Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

/* Cards */
.project-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 14px;
  padding: 1.6rem;
  transition: 
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;

  /* animation */
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
  animation-timeline: view();
  animation-range: entry 10% cover 20%;
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(229, 161, 229, 0.15);
  border-color: #e5a1e5;
}

/* Text */
.project-card h4 {
  color: #fff;
  margin-bottom: 0.3rem;
}
.project-card h5 {
  color:blueviolet;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.project-year {
  color: #e5a1e5;
  font-size: 0.9rem;
}

.project-card p {
  color: #ccc;
  font-size: 0.95rem;
  margin: 0.6rem 0;
}

.project-tools {
  font-style: italic;
  font-size: 0.9rem;
}

/* Links */
.project-links a {
  color: #e5a1e5;
  text-decoration: none;
  font-weight: 500;
  margin-right: 1rem;
  position: relative;
}

.project-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #e5a1e5;
  transition: width 0.3s ease;
}

.project-links a:hover::after {
  width: 100%;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .project-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ============================
   CONTACT SECTION
============================ */
#Contact {
  margin-top: 6rem;
  text-align: center;
  padding: 4rem 2rem;
  background-color: #121212;
  color: #fff;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

#Contact h2 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  color: #e5a1e5;
}

.contact-subtext {
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  font-style: italic;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.contact-card {
  padding: 2rem;
  border-radius: 14px;
  background: #181818;
  border: 1px solid rgba(229, 161, 229, 0.2);
  text-decoration: none;
  color: #fff;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.contact-card span {
  display: block;
  font-size: 1.1rem;
  color: #e5a1e5;
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.95rem;
  color: #ccc;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(229, 161, 229, 0.2);
  border-color: #e5a1e5;
}

/* animation active */
.contact-card.active {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 600px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}
#Tools {
  padding: 4rem 2rem;
  background: #0f0f0f;
  color: white;
  text-align: center;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

#Tools h2 {
  font-size: 2.4rem;
  color: #e5a1e5;
  margin-bottom: 3rem;
}

/* layout */
.tools-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

/* group cards */
.tool-group {
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid #333;
  transition: 0.3s ease;
}

.tool-group:hover {
  border-color: #e5a1e5;
  box-shadow: 0 10px 25px rgba(229,161,229,0.15);
}

.tool-group h3 {
  color: #e5a1e5;
  margin-bottom: 1rem;
}

/* tool chips */
.tool-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.tool-items span {
  background: rgba(229,161,229,0.12);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  transition: 0.3s;
}

.tool-items span:hover {
  background: #e5a1e5;
  color: black;
}

#Skills {
  padding: 4rem 2rem;
  background: #121212;
  text-align: center;
  color: white;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

#Skills h2 {
  font-size: 2.4rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: #e5a1e5;
  margin-bottom: 2rem;
}

.skills-wrapper {
  max-width: 500px;
  margin: auto;
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #333;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}