     
        /* Custom configuration for specific colors */
        /**{*/
        /*            font-family: 'Lato', sans-serif !important;*/

        /*}*/
        body{
           font-family: 'Lato', sans-serif !important; 
        }
        
        .bg-custom-red {
            background-color: #b13535;
        }
        .text-custom-red {
            color: #b13535;
        }
        .border-custom-red {
            border-color: #b13535;
        }

        /* Custom hover effects */
        /* Custom hover effects */
        .solution-card .card-content {
            transition: all 0.3s ease;
        }
        
        .solution-card:hover .card-content {
            transform: translateY(-20px);
        }
        
        .solution-card .card-description {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
        
        .solution-card:hover .card-description {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Dark gradient overlay for better text visibility */
        .dark-gradient {
            background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 0%, 
                rgba(0, 0, 0, 0.1) 50%, 
                rgba(0, 0, 0, 0.8) 100%);
        }
        
        .dark-gradient:hover {
            background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 0%, 
                rgba(0, 0, 0, 0.2) 50%, 
                rgba(0, 0, 0, 0.9) 100%);
        }


          
        /* Active tab styling */
            /* Active tab styling */

            .bg-gradient-custom {
            background: linear-gradient(135deg, #fff5f5 0%, #fef3c7 100%);
        }
        

            .feature-tab {
            position: relative;
            overflow: hidden;
        }
        
        .feature-tab::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #b13535;
            transition: width 0.3s ease;
        }
        
        .feature-tab.active::before {
            width: 100%;
        }
        
        .feature-tab:hover {
            transform: translateY(-2px);
        }
        
        .feature-tab.active {
            background-color: rgba(177, 53, 53, 0.05);
            border-radius: 12px;
        }
        
        .feature-tab.active .feature-number {
            color: #b13535;
            transform: scale(1.1);
        }
        
        /* Card animations */
        .card {
            animation: slideInUp 0.6s ease-out;
            transition: all 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Floating animation for icons */
        .floating {
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        /* Pulse animation for active elements */
        .pulse {
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        /* Background pattern */
        .pattern-bg {
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(177, 53, 53, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(177, 53, 53, 0.03) 0%, transparent 50%);
        }
        
        /* Decorative shapes */
        .shape-1 {
            position: absolute;
            top: 10%;
            right: 5%;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, rgba(177, 53, 53, 0.1), rgba(251, 191, 36, 0.1));
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation: rotate 20s linear infinite;
        }
        
        .shape-2 {
            position: absolute;
            bottom: 10%;
            left: 5%;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(177, 53, 53, 0.1));
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            animation: rotate -15s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* Gradient text */
        .gradient-text {
            background: linear-gradient(135deg, #b13535, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Animated underline */
        .animated-underline {
            position: relative;
            display: inline-block;
        }
        
        .animated-underline::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, #b13535, #fbbf24);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .animated-underline:hover::after {
            transform: scaleX(1);
        }
      
   
    
   
   /*<!-- ABOUT US -->*/
    
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.8; }
        50% { transform: scale(1.1); opacity: 1; }
    }
    
    .float-animation {
        animation: float 4s ease-in-out infinite;
    }
    
    .pulse-animation {
        animation: pulse 3s ease-in-out infinite;
    }
    
    .diagonal-bg {
        background: linear-gradient(135deg, #ffffff 45%, #f3f4f6 45%);
    }
    
    .security-pattern {
        background-image: 
            linear-gradient(45deg, #b13535 1px, transparent 1px),
            linear-gradient(-45deg, #b13535 1px, transparent 1px);
        background-size: 20px 20px;
        opacity: 0.05;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
  

/*<!-- CASE STUDIES -->*/

 
    .tab-button {
      position: relative;
      padding: 4px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      background: none;
      color: #4b5563;
      border-radius: 0.75rem;
    }
    
    .tab-button:hover {
      background-color: #f3f4f6;
    }
    
    .tab-button.active {
      color: #111827;
      background-color: #f3f4f6;
    }
    
    .tab-button.active span {
      color: #b13535;
    }
    
    .tab-button.active::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #b13535;
      border-radius: 2px;
    }
    
    .slide {
      display: none;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
    }
    
    .slide.active {
      display: block;
      animation: slideIn 0.5s ease-out forwards;
    }
    
    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .carousel-content {
      min-height: 500px;
      position: relative;
      overflow: hidden;
    }
    
    .progress-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #d1d5db;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .progress-dot.active {
      width: 24px;
      border-radius: 4px;
      background-color: #b13535;
    }
    
    @media (max-width: 768px) {
      .tab-button {
        padding: 8px;
      }
      
      .tab-button span {
        font-size: 1.5rem;
      }
      
      .tab-button p {
        font-size: 0.75rem;
      }
    }
    



  
  


   /*<!-- Testimonial -->*/
    
    #testimonial-section {
      position: relative;
      background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
      padding: 2rem 1.5rem 6rem;
      border-radius: 1rem;
      max-width: 1300px;
      margin: 0rem auto;
      color: #333333;
      font-family: 'Inter', sans-serif;
      user-select: none;
      overflow: hidden;
    }

    /* Subtle ambient glow behind whole section */
    #testimonial-section::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle at center, #f5e66355, transparent 70%);
      transform: translate(-50%, -50%);
      filter: blur(100px);
      pointer-events: none;
      z-index: 0;
    }

    #testimonial-content {
      position: relative;
      z-index: 1;
    }

    /* Scrollbar styling */
    .testimonial-text::-webkit-scrollbar {
      width: 6px;
    }
    .testimonial-text::-webkit-scrollbar-thumb {
      background-color: #b13535;
      border-radius: 10px;
    }
    .testimonial-text {
      scrollbar-width: thin;
      color: #555555;
    }

    /* Cards container */
    #carousel {
      overflow: visible;
      position: relative;
      height: 520px;
      max-width: 100%;
      margin: 0 auto;
      z-index: 1;
      padding-top: 20px;
      padding-bottom: 20px;
    }

    #cards-wrapper {
      display: flex;
      gap: 2rem;
      justify-content: center;
      align-items: center;
    }

    /* Card base */
    .card {
      border-radius: 1rem;
      padding: 1.5rem;
      background-color: #ffffff;
      border: 2px solid transparent;
      flex-shrink: 0;
      color: #333333;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      user-select: text;
      transition: transform 0.4s ease, border-color 0.4s ease;
      position: relative;
    }

    /* Center card bigger with glowing radial background */
    .card.center {
      width: 420px;
      transform: scale(1.1);
      border-color: #b13535;
      z-index: 10;
    }
    .card.center::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 120%;
      height: 120%;
      background: radial-gradient(circle at center, #f5e66333, transparent 70%);
      border-radius: 1rem;
      transform: translate(-50%, -50%);
      filter: blur(40px);
      z-index: -1;
    }
    .card.center:hover {
      transform: scale(1.15);
      border-color: #f5e663;
    }

    /* Side cards normal size with subtle border */
    .card.side {
      width: 280px;
      border-color: #b1353540;
      opacity: 0.75;
      cursor: pointer;
    }
    .card.side:hover {
      opacity: 1;
      border-color: #f5e663;
      transform: scale(1.05);
    }

    /* Video styling */
    .card video {
      border-radius: 0.5rem;
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      margin-bottom: 1rem;
      border: 3px solid transparent;
      transition: border-color 0.4s ease;
    }
    .card.center video {
      border-color: #f5e663;
    }
    .card.center:hover video {
      border-color: #b13535;
    }

    /* Text */
    .testimonial-text {
      max-height: 100px;
      overflow-y: auto;
      font-weight: 400;
      font-size: 1rem;
      line-height: 1.5;
      margin-bottom: 1rem;
      color: #444444;
    }
    .author {
      font-weight: 700;
      font-size: 1.125rem;
      color: #b13535;
      text-align: right;
      user-select: text;
    }

    /* Buttons */
    .btn {
      background-color: #b13535;
      color: white;
      padding: 0.75rem 2rem;
      border-radius: 0.5rem;
      font-weight: 700;
      transition: background-color 0.3s ease, transform 0.3s ease;
      user-select: none;
      cursor: pointer;
      border: none;
      box-shadow: none;
    }
    .btn:hover {
      background-color: #7f2626;
      transform: scale(1.05);
    }

    /* Responsive */
    @media (max-width: 900px) {
      #carousel {
        height: 480px;
      }
      .card.center {
        width: 350px;
        transform: scale(1);
      }
      .card.side {
        width: 240px;
        opacity: 0.6;
      }
      .card.center:hover {
        transform: scale(1.05);
      }
    }
    @media (max-width: 640px) {
      #carousel {
        height: auto;
      }
      #cards-wrapper {
        justify-content: center !important;
      }
      .card.side {
        display: none;
      }
      .card.center {
        width: 90vw;
        transform: scale(1);
      }
      .card.center video {
        aspect-ratio: 16/9;
      }
      .btn {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
      }
    }
    

  /*our clients logo */
   
    /* Hide scrollbar */
    .no-scrollbar::-webkit-scrollbar {
      display: none;
    }
    .no-scrollbar {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    

  /*<!-- Background -->*/
     
  /* Security Grid Background Class */
  .security-grid {
      position: relative;
  }
  
  .security-grid::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
          linear-gradient(rgba(240, 242, 246, 0.2) 1px, transparent 1px),
          linear-gradient(90deg, rgba(226, 229, 232, 0.2) 1px, transparent 1px);
      background-size: 50px 50px;
      z-index: 0;
      pointer-events: none;
  }
  
  /* Content needs to be positioned above the background */
  .security-grid > .content {
      position: relative;
      z-index: 1;
  }
  