.client-content {
    position: relative;
    background: #e8e8e8;
    padding: 16px 10px 17px 90px;
    min-height: 228px;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 6px solid #253f50;
}

.client-image {
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #f8f8f8;
    position: absolute;
    top: 22%;
    margin-left: -66px;
    left: 0;
    background: #fff;
}

.client-content::after {
    border-right: 28px solid transparent;
    border-top: 28px solid #253f4f;
    bottom: -28px;
    content: "";
    left: 0;
    position: absolute;
    transform: rotateY(164deg);
}

.client-name {
    margin: 10px;
}

.client-name .orange-text {
    font-size: 24px;
    color: #f05a23;
    margin: 0;
    font-weight: 500;
    padding-top: 12px;
}

.client-name p {
    padding-left: 15px;
}

.client-name p.designation {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 13px;
    padding-bottom: 0;
    margin-bottom: 0;
}

.testimonial-wrapper .col-md-12:nth-child(even) .client-content {
    padding: 20px 88px 32px 96px;
    background: #025073;
    -webkit-box-shadow: 2px 1px 11px 1px #5a5a5a2b;
    box-shadow: 2px 1px 11px 1px #5a5a5a2b;
    margin-right: 0;
    color: #fff;
}

/* Base styles */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f5f5;
    color: #222;
    text-align: center;
  }
  
  .stats-section {
    padding: 20px;
    background-color: #f5f5f5;
  }
  
  .stats-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #003f66;
  }
  
  .stats-section h2 span {
    color: #33bfff;
  }
  
  .stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  /* Card styles */
  .stat-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    width: 220px;
    transition: transform 0.3s ease;
  }
  
  .stat-card:hover {
    transform: translateY(-10px);
  }
  
  .stat-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
  }
  
  .stat-card:hover img {
    transform: scale(1.1);
  }
  
  .stat-card h3 {
    font-size: 2rem;
    color: #003f66;
    margin: 10px 0 5px;
  }
  
  .stat-card p {
    font-size: 1rem;
    color: #444;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .stats-grid {
      flex-wrap: wrap;
      gap: 20px;
    }
  
    .stat-card {
      width: 45%;
    }
  }
  
  @media (max-width: 576px) {
    .stat-card {
      width: 100%;
    }
  }
  

/* testimonial feedback in video formate */
  .testimonial-card {
    border: none;
    transition: transform 0.3s ease-in-out;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0056b3;
    text-align: center;
    /* margin-top: 0.3rem;
    min-height: 60px; */
}

.testimonial-subtitle {
    text-align: center;
    font-style: italic;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 0.2rem;
}

.btn-more {
    background-color: #f8a100;
    color: #fff;
    font-weight: 600;
    border: none;
    transition: 0.3s ease-in-out;
}

.btn-more:hover {
    background-color: #d48800;
    color: #fff;
}

iframe {
    width: 100%;
    height: 180px;
    border-radius: 8px;
}

.view-more-btn {
    background: linear-gradient(to right, #fbb034, #ffdd00);
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.view-more-btn .text {
    background: transparent;
    padding: 10px 20px;
}

.view-more-btn .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-more-btn:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.view-more-btn .icon i {
    font-size: 1rem;
}

.bg-dark {
  background-color: #064c75 !important;
}

/* industries-section Start */

        .industries-section {
            background: linear-gradient(to bottom, var(--blue) 50%, #ffffff 50%);
        }

        .mb-4 {
            margin-bottom: 2.5rem !important;
        }

        .white-box {
            margin-top: -50px;
            position: relative;
            z-index: 1;
            border-radius: 10px;
        }

        .expert-btn {
            background: linear-gradient(to right, #fbb034, #ffdd00);
            color: #000;
            font-weight: 600;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            transition: all 0.3s ease-in-out;
        }

        .expert-btn:hover {
            transform: translateY(-3px);
            text-decoration: none;
        }

        .expert-btn .icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .expert-btn .icon i {
            font-size: 1rem;
        }

        .custom-list li {
            font-size: 15px;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
        }

