
/* ============================================
   COMPACT HEADER
   ============================================ */
.web-services-showcase-ss2 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
}
.web-services-wrapper-ss2 {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  margin-top: -24px;
  margin-bottom: -26px;
}
.web-services-hero-header-ss2 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}
.web-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);
  }
}

.web-hero-badge-ss2 i {
  font-size: 1rem;
}

.web-hero-title-ss2 {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.web-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; }
}

.web-hero-subtitle-ss2 {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
}
/* ============================================
   SERVICE CARDS - COMPACT DESIGN
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 6px;
  width: 100%;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

.service-card:nth-child(1) {
    border: 2px solid rgba(102, 126, 234, 0.3);
}
.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    backdrop-filter: blur(30px);
    border-radius: 28px;
    padding: 28px 17px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(29, 154, 146, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    min-height: 250px;
    max-height: 420px auto;
    display: flex;
    flex-direction: column;
}
/* Combined Aurora + Popular Badge Style */
.service-card:nth-child(1):hover {
    border-color: rgba(102, 126, 234, 0.6);
}
/* Card 2 - Teal Border */
.service-card:nth-child(2) {
    border: 2px solid rgba(29, 154, 146, 0.3);
}
.service-card:nth-child(2):hover {
    border-color: rgba(29, 154, 146, 0.6);
}
/* Card 3 - Orange Border */
.service-card:nth-child(3) {
    border: 2px solid rgba(255, 107, 53, 0.3);
}
.service-card:nth-child(3):hover {
    border-color: rgba(255, 107, 53, 0.6);
}
/* Card 4 - Blue Border */
.service-card:nth-child(4) {
    border: 2px solid rgba(79, 70, 229, 0.3);
}
.service-card:nth-child(4):hover {
    border-color: rgba(79, 70, 229, 0.6);
}
/* Simple hover effect - no animations */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(29, 154, 146, 0.2);
    border-color: rgba(29, 154, 146, 0.4);
}
.web-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;
}
.card-content {
  position: relative;
  z-index: 1;
}
.web-card-overlay-ss2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Different overlays for each card */
.web-service-item-ss2[data-service-ss2="onpage"] .web-card-overlay-ss2 {
  background: radial-gradient(circle at 50% 0%, 
    rgba(255, 107, 53, 0.2) 0%, 
    transparent 70%
  );
}

.web-service-item-ss2[data-service-ss2="offpage"] .web-card-overlay-ss2 {
  background: radial-gradient(circle at 50% 0%, 
    rgba(29, 154, 146, 0.2) 0%, 
    transparent 70%
  );
}

.web-service-item-ss2[data-service-ss2="local"] .web-card-overlay-ss2 {
  background: radial-gradient(circle at 50% 0%, 
    rgba(139, 92, 246, 0.2) 0%, 
    transparent 70%
  );
}

.web-service-item-ss2[data-service-ss2="technical"] .web-card-overlay-ss2 {
  background: radial-gradient(circle at 50% 0%, 
    rgba(59, 130, 246, 0.2) 0%, 
    transparent 70%
  );
}

.web-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;
}

.web-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);
}

.web-service-item-ss2:hover .web-card-overlay-ss2 {
  opacity: 1;
}

.web-service-item-ss2:hover .web-card-shine-ss2 {
  left: 150%;
}

/* ============================================
   SERVICE HEADER
   ============================================ */

.web-service-header-ss2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.web-icon-container-ss2 {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.15),
    inset 0 -1px 4px rgba(0, 0, 0, 0.1);
}

.web-icon-orange-ss2 {
  background: linear-gradient(135deg, #FF6B35 0%, #FF4444 100%);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.web-icon-teal-ss2 {
  background: linear-gradient(135deg, #1D9A92 0%, #00D4FF 100%);
  box-shadow: 0 6px 20px rgba(29, 154, 146, 0.4);
}

.web-icon-purple-ss2 {
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.web-icon-blue-ss2 {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}
 /* Icon Styling */
.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    transition: all 0.4s ease;
    border: none;
}
/* Card 1 - Purple/Violet */
.service-card:nth-child(1) .icon-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}
.service-card:nth-child(1):hover .icon-wrapper {
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.6);
    transform: rotate(5deg) scale(1.15);
}
/* Card 2 - Teal/Cyan */
.service-card:nth-child(2) .icon-wrapper {
    background: linear-gradient(135deg, #1D9A92 0%, #25BFB7 100%);
    box-shadow: 0 4px 20px rgba(29, 154, 146, 0.4);
}
.service-card:nth-child(2):hover .icon-wrapper {
    box-shadow: 0 6px 30px rgba(29, 154, 146, 0.6);
    transform: rotate(5deg) scale(1.15);
}
/* Card 3 - Orange/Coral */
.service-card:nth-child(3) .icon-wrapper {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}
.service-card:nth-child(3):hover .icon-wrapper {
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
    transform: rotate(5deg) scale(1.15);
}
/* Card 4 - Blue/Indigo */
.service-card:nth-child(4) .icon-wrapper {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
}
.service-card:nth-child(4):hover .icon-wrapper {
    box-shadow: 0 6px 30px rgba(79, 70, 229, 0.6);
    transform: rotate(5deg) scale(1.15);
}
.icon-wrapper i {
    font-size: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.service-card:hover .icon-wrapper i {
    transform: scale(1.1);
}

.web-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); }
}

.web-service-item-ss2:hover .web-icon-container-ss2 {
  transform: scale(1.1) rotate(-8deg);
}

.web-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;
}

/* ============================================
   SERVICE CONTENT
   ============================================ */

.web-service-name-ss2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.web-service-text-ss2 {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ============================================
   COMPACT FEATURE LIST
   ============================================ */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-bottom: 10px;
}
/* Features List - 2 Column Grid */
.features-list li {
    padding: 4px 0;
    font-size: 15px;
    color: #4B5563;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}
.features-list li:hover {
    transform: translateX(4px);
    color: #1F2937;
}
.features-list i {
    color: #1D9A92;
    font-size: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.features-list li:hover i {
    transform: scale(1.2);
    color: #FF6B35;
}
.web-feature-compact-list-ss2 {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.web-feature-compact-list-ss2 li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: #475569;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.web-feature-compact-list-ss2 li i {
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* Different colors for each card */
.web-service-item-ss2[data-service-ss2="onpage"] .web-feature-compact-list-ss2 li i {
  color: #FF6B35;
}

.web-service-item-ss2[data-service-ss2="offpage"] .web-feature-compact-list-ss2 li i {
  color: #1D9A92;
}

.web-service-item-ss2[data-service-ss2="local"] .web-feature-compact-list-ss2 li i {
  color: #8B5CF6;
}

.web-service-item-ss2[data-service-ss2="technical"] .web-feature-compact-list-ss2 li i {
  color: #3B82F6;
}

.web-service-item-ss2:hover .web-feature-compact-list-ss2 li {
  transform: translateX(4px);
}

.web-service-item-ss2:hover .web-feature-compact-list-ss2 li i {
  transform: scale(1.2);
}

/* ============================================
   CTA LINK
   ============================================ */
/* Card 1 - Purple Button */
.service-card:nth-child(1) .cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
.service-card:nth-child(1) .cta-button:hover {
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
}
/* Card 2 - Teal Button */
.service-card:nth-child(2) .cta-button {
    background: linear-gradient(135deg, #1D9A92 0%, #25BFB7 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(29, 154, 146, 0.3);
}
.service-card:nth-child(2) .cta-button:hover {
    box-shadow: 0 6px 25px rgba(29, 154, 146, 0.5);
    transform: translateY(-2px);
}
/* Card 3 - Orange Button */
.service-card:nth-child(3) .cta-button {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}
.service-card:nth-child(3) .cta-button:hover {
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}
/* Card 4 - Blue Button */
.service-card:nth-child(4) .cta-button {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}
.service-card:nth-child(4) .cta-button:hover {
    box-shadow: 0 6px 25px rgba(79, 70, 229, 0.5);
    transform: translateY(-2px);
}
/* Shine effect on hover */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}
.cta-button:hover::before {
    left: 100%;
}
.cta-button:hover i {
    transform: translateX(4px);
}
/* Active state */
.cta-button:active {
    transform: translateY(0);
}
.web-cta-link-ss2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, 
    rgba(255, 107, 53, 0.08) 0%, 
    rgba(29, 154, 146, 0.08) 100%
  );
  border: 2px solid rgba(255, 107, 53, 0.25);
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FF6B35;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.web-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;
}

.web-cta-link-ss2:hover::before {
  left: 100%;
}

.web-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);
}

.web-cta-link-ss2 i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.web-cta-link-ss2:hover i {
  transform: translateX(4px);
}

/* ============================================
   FLOATING DECORATIONS
   ============================================ */

.web-floating-elements-ss2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.web-float-orb-ss2 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(80px);
}

.web-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;
}

.web-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;
}

.web-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 (min-width: 320px) and (max-width: 767px) {
  .web-hero-title-ss2 {
    font-size: 1.625rem;
  }
  .web-hero-badge-ss2 {
    font-size: 0.75rem;
    padding: 7px 16px;
  }
  .web-service-item-ss2 {
    padding: 18px;
  }
  .web-service-name-ss2 {
    font-size: 1.0625rem;
  }
  .web-service-text-ss2 {
    font-size: 0.8125rem;
  }
  .web-feature-compact-list-ss2 li {
    font-size: 0.75rem;
  }
  .web-cta-link-ss2 {
    padding: 9px 18px;
    font-size: 0.8125rem;
    padding-left: 12px;
    padding-right: 12px;
  }
  .web-services-showcase-ss2 {
    padding: 40px 14px !important;
    margin-top: 18px !important;
  }
  .web-hero-subtitle-ss2 {
    font-size: 0.9375rem !important;
    margin-bottom: -16px !important;
  }
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 21px !important;
  }
  .service-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  .service-card .cta-button {
    margin: 10px auto 0 auto !important;
    width: fit-content !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .web-hero-title-ss2 {
    font-size: 2.25rem;
  }
  .web-services-grid-ss2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .web-services-hero-header-ss2 {
    margin-bottom: 35px ;
    margin-top: -30px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    margin-bottom: -30px !important;
  }
  .web-services-showcase-ss2 {
    min-height: auto !important;
    max-height: none !important;
    padding: 60px 23px !important;
    margin-top: 6px !important;
    margin-bottom: 0px !important;
  }
  .web-services-wrapper-ss2 {
    margin-top: -32px !important;
    margin-bottom: -22px !important;
  }
  .web-service-item-ss2 {
    padding: 22px 18px;
  }
  .web-service-name-ss2 {
    font-size: 1.125rem;
  }
  .web-icon-container-ss2 {
    width: 52px;
    height: 52px;
    font-size: 1.375rem;
  }
}

@media only screen 
      and (min-device-width: 1024px) 
      and (max-device-width: 1366px) 
      and (-webkit-min-device-pixel-ratio: 1.5) {
        .services-grid {
          grid-template-columns: repeat(2, 1fr) !important;
        }
        .web-services-wrapper-ss2 {
          margin-top: -19px !important;
          margin-bottom: -24px !important;
          max-width: 983px;
        }
      }

  /* ✅ 1250px Compact Desktop */
  @media only screen 
    and (min-width: 1200px) 
    and (max-width: 1280px){
      .services-grid {
        grid-template-columns: repeat(4, 1fr) !important;
      }
    }
/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

@media (prefers-reduced-motion: no-preference) {
  .web-service-item-ss2 {
    animation: service-ss2-fadeInUp 0.7s ease forwards;
    opacity: 1;              /* visible immediately */
    transform: translateY(0);
    min-height: 280px; 
  }
  
  .web-service-item-ss2:nth-child(1) { animation-delay: 0.1s; }
  .web-service-item-ss2:nth-child(2) { animation-delay: 0.2s; }
  .web-service-item-ss2:nth-child(3) { animation-delay: 0.3s; }
  .web-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;
  }
}

.web-service-item-ss2:focus-visible,
.web-cta-link-ss2:focus-visible {
  outline: 3px solid #FF6B35;
  outline-offset: 4px;
}