/* our client css */



    .client-product-clients-section {
      max-width: 1400px;
      margin: 0 auto;
      padding: 30px 35px;
    }

    .client-product-clients-section .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .client-product-clients-section .section-title {
      font-size: 3.5rem;
      font-weight: 800;
      color: #040d91;
      margin-bottom: 15px;
      letter-spacing: -2px;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .client-product-clients-section .section-subtitle {
      font-size: 1.2rem;
      color: black;
      font-weight: 400;
    }

    .client-product-clients-section .clients-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
      margin-bottom: 80px;
    }

    .client-product-clients-section .client-card {
      height: 400px;
      perspective: 1000px;
    }

    .client-product-clients-section .card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      transform-style: preserve-3d;
    }

    .client-product-clients-section .client-card:hover .card-inner {
      transform: rotateY(180deg);
    }

    .client-product-clients-section .card-front,
    .client-product-clients-section .card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border-radius: 24px;
      overflow: hidden;
    }

    .client-product-clients-section .card-front {
      background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      border: 2px solid rgba(255, 255, 255, 0.8);
    }

    .client-product-clients-section .client-logo {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      overflow: hidden;
      margin-bottom: 30px;

      /* 🔥 Brand color applied */
      border: 4px solid #D00EFF;
      box-shadow: 0 12px 35px rgba(208, 14, 255, 0.45);

      animation: float 3s ease-in-out infinite;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
    }


    @keyframes float {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    .client-product-clients-section .client-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .client-product-clients-section .card-info {
      text-align: center;
    }

    .client-product-clients-section .client-name {
      font-size: 1.8rem;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 10px;
    }

    .client-product-clients-section .client-industry {
      font-size: 1rem;
      color: #667eea;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .client-product-clients-section .flip-indicator {
      position: absolute;
      bottom: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg,
          #D00EFF 0%,
          rgba(208, 14, 255, 0.8) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulse 2s ease-in-out infinite;
    }


    @keyframes pulse {

      0%,
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(208, 14, 255, 0.7);
      }

      50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(208, 14, 255, 0);
      }
    }


    .client-product-clients-section .flip-indicator svg {
      width: 20px;
      height: 20px;
      color: white;
    }

    .client-product-clients-section .card-back {
      background-size: cover;
      background-position: center;
      transform: rotateY(180deg);
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      position: relative;
    }

    .client-product-clients-section .card-back-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.40) 0%, rgba(118, 75, 162, 0.40) 100%);
      z-index: 1;
    }

    .client-product-clients-section .project-details {
      color: white;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .client-product-clients-section .project-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 15px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .client-product-clients-section .project-description {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 25px;
      opacity: 0.95;
    }

    .client-product-clients-section .project-tags {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 25px;
    }

    .client-product-clients-section .tag {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .client-product-clients-section .view-project-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: #D00EFF;
      color: #ffff;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .client-product-clients-section .view-project-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .client-product-clients-section .view-project-btn svg {
      width: 18px;
      height: 18px;
      transition: transform 0.3s ease;
    }

    .client-product-clients-section .view-project-btn:hover svg {
      transform: translateX(5px);
    }

    .client-product-clients-section .view-all-container {
      display: flex;
      justify-content: center;
    }

    .client-product-clients-section .view-all-btn {
      display: inline-flex;
      align-items: center;
      gap: 15px;
      padding: 20px 50px;
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      background: linear-gradient(135deg,
          #D00EFF,
          rgba(208, 14, 255, 0.8));
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 12px 40px rgba(208, 14, 255, 0.45);
      position: relative;
      overflow: hidden;
    }


    .client-product-clients-section .view-all-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      left: -100%;
      background: linear-gradient(90deg,
          transparent,
          rgba(255, 255, 255, 0.3),
          transparent);
      transition: left 0.6s ease;
    }


    .client-product-clients-section .view-all-btn:hover::before {
      left: 100%;
    }

    .client-product-clients-section .view-all-btn:hover {
      transform: translateY(-5px) scale(1.05);
      background: linear-gradient(135deg,
          rgba(208, 14, 255, 0.95),
          #D00EFF);
      box-shadow: 0 18px 55px rgba(208, 14, 255, 0.65);
    }

    .client-product-clients-section .btn-arrow {
      width: 24px;
      height: 24px;
      transition: transform 0.3s ease;
    }

    .client-product-clients-section .view-all-btn:hover .btn-arrow {
      transform: translateX(10px);
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 2.5rem;
      }

      .clients-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .client-card {
        height: 380px;
      }

      .view-all-btn {
        padding: 16px 35px;
        font-size: 1rem;
      }
    }

    /* // our product css */

    .projects-section {
      max-width: 1400px;
      margin: 0 auto;
      padding: 30px 35px;
    }

    .our-projects-section .projects-section {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .our-projects-section .section-title {
      font-size: 3rem;
      font-weight: 700;
      color: #040d91;
      margin-bottom: 50px;
      text-align: center;
      letter-spacing: -1px;
    }

    .our-projects-section .projects-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .our-projects-section .project-card {
      position: relative;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease;
      cursor: pointer;
      height: 450px;
    }

    .our-projects-section .project-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .our-projects-section .wide-card {
      grid-column: span 2;
    }

    .our-projects-section .card-image {
      position: relative;
      height: 100%;
      background-size: cover;
      background-position: center;
      overflow: hidden;
    }

    .our-projects-section .card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100%;
      background: linear-gradient(to top,
          rgba(10, 20, 60, 0.95) 0%,
          rgba(10, 20, 60, 0.75) 40%,
          rgba(10, 20, 60, 0.2) 70%,
          transparent 100%);
      backdrop-filter: blur(2px);
      transition: all 0.4s ease;
    }

    .our-projects-section .card-blur {
      position: relative;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: antiquewhite;
      z-index: 10;
    }

    .our-projects-section .project-card:hover .card-overlay {
          background: linear-gradient(to top, rgba(70, 90, 255, 0.95) 0%, rgba(70, 90, 255, 0.75) 40%, rgba(70, 90, 255, 0.35) 70%, transparent 100%);
      backdrop-filter: blur(4px);
    }

    .our-projects-section .hover-box {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      width: 70px;
      height: 70px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .our-projects-section .project-card:hover .hover-box {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
    }

    .our-projects-section .arrow-icon {
      width: 32px;
      height: 32px;
      color: #1a1a1a;
      transition: transform 0.3s ease;
    }

    .our-projects-section .project-card:hover .arrow-icon {
      transform: translate(3px, -3px);
    }

    .our-projects-section .card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 30px;
      background: transparent;
      z-index: 2;
    }

    .our-projects-section .card-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 8px;
      text-align: center;
      line-height: 1.3;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .our-projects-section .card-subtitle {
      font-size: 0.95rem;
      text-align: center;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 400;
      text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 1024px) {
      .our-projects-section .projects-container {
        grid-template-columns: repeat(2, 1fr);
      }

      .our-projects-section .wide-card {
        grid-column: span 2;
      }
    }

    @media (max-width: 768px) {
      .our-projects-section .section-title {
        font-size: 2rem;
      }

      .our-projects-section .projects-container {
        grid-template-columns: 1fr;
      }

      .our-projects-section .wide-card {
        grid-column: span 1;
      }

      .our-projects-section .project-card {
        height: 350px;
      }
    }

    .our-projects-section .view-all-container {
      display: flex;
      justify-content: center;
      margin-top: 60px;
      padding: 20px 0;
    }

   .our-projects-section .view-all-btn {
      background: linear-gradient(135deg, #f80301 0%, #a52400 100%);
      color: #fff;
      border: none;
      padding: 18px 40px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: all 0.35s ease;
      box-shadow: 0 10px 30px rgba(248, 3, 1, 0.35);
      letter-spacing: 0.5px;
      position: relative;
      overflow: hidden;
    }



    .our-projects-section .view-all-btn::before {
      content: "";
      position: absolute;
      inset: 0;
      left: -100%;
      background: linear-gradient(90deg,
          transparent,
          rgba(255, 255, 255, 0.25),
          transparent);
      transition: left 0.6s ease;
    }



    .our-projects-section .view-all-btn:hover {
      transform: translateY(-3px);
      background: linear-gradient(135deg,
          rgba(208, 14, 255, 0.9) 0%,
          #f80301 100%);
      box-shadow: 0 18px 45px rgba(208, 14, 255, 0.55);
    }

    .our-projects-section .view-all-btn:hover::before {
      left: 100%;
    }



    .our-projects-section .view-all-btn:active {
      transform: translateY(-1px);
      box-shadow: 0 8px 22px rgba(208, 14, 255, 0.4);
    }


    .our-projects-section .btn-arrow {
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
    }

    .our-projects-section .view-all-btn:hover .btn-arrow {
      transform: translateX(5px);
    }

    /* For smaller screens */
    @media (max-width: 768px) {
      .our-projects-section .view-all-container {
        margin-top: 40px;
      }

      .our-projects-section .view-all-btn {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }
    }