* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;

  background-image: url('https://portfolio.kriyenkp.com/assets/images/bgblue.jpg');
  background-attachment: fixed;
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: center;
}

.drop-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7)
}

.container {
  max-width: 900px;
  margin: 40px auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;

}

header {
  /* background: linear-gradient(135deg, #2c3e50, #34495e); */
  background: #ccc url('https://portfolio.kriyenkp.com/assets/images/bg1.jpg') no-repeat;
  background-size: cover;
  color: white;
  padding: 40px;
  text-align: center;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
  object-fit: cover;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 5px;
}

.title {
  font-size: 1.2em;
  font-weight: 300;
  margin-bottom: 20px;
}

.social-links {
  margin: 20px 0;
}

.social-links a {
  color: white;
  margin: 0 10px;
  font-size: 1.2em;
  text-decoration: none;
}

section {
  padding: 30px 40px;
  border-bottom: 1px solid #eee;
}

h2 {
  color: #2c3e50;
  margin-bottom: 20px;
}

.info-item {
  margin-bottom: 15px;
}

.info-item strong {
  display: inline-block;
  width: 120px;
  color: #34495e;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.skill-tag {
  background-color: #3498db;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9em;
}

.experience-item,
.education-item {
  margin-bottom: 25px;
}

.experience-item h3,
.education-item h3 {
  color: #2c3e50;
}

.date {
  color: #7f8c8d;
  font-size: 0.9em;
  margin: 5px 0;
}

footer {
  background-color: #34495e;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .container {
    margin: 20px;
    width: auto;
  }

  header {
    padding: 30px 20px;
  }

  .profile-img {
    width: 120px;
    height: 120px;
  }

  section {
    padding: 20px;
  }

  .info-item strong {
    width: 100px;
  }
}

.side-tabs {
  position: absolute;
  left: 0;

  /* Only transform Y to center vertically */
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-tabs .tab {
  display: flex;
  align-items: center;
  background: #333;
  color: white;
  text-decoration: none;
  padding: 10px;
  border-radius: 0 5px 5px 0;
  transform: translateX(0);
  /* Make sure they start visible */
  transition: transform 0.3s ease;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.side-tabs .tab:hover {
  transform: translateX(5px);
}

/* Mobile styles remain the same */
/* Mobile styles */
@media (max-width: 768px) {
  .side-tabs {
    position: fixed;
    flex-direction: row;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    justify-content: center;
    background: #333;
    padding: 10px;
  }

  .side-tabs .tab {
    transform: none;
    border-radius: 5px;
    padding: 8px 12px;
  }
}