body { scroll-behavior: smooth; }
.text-justify-custom {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.8;
  font-size: 1.05rem;
}



.skill-box {
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


.career {
  background: white;
  position: relative;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 3px solid #0d6efd;
  border-radius: 0.5rem;
}

/* Each item (box) */
.career-item {
  position: relative;
  margin-bottom: 2rem;
}

/* Card hover effect */
.career-content {
  position: relative;
  transition: all 0.3s ease;
  background: #fff;
  border-radius: 0.5rem;
}

.career-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Top-right logo box */
.career-logo {
  float: right;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  z-index: 2;
  overflow: hidden;
  border-radius: 50%;
  background-color: #f5f5f5;
  padding: 2px;
}

/* Actual logo image */
.career-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.85;
  display: block;
  transition: transform 0.3s ease;
}

.career-logo img:hover {
  opacity: 1;
  transform: scale(1.1);
}


.social-icons a {
  display: inline-block;
  background-color: #0d6efd;
  color: #fff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 16px;
  text-align: center;
  border-radius: 50%;
  margin: 5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  box-sizing: border-box; /* Prevent border from expanding element */
  border: 1px solid transparent; /* Reserve space for border */
}

.social-icons a:hover {
  background-color: #fff;
  color: #0d6efd;
  border-color: #0d6efd; /* Border appears without affecting size */
  transform: scale(1.1);
}

