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

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #000000, #1a001a);
  color: white;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 50px;
}

/* Background code symbols */
.background-symbols::before {
  content: '💻 ⚙️ 🖥️ 🔧 💡 ⌨️ 📱 💾';
  font-size: 100px;
  opacity: 0.04;
  position: fixed;
  top: 10%;
  left: 5%;
  animation: floatSymbols 60s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes floatSymbols {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-1000px) rotate(360deg);
  }
}

/* Section Boxes */
.boxed-section {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  margin: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.08);
}

header {
  text-align: center;
  padding: 40px 20px;
  background: transparent;
}

header h1 {
  font-size: 2.5rem;
  color: #fff;
}

header p {
  font-size: 1.2rem;
  color: #ccc;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: white;
}

.project-box {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 10px;
  margin: 15px;
  flex: 1;
  position: relative;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.project-box h3 {
  text-align: center;
  margin-bottom: 10px;
  color: white;
}

.project-box ul {
  text-align: left;
  margin-left: 20px;
}

.repo-link {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 20px;
  color: white;
  text-decoration: none;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-icons {
  margin-top: 10px;
}

.contact-icons a {
  font-size: 28px;
  margin-right: 20px;
  color: white;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 20px;
  color: white;
  background-color: rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

.experience-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
  color: white;
}

.experience-card h3 {
  margin-bottom: 8px;
  font-weight: bold;
}

.exp-date {
  font-weight: normal;
  font-size: 0.9rem;
  color: #bbb;
  margin-left: 10px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.project-box {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  color: white;
  position: relative;
}

.project-box h3 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.project-box ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
}

.repo-link {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 1.2rem;
  color: #ffffff;
  text-decoration: none;
}

.edu-entry {
  margin-bottom: 20px; /* Adds space between each entry */
  line-height: 1.5;     /* Improves text spacing */
}

.contact-section {
  text-align: center;
  padding: 40px 20px;
}

.contact-icons {
  margin-top: 20px;
}

.contact-icons a {
  font-size: 32px;
  color: white;
  margin: 0 15px;
  text-decoration: none;
  transition: transform 0.3s, color 0.3s;
}

.contact-icons a:hover {
  transform: scale(1.2);
  color: #a855f7; /* Purple on hover */
}

#certificates a {
      color: #4B0082; /* Dark purple */
      text-decoration: none;
      font-weight: bold;
    }

    #certificates a:hover {
      text-decoration: underline;
    }
