.breadcrumb__area {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    display: flex;
  align-items: center;
  }

  .tp-section-subtitle {
    color: white;
  }

  .tp-service-slider-wrapper {
    color : white;
    position: relative;
    padding: 0 60px; /* Add padding to make room for arrows */
  }

  /* Service Item Card Styling */
  .tp-service-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .tp-service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  }

  .tp-service-thumb {
    position: relative;
    overflow: hidden;
    height: 220px;
  }

  .tp-service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .tp-service-item:hover .tp-service-thumb img {
    transform: scale(1.1);
  }

  .tp-service-content {
    padding: 30px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .tp-service-content span {
    position: absolute;
    top: -25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
  }

  .tp-service-item:hover .tp-service-content span {
    transform: rotate(360deg);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
  }

  .tp-service-title-sm {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
  }

  .tp-service-title-sm a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .tp-service-title-sm a:hover {
    color: #0066cc;
  }

  .tp-service-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .tp-service-link {
    margin-top: auto;
  }

  .tp-service-link a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .tp-service-link a:hover {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
  }

  .tp-service-link a i {
    font-size: 16px;
  }

  /* Add a subtle border on top */
  .tp-service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066cc 0%, #00cc99 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .tp-service-item:hover .tp-service-content::before {
    opacity: 1;
  }

  /* Service Slider Navigation Arrows */
  .tp-service-slider-arrow {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 100;
    pointer-events: none;
    width: 100%;
  }

  .tp-service-slider-arrow button {
    position: absolute;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    color: #0066cc;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
  }

  .tp-service-slider-arrow button:hover {
    background: #0066cc;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
  }

  .service-slider-button-prev {
    left: 0;
  }

  .service-slider-button-next {
    right: 0;
  }

  /* Service Slider Pagination Dots */
  .tp-service-slider-dot {
    text-align: center;
    position: relative;
    z-index: 10;
  }

  .tp-service-slider-dot .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .tp-service-slider-dot .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8);
  }

  .tp-service-slider-dot .swiper-pagination-bullet-active {
    background: white;
    width: 30px;
    border-radius: 6px;
  }

  /* Responsive adjustments */
  @media (max-width: 1199px) {
    .tp-service-slider-wrapper {
      padding: 0 50px;
    }
  }

  @media (max-width: 991px) {
    .tp-service-slider-wrapper {
      padding: 0 20px;
    }
    
    .tp-service-slider-dot {
      margin-top: 30px;
    }

    .tp-service-slider-arrow button {
      width: 45px;
      height: 45px;
      font-size: 16px;
    }
  }

  @media (max-width: 575px) {
    .tp-service-slider-wrapper {
      padding: 0 10px;
    }

    .service-slider-button-prev {
      left: -10px;
    }

    .service-slider-button-next {
      right: -10px;
    }

    .mobile-cta-btn {
          position: relative;
    margin: 0 auto;
    display: block;
    text-align: center;
    margin-top: 20px;
  }
}

  .tp-footer-area a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .tp-footer-list ul li a {
    color: #ffffff;
  }

  .tpoffcanvas p {
    color:  white;
  }