  .containerIcon{
    width: 100%;
  }

  .containerIcon > h4{
    font-size: 28px;
    color: #009ac2;
  }

  .containerIcon > p{
    font-size: 18px;
  }

  .scroll-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75%; /* Adjust the width of the entire scroll container */
    overflow: hidden; /* Hide anything beyond the container */
    position: relative;
    margin: 0 auto; /* Center the scroll container */
  }
  
  .image-row {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 90%; /* Full width of the scroll container */
    margin: 0 auto;
    align-items: center;
    /*background-color: aqua !important;*/
  }
  
  
  .circle-container {
    min-width: 150px; /* Ensure each circle has a fixed width */
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5), 
                -5px -5px 15px rgba(255, 255, 255, 0.3); /* 3D effect with shadows */
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white !important;
    margin : 50px; /* Space between circles */
  }
  
  .circle-image {
    width: 70%; /* Adjust the size of the image inside the circle */
    height: auto; /* Maintain the aspect ratio */
    object-fit: cover; /* Cover the entire area without distortion */
    background-color: white !important;
  }
  
  .scroll-button {
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    padding: 0 10px; /* Add padding to create space between the button and the edge */
  }
  
  .scroll-button.left {
    left: 10px; /* Position the left button with a margin */
  }
  
  .scroll-button.right {
    right: 10px; /* Position the right button with a margin */
  }
  
  
  /* Optional: Hide scrollbar */
  .image-row::-webkit-scrollbar {
    display: none;
  }
  
  .image-row {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  
  
/***************************************SCROLLING  PROGRAMMING LANGUAGE       **********************************************/
@media (min-width: 320px) and (max-width: 480px) {
  .containerIcon > h4{
    font-size: 16px;
  }

  .containerIcon > p{
    font-size: 12px;
  }
  .scroll-container {
    width: 95%;
  }
  .image-row {
    width: 85%; /* Full width of the scroll container */
   }

  .circle-container {
    min-width: 30px; /* Smaller circle size */
    height: 30px;
    margin: 20px; /* Less space between circles */
  }

  .circle-image {
    width: 10%; /* Smaller image inside the circle */
  }

  .scroll-button {
    font-size: 18px;
    padding: 0 5px;
  }
}
@media (min-width: 481px) and (max-width: 599px) {
  .containerIcon > h4{
    font-size: 17px;
  }

  .containerIcon > p{
    font-size: 13px;
  }
  .scroll-container {
    width: 95%;
  }
  .image-row {
    width: 85%; /* Full width of the scroll container */
   }

  .circle-container {
    min-width: 70px; /* Smaller circle size */
    height: 70px;
    margin: 20px; /* Less space between circles */
  }

  .circle-image {
    width: 50%; /* Smaller image inside the circle */
  }

  .scroll-button {
    font-size: 18px;
    padding: 0 5px;
  }
 }
/* For devices between 600px and 768px */
@media (min-width: 600px) and (max-width: 768px) {
  .containerIcon > h4{
    font-size: 17px;
  }

  .containerIcon > p{
    font-size: 15px;
  }
  .scroll-container {
    width: 90%;
  }
  .image-row {
    width: 80%; /* Full width of the scroll container */
   }

  .circle-container {
    min-width: 95px; /* Smaller circle size */
    height: 95px;
    margin: 20px; /* Less space between circles */
  }

  .circle-image {
    width: 80%; /* Smaller image inside the circle */
  }

  .scroll-button {
    font-size: 18px;
    padding: 0 5px;
  }
 }
@media (min-width: 769px) and (max-width: 1023px) {
  
  .containerIcon > h4{
    font-size: 20px;
  }

  .containerIcon > p{
    font-size: 17px;
  }
  .scroll-container {
    width: 90%;
  }
  .image-row {
    width: 80%; /* Full width of the scroll container */
   }

  .circle-container {
    min-width: 120px; /* Smaller circle size */
    height: 120px;
    margin: 25px; /* Less space between circles */
  }

  .circle-image {
    width: 85%; /* Smaller image inside the circle */
  }

  .scroll-button {
    font-size: 18px;
    padding: 0 5px;
  }
 
 }
/* For devices between 1024px and 1280px */
@media (min-width: 1024px) and (max-width: 1280px) {
  .containerIcon > h4{
    font-size: 20px;
  }

  .containerIcon > p{
    font-size: 17px;
  }
  .scroll-container {
    width: 90%;
  }
  .image-row {
    width: 80%; /* Full width of the scroll container */
   }

  .circle-container {
    min-width: 120px; /* Smaller circle size */
    height: 120px;
    margin: 25px; /* Less space between circles */
  }

  .circle-image {
    width: 85%; /* Smaller image inside the circle */
  }

  .scroll-button {
    font-size: 18px;
    padding: 0 5px;
  }
 
}
/* For devices with a minimum width of 1366px */
@media (max-width: 1366px) {
  .containerIcon > h4{
    font-size: 20px;
  }

  .containerIcon > p{
    font-size: 17px;
  }
  .scroll-container {
    width: 90%;
  }
  .image-row {
    width: 80%; /* Full width of the scroll container */
   }

  .circle-container {
    min-width: 130px; /* Smaller circle size */
    height: 130px;
    margin: 32px; /* Less space between circles */
  }

  .circle-image {
    width: 85%; /* Smaller image inside the circle */
  }

  .scroll-button {
    font-size: 18px;
    padding: 0 5px;
  }
 
}


