
{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
  padding: 5px;
  overflow-x: hidden;
}

h2.section-heading {
  text-align: center;
  margin-bottom: 80px;
  font-size: 2rem;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

/* Services Wrapper */
.services-wrapper {
  overflow-x: auto; /* Enables horizontal scrolling */
  padding: 10px 0;
  position: relative;
}

.services-container {
  display: flex;
  gap: 5px;
  transition: transform 0.5s ease; /* Smooth scroll transition */
  transform: translateX(0);
}

.service-box {
 /* Gradient background */
  padding: 20px;
  border-radius: 15px;
  width: 250px;
  min-width: 250px; /* Keeps each column fixed */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Strong shadow effect */
  color: white;
  text-align: center;
  transition: all 0.3s ease; /* Smooth scaling and hover effects */
}

.service-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); /* Hover effect with stronger shadow */
}

.table-container{
margin: 0px;
padding:0px;}

.service-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-box ul {
  list-style: none;
  text-align: left;
}

.service-box ul li {
  margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .service-box {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .service-box {
    width: 150px;
  }
}

/* Auto-scroll effect */
.services-container:active {
  transform: translateX(-300px); /* Shift the container to the left when clicked */
}

@media (max-width: 480px) {
  .service-box {
    width: 100%;
  }
}

/* Controls the number of columns visible at a time */
.services-wrapper {
  max-width: 100%;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}

.services-container {
  display: flex;
  flex-wrap: nowrap;
}

.service-box {
  scroll-snap-align: start;
  flex: 0 0 auto;
  min-width: 100%; /* Ensures only one box fits */
}

.services-wrapper::-webkit-scrollbar
 {

  height: 8px;
}

.services-wrapper::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.services-wrapper::-webkit-scrollbar-track {
  background: #f4f4f4;
}




* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
 sectionser {
  height: 50vh;
  width: 100%;
  display: grid;
  place-items: center;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.column {
  width: 200px;
  height:1000px;
  padding: 0 1em 1em 1em;
  text-align: center;
}
.card {
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;

  background-size: 100% 200%;
  background-position: 0 2.5%;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f194c;
  margin: 1em 0;
}
p {
  color: #575a7b;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.icon-wrapper {
  background-color: #2c7bfe;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
}
.card:hover {
  background-position: 0 100%;
}
.card:hover .icon-wrapper {
  background-color: #ffffff;
  color: #2c7bfe;
}
.card:hover h3 {
  color: #ffffff;
}
.card:hover p {
  color: #f0f0f0;
}
@media screen and (min-width: 768px) {
  section {
    padding: 0 2em;
  }
  .column {
    flex: 0 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 992px) {
  section {
    padding: 1em 3em;
  }
  .column {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}