
      /* Full width hero slider */
      .carousel,
      .carousel-inner,
      .carousel-item {
        height: 60vh;
        min-height: 550px;
      }

      .carousel-item {
        background-position: center;
        background-size: cover;
      }

      .carousel-caption {
        background: rgba(0, 0, 0, 0.35);
        padding: 1rem 1.25rem;
        border-radius: 0.5rem;
      }
      
      .carousel-caption h1,p {
        color:#fff;
      }

      /* Team cards */
      .team-card {
        border: none;
        transition: 0.3s ease-in-out;
        border-radius: 1rem;
        overflow: hidden;
        background: #fff;
      }

      .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        background-color: #fff1f1;
      }

      .team-card .card-img-top {
        object-fit: cover;
        object-position: top;
        width: 100%;
        height: 400px;
      }

    
        .section-bg {
            background: #f8f9fa;
        }
        
        .team-card {
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.2);
            background-color: #ffffff;
            padding-bottom: 30px;
            border-radius: 0 0 20px 20px;
            border-bottom: 2px solid #fa5f0b;
            transition: 0.5s all ease;
        }
        
        .team-card ul li {
            list-style-type: none;
            display: inline-block;
            margin-left: 4px;
            margin-right: 4px;
        }
        
        .team-card ul li a {
            display: block;
            width: 30px;
            height: 30px;
            text-align: center;
            line-height: 30px;
            border-radius: 50%;
            background-color: #fa5f0b;
            color: #ffffff;
            font-size: 18px;
        }
        
        .team-card ul li a:hover {
            background-color: #212529;
        }
    
      /* Responsive improvements */
      @media (max-width: 992px) {
        .carousel-caption {
          max-width: 100%;
          padding: 1rem;
        }
      }

      @media (max-width: 768px) {
        .carousel,
        .carousel-inner,
        .carousel-item {
          height: 40vh;
          min-height: 250px;
        }
      }

      @media (max-width: 576px) {
        .carousel-caption h1 {
          font-size: 1.6rem;
        }
        .carousel-caption p {
          font-size: 0.9rem;
        }
      }