.fancybox-layout5 {
      padding: 40px 0;
    }
    .fancybox-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
    }

    .fancybox-col {
      flex: 0 0 calc(20% - 16px);
      /* 5 in a row with spacing */
      max-width: calc(20% - 16px);
    }

    @media (max-width: 992px) {
      .fancybox-col {
        flex: 0 0 calc(33.33% - 16px);
        max-width: calc(33.33% - 16px);
      }
    }

    @media (max-width: 768px) {
      .fancybox-col {
        flex: 0 0 calc(50% - 16px);
        max-width: calc(50% - 16px);
      }
    }

    @media (max-width: 576px) {
      .fancybox-col {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }

    .fancybox-item {
      perspective: 1000px;
      height: 230px;
    }

    .fancybox-body {
      position: relative;
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
      transition: transform 0.6s ease-in-out;
    }

    .fancybox-item:hover .fancybox-body {
      transform: rotateY(180deg);
    }

    .fancybox-front,
    .fancybox-back {
      position: absolute;
      width: 100%;
      height: 100%;
      min-height: 200px;
      backface-visibility: hidden;
      border-radius: 12px;
      padding: 4px;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: #fff;
    }

    .fancybox-front i {
      font-size: 36px;
      margin-bottom: 12px;
    }

    .fancybox-title {
      font-size: 17px;
      font-weight: 600;
      color: #ffffff;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    }

    .fancybox-back {
      transform: rotateY(180deg);
      font-size: 15px;
      text-align: center;
      padding: 20px;
    }

    /* Custom colors */
    .bg-blue {
      background-color: #007BFF;
    }

    .bg-green {
      background-color: #28a745;
    }

    .bg-orange {
      background-color: #fd7e14;
    }

    .bg-purple {
      background-color: #6f42c1;
    }

    .bg-red {
      background-color: #dc3545;
    }


    .stats-section {
      max-width: 1200px;
      margin: 50px auto;
      padding: 0 20px;
      text-align: center;
    }

    .stats-section h2 {
      font-size: 32px;
      margin-bottom: 40px;
      color: #111;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 30px;
    }

    .stat-card {
      background: #fff;
      border-radius: 16px;
      padding: 30px 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-6px);
    }

    .icon-circle {
      width: 60px;
      height: 60px;
      background: #328097;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 15px;
    }

    .icon-circle i {
      color: #fff;
      font-size: 24px;
    }

    .count {
      font-size: 28px;
      color: #f57c00;
      font-weight: bold;
      margin-bottom: 8px;
    }

    .label {
      font-size: 15px;
      font-weight: 600;
      color: #003366;
    }

    @media (max-width: 480px) {
      .count {
        font-size: 24px;
      }

      .label {
        font-size: 14px;
      }
    }

    @media (max-width: 1024px) {
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .stats-grid {
        grid-template-columns: 1fr;
      }
    }

.smeProducts-section {
  text-align: center;
      max-width: 1200px;
      margin: auto;
}
 .smeProducts-section h2 {
      margin-bottom: 30px;
      font-size: 28px;
      color: #111;
      position: relative;
    }

   .smeProducts {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }
    .smeProductsList {
      width: 140;
      height:140px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      padding: 10px;
      border-radius: 8px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }
    .smeProductsList img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      transition: transform 0.3s ease;
    }
     .smeProductsList:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    }

     @media screen and (max-width: 768px) {
      .smeProductsList {
        width: 100px;
        height: 100px;
      }
    }

    @media screen and (max-width: 480px) {
      .smeProductsList {
        width: 64px;
        height: 64px;
      }
    }

    .partners-section {
      text-align: center;
      max-width: 1200px;
      margin: auto;
    }

    .partners-section h2 {
      margin-bottom: 30px;
      font-size: 28px;
      color: #111;
      position: relative;
    }

    .partners-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }  

    .partner-logo {
      width: 140px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      padding: 10px;
      border-radius: 8px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    .partner-logo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .partner-logo:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    }

    @media screen and (max-width: 768px) {
      .partner-logo {
        width: 120px;
        height: 70px;
      }
    }

    @media screen and (max-width: 480px) {
      .partner-logo {
        width: 100px;
        height: 60px;
      }
    }


    
    .client-slider-wrapper {
  overflow: hidden;
  position: relative;
  max-width: 100%;
  padding: 20px 0;
}

.client-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  scroll-behavior: smooth;
}

.client-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  color: #fff;
  white-space: nowrap;
  font-weight: 600;
  text-decoration: none;
  min-width: 220px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.client-item:hover {
  transform: scale(1.05);
}

.client-item i {
  font-size: 1.4rem;
}

/* Unique background colors */
.fmcg          { background: #ff6f61; } /* Coral red */
.it            { background: #007bff; } /* Bootstrap blue */
.bfsi          { background: #663399; } /* Purple (finance vibe) */
.pharma        { background: #28a745; } /* Green (health) */
.telecom       { background: #495057; } /* Dark grey (security) */
.hospitality   { background: #ffb347; } /* Light orange */
.hotel         { background: #17a2b8; } /* Teal */
.health        { background: #dc3545; } /* Red (medical) */
.manufacturing { background: #6f42c1; } /* Indigo */
.education     { background: #fd7e14; } /* Orange */
