.for-h3{
    color: gray;
}

.circular-image {
    width: 150px; /* Set the desired width */
    height: 150px; /* Set the desired height (same as width to make a perfect circle) */
    border-radius: 50%; /* Makes the element a circle */
    overflow: hidden; /* Clips the image inside the circle */
  }
  
  .circular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire circle */
  }


  .container-1 {
    display: flex;
    flex-direction:column;
    
    gap: 10px;
   
    
    
  }

  
  
  .skills-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .skills-list li {
    background-color: #f2f2f2;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: center;
    flex-basis: calc(25% - 10px); /* 4 items per row (with 10px gap) for larger screens */
    min-width: 150px; /* Minimum width for each item */
  }

  .margin-top-big{
    margin-top: 50px;
  }

  .image-container {
    display: flex;
    justify-content: space-around; /* Adjust as needed */
    align-items: center; /* Adjust as needed */
  }
  
  .image-container img {
    width: 50px;
    height: 50px;
  }
  .container0 {
    display: flex;
    flex-wrap: wrap;
  }
  
  .big-circle{
    width: 350px;
    height: 350px;
  }

  footer {
    text-align: center;
}



.grad1 {
	background: linear-gradient(-45deg, #b3b3b3, #f0f0f0);
	background-size: 400% 400%;
	animation: gradient 10s ease infinite;
	height: 10vh;
}

.grad2 {
	color: linear-gradient(-45deg, #a68d8b,  #a4abb3, #7d997f, #939470);
	background-size: 400% 400%;
	animation: gradient 2s ease infinite;
	height: 10vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


.grad2 {
  background: linear-gradient(-45deg, #966c68, #5a7594, #599b5c, #949757);
  background-size: 400% 400%;
  height: 10vh;
  display: inline;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: textGradient 5s linear infinite;
}

.grad3 {
  background: linear-gradient(-45deg, #a53228, #225a9b, #28a32e, #b3b934,rgb(224, 123, 6));
  background-size: 400% 400%;
  height: 10vh;
  display: inline;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: textGradient 4s linear infinite;
}

.grad-blue {
  background: linear-gradient(-45deg, #020066, #0052b1, #1635e9, #0052b1,#020066);
  background-size: 400% 400%;
  height: 10vh;
  display: inline;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: textGradient 2s linear infinite;
}

@keyframes textGradient {
  0% {
      background-position: 0% 50%;
  }
  100% {
      background-position: 100% 50%;
  }
}

.bbb{
  background-color: #d80d0d;
}

.invi{
  visibility: hidden;
  visibility: collapse;
  display: none;
}

.navbar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-brand img {
  height: 40px; /* Adjust the height of your logo as needed */
}

