.about-image img{
    padding-bottom: 20px;
   height: 500px;
    width: 500px;
    border-radius: 50%;
    border: 10px solid rgb(197, 69, 223);
    position: relative;
    box-shadow: 0px 0px 80px 5px rgb(206, 69, 206);
    margin-left: 00px;
 
 



}


.badge {
  display: flex;
  justify-content: space-evenly;
  align-items: center; /* Center vertically */
  width: 350px;
  height: 50px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: x-large;
  font-family: cursive;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease-in-out;
}


  #javascriptBadge {
    background-color: #5829bb; /* Vibrant Purple Color */
  }

  #webBadge {
    background-color: #bc5a45; /* Vibrant Red Color */
  }

  #htmlCssBadge {
    background-color: #05096e; /* Deep Blue Color */
  }

  .badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-30deg) translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }

  #javascriptBadge::before,
  #webBadge::before,
  #htmlCssBadge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-30deg) translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }

  @keyframes javascriptAnimation {
    0%, 100% {
      background-color: #33d23b; /* Vibrant Green Color */
    }
    50% {
      background-color: #cc891e; /* Vibrant Orange Color */
    }
  }

  @keyframes webAnimation {
    0%, 100% {
      background-color: #561a77; /* Vibrant Green Color */
    }
    50% {
      background-color: #095115; /* Vibrant Orange Color */
    }
  }

  @keyframes htmlCssAnimation {
    0%, 100% {
      background-color: #064b70; /* Turquoise Color */
    }
    50% {
      background-color: #100779; /* Vibrant Orange Color */
    }
  }

  #javascriptBadge.fidgeting {
    animation: javascriptAnimation 2s infinite;
  }

  #webBadge.fidgeting {
    animation: webAnimation 2s infinite;
  }

  #htmlCssBadge.fidgeting {
    animation: htmlCssAnimation 2s infinite;
  }
  .subtitle {
    text-align: center;
    font-size: 60px;
    padding-bottom: 0px;
    position: relative;
    color: #fff;
    font-family: 'Arial', sans-serif;
  }

  .subtitle span {
    color: #0ef;
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 0 10px;
    background: linear-gradient(to right, #0ef, #03e);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shine 2s infinite;
  }

  @keyframes shine {
    to {
      background-position: 200% center;
    }
  }

  .card-1 {
    width: 500px;
    height: 200px;
    margin: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background-color: #343a40; /* Dark color */
    transition: transform 0.3s ease-in-out;
  }

  .card-1:hover {
    transform: scale(1.05);
  }

  .card-1-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .card-1-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffc107; /* Bootstrap warning color */
  }

  .card-1-text {
    font-size: 16px;
    text-align: center;
    color: #e9ecef; /* Bootstrap text-light color */
  }

  .dark-theme {
    display: flex;
    justify-content: space-evenly;
}

.card {
    width: 300px;
    background-color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #000, transparent);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.card:hover::before {
    opacity: 0.5;
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
    color: #fff;
}

.list-group-item {
    background-color: #555;
    color: #fff;
    border: none;
}

.list-group-item:hover {
    background-color: #777;
}

.card-stars {
    display: flex;
    justify-content: center;
}

.card-star {
    color: gold;
    font-size: 24px;
    margin: 5px;
}

h1 {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  letter-spacing: 1.5px;
}

p {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

.input-group {
  margin-bottom: 40px;
}

input.form-control {
  border-radius: 10px;
  font-family: 'Arial', sans-serif;
}

button.btn {
  border-radius: 10px;
}

p.connect-text {
  text-align: center;
  margin-bottom: 30px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.social-icons a {
  font-size: 24px;
  color: royalblue; /* Set the color to royal blue */
}