/* ============================================
   technology SERVICES SHOWCASE - SINGLE SCREEN FIT
   ============================================ */

.technology-services-showcase-ss2 {

  display: flex;
  align-items: center;
  padding: 3rem 2rem;
  background: 
    radial-gradient(circle at 15% 25%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(29, 154, 146, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #fefefe 0%, #fefbf9 40%, #fff9f5 100%);
  position: relative;
  overflow: hidden;
}

.technology-services-wrapper-ss2 {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ============================================
   COMPACT HEADER
   ============================================ */

.technology-services-hero-header-ss2 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.technology-hero-badge-ss2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: 
    linear-gradient(135deg, 
      rgba(255, 107, 53, 0.1) 0%, 
      rgba(29, 154, 146, 0.1) 100%
    );
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FF6B35;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
  animation: heroBadge-ss2-float 3s ease-in-out infinite;
}

@keyframes heroBadge-ss2-float {
  0%, 100% { transform: translateY(0); }
  50% { transform:translateY(-6px); }
}

.badge-dot-ss2 {
  width: 8px;
  height: 8px;
  background: #FF6B35;
  border-radius: 50%;
  animation: badge-dot-ss2-pulse 2s ease-in-out infinite;
}

@keyframes badge-dot-ss2-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 107, 53, 0);
  }
}

.technology-hero-badge-ss2 i {
  font-size: 1rem;
}

.technology-hero-title-ss2 {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.technology-gradient-text-ss2 {
  background: linear-gradient(135deg, 
    #FF6B35 0%, 
    #FF8F6B 30%,
    #1D9A92 70%,
    #157A74 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-ss2-shift 5s ease infinite;
}

@keyframes gradient-ss2-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.technology-hero-subtitle-ss2 {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
}

/* ============================================
   COMPACT SERVICES GRID - 4 COLUMNS
   ============================================ */

.technology-services-grid-ss2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 0;
}

/* ============================================
   SERVICE CARDS - COMPACT DESIGN
   ============================================ */

.technology-service-item-ss2 {
  position: relative;
  padding: 28px 24px;
  background: 
    linear-gradient(135deg, 
      rgba(255, 255, 255, 0.98) 0%, 
      rgba(255, 255, 255, 0.95) 100%
    );
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.technology-card-overlay-ss2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.technology-card-shine-ss2 {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent
  );
  transition: left 0.6s ease;
  pointer-events: none;
}

.technology-service-item-ss2:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.12),
    0 0 0 2px rgba(255, 255, 255, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.technology-service-item-ss2:hover .technology-card-overlay-ss2 {
  opacity: 1;
}

.technology-service-item-ss2:hover .technology-card-shine-ss2 {
  left: 150%;
}

/* ============================================
   SERVICE HEADER
   ============================================ */

.technology-service-header-ss2 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  /* margin-bottom: 20px; */
  position: relative;
}

.technology-icon-container-ss2 {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 18px;
}
.technology-icon-orange-ss2 {
  background: linear-gradient(135deg, #FF6B35 0%, #FF4444 100%);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.technology-icon-teal-ss2 {
  background: linear-gradient(135deg, #1D9A92 0%, #00D4FF 100%);
  box-shadow: 0 6px 20px rgba(29, 154, 146, 0.4);
}

.technology-icon-purple-ss2 {
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.technology-icon-blue-ss2 {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.technology-icon-glow-ss2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  opacity: 0.5;
  filter: blur(10px);
  animation: icon-glow-ss2-pulse 3s ease-in-out infinite;
}

@keyframes icon-glow-ss2-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.technology-service-item-ss2:hover .technology-icon-container-ss2 {
  transform: scale(1.1) rotate(-8deg);
}

.technology-service-badge-ss2 {
  padding: 4px 12px;
  background: linear-gradient(135deg, 
    rgba(255, 107, 53, 0.15) 0%, 
    rgba(29, 154, 146, 0.15) 100%
  );
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #FF6B35;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: absolute;
  top: 0;
  right: 0;
}

/* ============================================
   SERVICE CONTENT
   ============================================ */

.technology-service-name-ss2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.technology-service-text-ss2 {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ============================================
   COMPACT FEATURE LIST
   ============================================ */

.technology-feature-compact-list-ss2 {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.technology-feature-compact-list-ss2 li i {
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* Different colors for each card */
.technology-service-item-ss2[data-service-ss2="onpage"] .technology-feature-compact-list-ss2 li i {
  color: #FF6B35;
}

.technology-service-item-ss2[data-service-ss2="offpage"] .technology-feature-compact-list-ss2 li i {
  color: #1D9A92;
}

.technology-service-item-ss2[data-service-ss2="local"] .technology-feature-compact-list-ss2 li i {
  color: #8B5CF6;
}

.technology-service-item-ss2[data-service-ss2="technical"] .technology-feature-compact-list-ss2 li i {
  color: #3B82F6;
}

.technology-service-item-ss2:hover .technology-feature-compact-list-ss2 li {
  transform: translateX(4px);
}

.technology-service-item-ss2:hover .technology-feature-compact-list-ss2 li i {
  transform: scale(1.2);
}

.technology-cta-link-ss2 {
  font-size: 0.875rem;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    padding: 6px 14px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.technology-cta-link-ss2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(255, 107, 53, 0.15) 0%, 
    rgba(29, 154, 146, 0.15) 100%
  );
  transition: left 0.5s ease;
}

.technology-cta-link-ss2:hover::before {
  left: 100%;
}

.technology-cta-link-ss2:hover {
  background: linear-gradient(135deg, 
    rgba(255, 107, 53, 0.12) 0%, 
    rgba(29, 154, 146, 0.12) 100%
  );
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.2);
}

.technology-cta-link-ss2 i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.technology-cta-link-ss2:hover i {
  transform: translateX(4px);
}

/* ============================================
   FLOATING DECORATIONS
   ============================================ */

.technology-floating-elements-ss2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.technology-float-orb-ss2 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(80px);
}

.technology-orb-1-ss2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, 
    rgba(255, 107, 53, 0.4) 0%, 
    transparent 70%
  );
  top: -150px;
  right: -150px;
  animation: orb-1-ss2-float 20s ease-in-out infinite;
}

.technology-orb-2-ss2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, 
    rgba(29, 154, 146, 0.4) 0%, 
    transparent 70%
  );
  bottom: -120px;
  left: -120px;
  animation: orb-2-ss2-float 18s ease-in-out infinite;
}

.technology-orb-3-ss2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, 
    rgba(139, 92, 246, 0.3) 0%, 
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orb-3-ss2-float 15s ease-in-out infinite;
}

@keyframes orb-1-ss2-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(40px, -40px) rotate(120deg); }
  66% { transform: translate(-40px, 40px) rotate(240deg); }
}

@keyframes orb-2-ss2-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-35px, 35px) rotate(-120deg); }
  66% { transform: translate(35px, -35px) rotate(-240deg); }
}

@keyframes orb-3-ss2-float {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* ============================================
   RESPONSIVE DESIGN - MAINTAIN SCREEN FIT
   ============================================ */

@media (max-width: 1400px) {
  .technology-services-grid-ss2 {
    gap: 18px;
  }
  
  .technology-service-item-ss2 {
    padding: 24px 20px;
  }
}

@media (max-width: 1200px) {
  .technology-services-showcase-ss2 {
    padding: 50px 20px;
  }
  
  .technology-hero-title-ss2 {
    font-size: 2.25rem;
  }
  
  .technology-services-grid-ss2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .technology-services-hero-header-ss2 {
    margin-bottom: 35px;
  }
}

@media (max-width: 968px) {
  .technology-services-showcase-ss2 {
    min-height: auto;
    max-height: none;
    padding: 60px 20px;
  }
  
  .technology-hero-title-ss2 {
    font-size: 2rem;
  }
  
  .technology-services-grid-ss2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .technology-service-item-ss2 {
    padding: 22px 18px;
  }
  
  .technology-service-name-ss2 {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .technology-services-showcase-ss2 {
    padding: 50px 16px;
  }
  
  .technology-hero-title-ss2 {
    font-size: 1.875rem;
  }
  
  .technology-hero-subtitle-ss2 {
    font-size: 0.9375rem;
  }
  
  .technology-services-grid-ss2 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .technology-service-item-ss2 {
    padding: 20px;
    align-items: flex-start;
  }
  
  .technology-icon-container-ss2 {
    width: 42px;
    height: 42px;
    font-size: 1.125rem;
  }
  
  .technology-cta-link-ss2 {
    align-self: flex-start;
  }
  
  .technology-service-name-ss2,
  .technology-service-text-ss2 {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .technology-services-showcase-ss2 {
    padding: 2rem 1rem;
  }
  
  .technology-hero-title-ss2 {
    font-size: 1.625rem;
  }
  
  .technology-hero-badge-ss2 {
    font-size: 0.75rem;
    padding: 7px 16px;
  }
  
  .technology-service-item-ss2 {
    padding: 18px;
  }
  
  
  .technology-feature-compact-list-ss2 li {
    font-size: 0.75rem;
  }
  
  .technology-cta-link-ss2 {
    padding: 9px 18px;
    font-size: 0.8125rem;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

@media (prefers-reduced-motion: no-preference) {
  .technology-service-item-ss2 {
    animation: service-ss2-fadeInUp 0.7s ease forwards;
    opacity: 0;
  }
  
  .technology-service-item-ss2:nth-child(1) { animation-delay: 0.1s; }
  .technology-service-item-ss2:nth-child(2) { animation-delay: 0.2s; }
  .technology-service-item-ss2:nth-child(3) { animation-delay: 0.3s; }
  .technology-service-item-ss2:nth-child(4) { animation-delay: 0.4s; }
  
  @keyframes service-ss2-fadeInUp {
    from {
      opacity: 0;
      transform: translateY(25px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.technology-service-item-ss2:focus-visible,
.technology-cta-link-ss2:focus-visible {
  outline: 3px solid #FF6B35;
  outline-offset: 4px;
}

/* ON-PAGE technology (Orange card like Logo Designs) */
[data-service-ss2="onpage"] {
    border-color: #ff8a4c40;
    box-shadow: 0 6px 14px rgba(255,138,76,0.25);
}
[data-service-ss2="onpage"] .technology-icon-container-ss2 {
    background: #ff8a4c;
}
[data-service-ss2="onpage"] .technology-cta-link-ss2 {
    background: linear-gradient(90deg, #ff8a4c, #ff6126);
}

/* OFF-PAGE technology (Teal like Brochure Designs) */
[data-service-ss2="offpage"] {
    border-color: #19c49b40;
    box-shadow: 0 6px 14px rgba(25,196,155,0.20);
}
[data-service-ss2="offpage"] .technology-icon-container-ss2 {
    background: #19c49b;
}
[data-service-ss2="offpage"] .technology-cta-link-ss2 {
    background: linear-gradient(90deg, #19c49b, #11a782);
}

/* LOCAL technology (Purple like Diaries & Banners) */
[data-service-ss2="local"] {
    border-color: #7a5cff40;
    box-shadow: 0 6px 14px rgba(122,92,255,0.22);
}
[data-service-ss2="local"] .technology-icon-container-ss2 {
    background: #7a5cff;
}
[data-service-ss2="local"] .technology-cta-link-ss2 {
    background: linear-gradient(90deg, #7a5cff, #643cff);
}

/* TECHNICAL technology (Blue like Business Cards) */
[data-service-ss2="technical"] {
    border-color: #3d8bff40;
    box-shadow: 0 6px 14px rgba(61,139,255,0.22);
}
[data-service-ss2="technical"] .technology-icon-container-ss2 {
    background: #3d8bff;
}
[data-service-ss2="technical"] .technology-cta-link-ss2 {
    background: linear-gradient(90deg, #3d8bff, #1a6df7);
}

.technology-cta-link-ss2:hover {
    opacity: 0.9;
    transform: translateX(4px);
}

/* Check icon spacing */
.technology-feature-compact-list-ss2 li i {
    color: #00b894;
    margin-right: 8px;
    font-size: 14px;
}

.technology-icon-container-ss2 {
    width: 42px;
    height: 42px;
}
.technology-icon-container-ss2 i {
    font-size: 18px;
}

.technology-cta-link-ss2 {
    margin-top: 10px !important;
}

/* Default List Style */
.technology-feature-compact-list-ss2 li {
    position: relative;
    padding-left: 32px;
    /* margin: 10px 0; */
    font-size: 13px;
    color: #333;
    transition: 0.3s ease;
    cursor: pointer;
}

/* Default Icon Style */
.technology-feature-compact-list-ss2 li i {
    position: absolute;
    left: 0;
    background: #12c7a0; /* Green Circle */
    color: #ffffff !important; /* Tick ALWAYS white */
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    transition: 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

/* Hover Effect — only hovered LI changes */
.technology-feature-compact-list-ss2 li:hover i {
    background: #ff6b35 !important; /* Orange circle */
    color: #ffffff !important;       /* Tick stays white always */
}

/* Heading hover effect (green) */
.technology-service-item-ss2 h3.technology-service-name-ss2 {
    transition: color 0.25s ease;
}

/* Hover → heading becomes green */
.technology-service-item-ss2:hover h3.technology-service-name-ss2 {
    color: #00b894 !important;
}