      /* Carousel */
      .carousel-inner {
        position: relative;
        width: 100%;
        /* height: 900px;  */
        overflow: hidden;
      }

      .carousel-item {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.7s ease, visibility 0s 0.7s;
      }

      .carousel-item.active {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.7s ease, visibility 0s 0s;
      }


      .carousel-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .carousel-toggle {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0.5rem;
        z-index: 5;
        border-radius: 4px;
        font-size: 0.875rem;
        font-weight: 500;
        background-color: rgba(255, 255, 255, 0.85);
        padding: 4px 10px;
        transition: background-color 0.3s ease, color 0.3s ease;
      }

      .carousel-toggle:hover {
        background-color: #e2e6ea;
        color: #000;
        text-decoration: none;
      }

      .service-card {
        border: 1px solid #dee2e6;
        border-radius: 10px;
        transition: all 0.3s ease;
        padding: 15px;
      }
      
      .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      }
      
      .service-icon {
        font-size: 35px;
        color: #2c5aa0;
      }
      
      .service-title {
        font-weight: 600;
        color: #2c2c2c;
      }
      
      .service-text {
        line-height: 1.4;
      }
      
