
.custom-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.custom-carousel {
  display: flex;
  gap: 15px;
  animation: scroll-carousel-animation 15s linear infinite;
}

.custom-carousel-item {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  
  align-items: center;
  justify-content: center;
  /*background: #ddd; /* Just for demonstration */
  border-radius: 10px;
  box-shadow: 0 2px 5px rgb(143 143 143);
  font-size: 16px;
  padding: 10px;
  margin: 10px 10px; /* Adjust spacing */
}

@keyframes scroll-carousel-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* technologies :start */

.custom-carousel-container-2 {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.custom-carousel-2 {
  display: flex;
  gap: 15px;
  animation: scroll-carousel-animation-2 15s linear infinite;
}

.custom-carousel-item-2 {
  width: 150px;
  height: 150px;
  /*border-radius: 50%;*/
  object-fit: cover;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgb(143 143 143);
  font-size: 16px;
  padding: 10px;
  margin: 10px 10px; /* Adjust spacing */
}

@keyframes scroll-carousel-animation-2 {
  0% {
    transform: translateX(0);
  }
  0.001% {
    transform: translateX(-100%); /* Scroll left to right */
  }
}




/* cousel start  */
.swiper-container {
  width: 100%;
  height: 200px; /* Adjust as needed */
  padding: 20px;
/*  background-color: #f5f5f5; /* Just for demonstration */
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: #ddd; /* Just for demonstration */
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  padding: 20px;
  margin: 0 10px; /* Adjust spacing */
}

/* crousel end */






p.sit{
  font-size: 16px;
  color:black;
}
p.text-justify{
  font-size: 16px;
  color:black;
}


.tab {
    color: black;
    text-align: center;
    overflow: hidden;
    padding: 10px;
    margin: 0px 5px;
    background-color: #ffffff;
  }
  
  /* Style the buttons that are used to open the tab content */
  .tab button {
    color: rgb(0, 0, 0);
    margin-left: 10px;
    background-color: inherit;
    float: center;
    border: #626263 solid 2px;
    border-radius: 25px;
    outline: none;
    padding: 14px 40px;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
  }

   /* Change background color of buttons on hover */
   .tab button:hover {
    background-color: #4153fc;
    color: white;
    border-color: white;
  }
  

  .tab a {
    color: rgb(0, 0, 0);
    margin-left: 10px;
    background-color: inherit;
    float: center;
    border: #626263 solid 2px;
    border-radius: 25px;
    outline: none;
    padding: 14px 40px;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
  }
  .tab a:hover {
    background-color: #4153fc;
  }
  
  
 
  /* Create an active/current tablink class */
  .tab button.active {
    background-color: #2c67e9;
    color: white;
    border-color: white;
  }
  
  /* Style the tab content */
  .tabcontent {
    text-align: justify;
    margin-left: 15px;
    margin-top: 15px;
    font-size: 14px;
    color: aliceblue;
    display: none;
    padding: 10px 15px;
    border-top: none;
  }
  .tabcontent {
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
  }
  
  /* Go from zero to full opacity */
  @keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  .card {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
  }
  
  /* On mouse-over, add a deeper shadow */
  .card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  }