

    /* Left Sidebar */
    .experience-box {
      background-color: #312bc8;
      color: #fff;
      /* height: 100%; */
      border-radius: 8px;
    }

    .rotate-text {
      writing-mode: vertical-rl;
      text-orientation: mixed;
      transform: rotate(180deg);
      font-weight: bold;
      font-size: 1.5rem;
    }

    /* Facilities Section */
    .facilities-section {
      background-color: #f8f9fa;
      padding: 50px 0;
      overflow: hidden; /* Prevents scrollbars from appearing */
    }

    .card-container-wrapper {
      width: 100%;
      overflow: hidden;
    }

    .card-container {
      display: flex; /* Arrange cards in a horizontal row */
      flex-wrap: nowrap; /* Prevent cards from wrapping onto the next row */
      width: fit-content; /* Ensure container width fits all cards */
      animation: scroll-left 21s linear infinite; /* Smooth continuous scrolling animation */
      gap: 20px; /* Add space between cards */
    }

    .card {
       background: linear-gradient(105deg, rgba(255,77,30,1) 0%, rgba(255,44,109,1) 100%);
       color: white;
      width: 300px; /* Fixed width for each card */
      height: 400px; /* Fixed height for each card */
      margin-right: 0; /* No space between cards */
      border: none;
      border-radius: 10px;
      flex-shrink: 0; /* Prevent the cards from shrinking */
      transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.3s ease-in-out; /* Smooth zoom-in effect on the image */
    }

    .card:hover {
      transform: translateY(-10px); /* Slight raise on hover */
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Soft shadow for card */
    }

    .card:hover img {
      transform: scale(1.1); /* Zoom in effect on image */
    }

    .card-title {
      color: white;
      font-weight: bold;
    }

    .card-text {
      font-size: 0.9rem;
      color: white;
    }

    .btn-link {
      font-weight: bold;
      text-decoration: none;
      transition: color 0.3s;
    }

    .btn-link:hover {
      color: #8e44ad;
    }

    /* Keyframe Animation for Smooth Horizontal Scroll */
    @keyframes scroll-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-100%); /* Move the entire container to the left */
      }
    }

    .card-title2 {
      color: #ffffff;
      font-weight: bold;
      margin-left: 100px;
    }



/*    ##### START FOOTER PART ########*/

ul {
    margin: 0px;
    padding: 0px;
}
.footer-section {
  background: #151414;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #DD4B39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #ff5e14;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff5e14;
    padding: 13px 20px;
    border: 1px solid #ff5e14;
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: #ff5e14;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}





/*############ Client card Design #############*/
  /* Facilities Section */
.facilities-section0 {
  background-color: #fff;;
  padding: 50px 0;
  overflow: hidden; /* Prevents scrollbars from appearing */
}

.card-container-wrapper0 {
  width: 100%;
  overflow: hidden;
}

.card-container0 {
  display: flex; /* Arrange cards in a horizontal row */
  flex-wrap: nowrap; /* Prevent cards from wrapping onto the next row */
  width: fit-content; /* Ensure container width fits all cards */
  animation: scroll-left 21s linear infinite; /* Smooth continuous scrolling animation */
  gap: 20px; /* Add space between cards */
}

.card0 {
  background: whitesmoke;
  color: black;
  width: 300px; /* Fixed width for each card */
  height: 300px; /* Fixed height for each card */
  margin-right: 0; /* No space between cards */
  border: none;
  border-radius: 10px;
  flex-shrink: 0; /* Prevent the cards from shrinking */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card0 img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out; /* Smooth zoom-in effect on the image */
}

.card0:hover {
  transform: translateY(-10px); /* Slight raise on hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Soft shadow for card */
}

.card0:hover img {
  transform: scale(1.1); /* Zoom in effect on image */
}

.card-title0 {
  color: black;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}

/* Keyframe Animation for Smooth Horizontal Scroll */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Move the entire container to the left */
  }
}

  