/* ============================================ */
/* SERVICES SHOWCASE - CLEAN UI WITH RED ACCENTS */
/* Image and text: exact 50% each               */
/* NO margins between service sections          */
/* Image overlay centered | Two-column lists    */
/* ============================================ */

.services-showcase {
  --bg-base: #f9fbfd;
  --text-primary: #0b2447;
  --primary-blue: #0b2447;
  --primary-dark: #0b2447;
  --text-secondary: #64748b;
  --accent-red: #dc2626;
  --accent-gradient-start: #ef4444;
  --accent-gradient-end: #b91c1c;
  --border-subtle: rgba(100, 116, 139, 0.12);

  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-base);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  overflow-y: hidden;
}

.services-showcase .services-container {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ============================================ */
/* UNIVERSAL HEADER STYLING - WORKS FOR ALL SECTIONS */
/* ============================================ */

.services-showcase .section-header-premium {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.services-showcase .section-header-premium h2 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary, #0f172a);
  margin: 0;
}

.services-showcase .gradient-text {
  background: linear-gradient(135deg, var(--accent-red, #dc2626), var(--accent-gradient-end, #b91c1c));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ----- SERVICE SECTIONS - MATCHES ELEVATE SECTION HEIGHT (550px) ----- */
.services-showcase .service-section {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  width: 100%;
  min-height: 550px;
}

/* Remove all margins between sections */
.services-showcase .service-section:not(:last-child) {
  margin-bottom: 0;
}

/* Alternating layout: odd → image left, even → image right */
.services-showcase .service-section:nth-child(odd) .service-visual {
  order: 1;
}
.services-showcase .service-section:nth-child(odd) .service-content {
  order: 2;
}
.services-showcase .service-section:nth-child(even) .service-visual {
  order: 2;
}
.services-showcase .service-section:nth-child(even) .service-content {
  order: 1;
}

/* ----- IMAGE SIDE - EXACT 50% WIDTH, MATCHES ELEVATE HEIGHT ----- */
.services-showcase .service-visual {
  flex: 1;
  width: 50%;
  position: relative;
  min-height: 550px;
  overflow: hidden;
}

.services-showcase .service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.services-showcase .service-section:hover .service-image {
  transform: scale(1.02);
}

/* Dark gradient overlay for text readability */
.services-showcase .service-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Overlay container - centers heading perfectly */
.services-showcase .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

/* ----- CONTENT SIDE - EXACT 50% WIDTH, MATCHES ELEVATE HEIGHT ----- */
.services-showcase .service-content {
  flex: 1;
  width: 50%;
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  gap: 1.2rem;
  overflow-y: auto;
}

.services-showcase .service-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Centered overlay heading */
.services-showcase .overlay-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  margin: 0;
  padding: 20px;
  max-width: 90%;
}

/* ============================================ */
/* SERVICE CONTENT STYLES - CLEAN UI            */
/* ============================================ */

.service-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.service-intro {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 1rem;
}

/* Feature Grid - Clean cards with red accent */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: none;
}

.feature-item:hover {
  transform: translateY(-2px);
  background: #f1f5f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.feature-item i {
  color: var(--accent-red);
  font-size: 18px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Service Highlight - Clean red accent without border */
.service-highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: #fef2f2;
  border-radius: 12px;
  border: none;
}

.service-highlight i {
  font-size: 20px;
  color: var(--accent-red);
  margin-top: 2px;
  flex-shrink: 0;
}

.service-highlight p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin: 0;
}


/* ============================================ */
/* WHY MANAGED IT SECTION - CARDS & COMPARISON  */
/* ============================================ */

/* =========================
   WHY MANAGED IT - REDESIGNED (NEPAL CONTEXT PREMIUM)
========================= */

#why-managed-it {
  padding: 90px 0 70px;
  background: linear-gradient(180deg, var(--bg-base) 0%, #f8fafc 100%);
}

/* Container */
#why-managed-it .services-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

/* =========================
   WHY GRID - MODERN CARD WALL
========================= */

#why-managed-it .why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-bottom: 75px;
}

/* Card */
#why-managed-it .why-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 18px;
  text-align: center;

  border: 1px solid rgba(11, 36, 71, 0.06);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);

  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 210px;
}

/* Hover */
#why-managed-it .why-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-red);
  box-shadow: 0 18px 40px rgba(215, 19, 19, 0.18);
}

/* Icon */
#why-managed-it .why-card i {
  font-size: 2.6rem;
  color: var(--primary-blue);
  margin-bottom: 14px;
  transition: 0.3s ease;
}

#why-managed-it .why-card:hover i {
  color: var(--accent-red);
  transform: scale(1.05);
}

/* Title */
#why-managed-it .why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

/* Text */
#why-managed-it .why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* =========================
   COMPARISON BLOCK - STORY STYLE
========================= */


/* ============================================ */
/* WHO NEEDS MANAGED IT SECTION (#managed-it-who) */
/* ============================================ */

#managed-it-who {
  padding: 80px 0 0 0;
  background-color: var(--bg-base);
  position: relative;
}

/* Ensure content is above shapes */
.services-container {
  position: relative;
  z-index: 1;
}

/* ============================================ */
/* BUSINESS SOLUTION CARDS - ALWAYS IN LINE    */
/* All cards stay in a single row/horizontally */
/* ============================================ */

.services-showcase .business-solutions,
.services-showcase .business-process,
.services-showcase .business-industries {
  margin-top: 0;
  padding: 80px 40px;
  border-top: none;
  background-color: var(--bg-base);
}

.services-showcase .solutions-premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

.services-showcase .solution-premium-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.04);

  /* IMPORTANT */
  width: 100%;
  max-width: none;
}

.services-showcase .solution-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px -12px rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.2);
}

.services-showcase .solution-premium-card .card-icon {
  font-size: 2.3rem;
  color: var(--accent-red);
  margin-bottom: 1rem;
}

.services-showcase .solution-premium-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.services-showcase .solution-premium-card p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.88rem;
  margin: 0;
}

/* ----- header premium ----- */
.section-header-premium {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-premium h2 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0b1a33;
}

.gradient-text {
    background: linear-gradient(145deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================ */
/* INFINITE INDUSTRY SCROLL - TWO ROWS         */
/* Top row: left to right                       */
/* Bottom row: right to left                    */
/* Pause on hover                               */
/* ============================================ */

.industries-section-wrapper {
    overflow: hidden;
    padding: 2rem 0 2.5rem 0;
    position: relative;
    width: 100%;
}

/* Each row container */
.industries-row {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    position: relative;
    width: 100%;
    padding: 1.5rem 0;
}

/* Top row - left to right */
.industries-row-top {
    margin-bottom: 1.5rem;
}

.industries-row-top .industries-track {
    animation: scrollLeft 30s linear infinite;
}

/* Bottom row - right to left */
.industries-row-bottom .industries-track {
    animation: scrollRight 30s linear infinite;
}

/* Track - contains the items */
.industries-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 2.8rem;
    width: max-content;
    will-change: transform;
}

/* Pause on hover - both rows pause */
.industries-row:hover .industries-track {
    animation-play-state: paused;
}

/* Individual industry card */
.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 2.8rem 3.2rem;
    min-width: 200px;
    border-radius: 48px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.02);
    border: 2px solid rgba(37, 99, 235, 0.20);
    transition: border-color 0.2s ease, transform 0.25s ease, box-shadow 0.3s ease;
    text-align: center;
    backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}

.industry-item i {
    font-size: 4.8rem;
    margin-bottom: 0.8rem;
    color: #0b1a33;
    transition: transform 0.2s, color 0.2s;
}

.industry-item span {
    font-weight: 600;
    font-size: 1.3rem;
    color: #0b1f3b;
    letter-spacing: -0.01em;
    line-height: 1.3;
    white-space: nowrap;
}

.industry-item:hover {
    border-color: #2563eb;
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
    background: #ffffff;
}

.industry-item:hover i {
    transform: scale(1.08);
    color: #1e3a8a;
}

/* Animation keyframes */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ============================================ */
/* RESPONSIVE - INDUSTRIES                     */
/* ============================================ */

@media (max-width: 1024px) {
    .industries-section-wrapper {
        padding: 1.5rem 0 2rem 0;
    }
    
    .industries-row {
        padding: 1rem 0;
    }
    
    .industry-item {
        padding: 2.2rem 2.5rem;
        min-width: 180px;
        border-radius: 40px;
    }
    
    .industry-item i {
        font-size: 4rem;
    }
    
    .industry-item span {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .industries-section-wrapper {
        padding: 1rem 0 1.5rem 0;
    }
    
    .industries-row {
        padding: 0.8rem 0;
    }
    
    .industries-row-top {
        margin-bottom: 0.8rem;
    }
    
    .industry-item {
        min-width: 160px;
        padding: 2rem 1.8rem;
        border-radius: 36px;
    }
    
    .industry-item i {
        font-size: 3.6rem;
    }
    
    .industry-item span {
        font-size: 1.1rem;
    }
    
    .industries-track {
        gap: 1.8rem;
    }
}

@media (max-width: 600px) {
    .industries-section-wrapper {
        padding: 0.8rem 0 1.2rem 0;
    }
    
    .industries-row {
        padding: 0.6rem 0;
    }
    
    .industries-row-top {
        margin-bottom: 0.6rem;
    }
    
    .industry-item {
        min-width: 140px;
        padding: 1.8rem 1.5rem;
        border-radius: 32px;
    }
    
    .industry-item i {
        font-size: 3.2rem;
        margin-bottom: 0.6rem;
    }
    
    .industry-item span {
        font-size: 1rem;
    }
    
    .industries-track {
        gap: 1.4rem;
    }
}

@media (max-width: 480px) {
    .industries-section-wrapper {
        padding: 0.5rem 0 1rem 0;
    }
    
    .industries-row {
        padding: 0.5rem 0;
    }
    
    .industry-item {
        min-width: 130px;
        padding: 1.5rem 1.2rem;
        border-radius: 28px;
    }
    
    .industry-item i {
        font-size: 2.8rem;
    }
    
    .industry-item span {
        font-size: 0.9rem;
        white-space: normal;
    }
    
    .industries-track {
        gap: 1.2rem;
    }
}

@media (max-width: 380px) {
    .industry-item {
        min-width: 110px;
        padding: 1.2rem 1rem;
        border-radius: 24px;
    }
    
    .industry-item i {
        font-size: 2.4rem;
    }
    
    .industry-item span {
        font-size: 0.8rem;
    }
    
    .industries-track {
        gap: 1rem;
    }
}

/* ============================================ */
/* PROCESS TIMELINE                            */
/* ============================================ */

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  font-family: "Inter", sans-serif;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 3.5rem;
  width: 2px;
  height: calc(100% + 1rem);
  background: linear-gradient(to bottom, var(--primary-dark, #3b82f6), color-mix(in srgb, var(--primary-dark, #3b82f6) 60%, white));
  opacity: 0.4;
}

.timeline-marker {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--primary-dark, #2563eb), color-mix(in srgb, var(--primary-dark, #2563eb) 70%, black));
  color: white;
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 20px -5px color-mix(in srgb, var(--primary-dark, #3b82f6) 50%, transparent);
  position: relative;
  z-index: 2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.05);
  box-shadow: 0 15px 25px -8px color-mix(in srgb, var(--primary-dark, #3b82f6) 60%, transparent);
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  border: 1px solid #e2e8f0;
}

.timeline-item:hover .timeline-content {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}

.timeline-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
}

.timeline-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #475569;
}

/* ============================================ */
/* RESPONSIVE DESIGN - SERVICES SHOWCASE       */
/* ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .services-showcase .service-visual,
  .services-showcase .service-content {
    min-height: auto;
  }

  .services-showcase .service-visual {
    min-height: 360px;
  }

  .services-showcase .overlay-title {
    font-size: 2rem;
  }

  .services-showcase .service-content {
    padding: 48px 40px;
  }

  .services-showcase .service-description {
    font-size: 0.95rem;
  }

  .service-heading {
    font-size: 1.75rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .feature-item {
    padding: 10px 14px;
  }

  .feature-item i {
    font-size: 16px;
    width: 20px;
  }

  .feature-item span {
    font-size: 0.9rem;
  }

  #why-managed-it .why-card {
    min-height: 180px;
    padding: 24px 16px;
  }

  #why-managed-it .why-card i {
    font-size: 2.2rem;
  }
  
  .services-showcase .solution-premium-card {
    flex: 1 1 240px;
    min-width: 220px;
  }

  .services-showcase .solutions-premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .services-showcase .service-section {
    flex-direction: column !important;
    min-height: auto;
  }

  .services-showcase .service-visual,
  .services-showcase .service-content {
    width: 100% !important;
    order: unset !important;
  }

  .services-showcase .service-visual {
    min-height: 304px;
  }

  .services-showcase .service-content {
    padding: 48px 32px;
  }

  .services-showcase .overlay-title {
    font-size: 1.8rem;
  }

  .services-showcase .section-header-premium h2 {
    font-size: 2rem;
  }

  .services-showcase .business-solutions,
  .services-showcase .business-process,
  .services-showcase .business-industries {
    padding: 60px 24px;
  }

  .services-showcase .solutions-premium-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .services-showcase .service-visual {
    min-height: 256px;
  }

  .services-showcase .overlay-title {
    font-size: 1.5rem;
  }

  .services-showcase .service-content {
    padding: 36px 28px;
    gap: 1rem;
  }

  .services-showcase .service-description {
    font-size: 0.95rem;
  }

  .services-showcase .section-header-premium {
    margin-bottom: 40px;
  }

  .services-showcase .section-header-premium h2 {
    font-size: 1.8rem;
  }

  .service-heading {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .service-intro {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 18px;
  }

  .feature-item {
    padding: 8px 12px;
    gap: 10px;
    border-radius: 8px;
  }

  .feature-item i {
    font-size: 14px;
    width: 18px;
  }

  .feature-item span {
    font-size: 0.82rem;
    font-weight: 500;
  }

  .service-highlight {
    padding: 14px 16px;
    gap: 12px;
  }

  .service-highlight i {
    font-size: 18px;
  }

  .service-highlight p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  #why-managed-it .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
  }

  #why-managed-it .why-card {
    min-height: 170px;
    padding: 20px 16px;
  }

  #why-managed-it .why-card i {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  #why-managed-it .why-card h3 {
    font-size: 1.05rem;
  }

  #why-managed-it .why-card p {
    font-size: 0.8rem;
  }

  #managed-it-who {
    padding: 60px 0 0 0;
  }

  .services-showcase .business-solutions,
  .services-showcase .business-process,
  .services-showcase .business-industries {
    padding: 50px 20px;
  }

  .services-showcase .solution-premium-card {
    flex: 1 1 260px;
    min-width: 240px;
    max-width: 320px;
    padding: 20px 16px;
  }

  .services-showcase .solution-premium-card h3 {
    font-size: 1.1rem;
  }

  .section-header-premium h2 {
    font-size: 2.2rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .services-showcase .service-visual {
    min-height: 208px;
  }

  .services-showcase .overlay-title {
    font-size: 1.3rem;
    padding: 15px;
  }

  .services-showcase .service-content {
    padding: 28px 20px;
  }

  .services-showcase .service-description {
    font-size: 0.9rem;
  }

  .services-showcase .business-solutions,
  .services-showcase .business-process,
  .services-showcase .business-industries {
    padding: 40px 16px;
  }

  .services-showcase .section-header-premium {
    margin-bottom: 30px;
  }

  .services-showcase .section-header-premium h2 {
    font-size: 1.5rem;
  }

  .services-showcase .solution-premium-card {
    padding: 18px 14px;
  }

  .services-showcase .solution-premium-card .card-icon {
    font-size: 1.8rem;
  }

  .services-showcase .solution-premium-card h3 {
    font-size: 1rem;
  }

  .services-showcase .solution-premium-card p {
    font-size: 0.8rem;
  }

  .service-heading {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .service-intro {
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 16px;
  }

  .feature-item {
    padding: 6px 10px;
    gap: 8px;
    border-radius: 6px;
  }

  .feature-item i {
    font-size: 13px;
    width: 16px;
  }

  .feature-item span {
    font-size: 0.75rem;
    font-weight: 500;
  }

  .service-highlight {
    padding: 12px 14px;
    gap: 10px;
    border-radius: 8px;
  }

  .service-highlight i {
    font-size: 16px;
  }

  .service-highlight p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  #why-managed-it .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  #why-managed-it .why-card {
    min-height: auto;
    padding: 20px 16px;
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
    gap: 16px;
  }

  #why-managed-it .why-card i {
    font-size: 1.8rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  #why-managed-it .why-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  #why-managed-it .why-card p {
    font-size: 0.8rem;
  }

  .services-showcase .solutions-premium-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .services-showcase .solution-premium-card {
    flex: 1 1 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  #managed-it-who {
    padding: 40px 0 0 0;
  }
}

/* Extra Small */
@media (max-width: 380px) {
  .services-showcase .service-visual {
    min-height: 176px;
  }

  .services-showcase .overlay-title {
    font-size: 1.1rem;
    padding: 10px;
  }

  .services-showcase .service-content {
    padding: 24px 16px;
  }

  .services-showcase .section-header-premium h2 {
    font-size: 1.3rem;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .feature-item {
    padding: 4px 8px;
    gap: 6px;
  }

  .feature-item i {
    font-size: 11px;
    width: 14px;
  }

  .feature-item span {
    font-size: 0.7rem;
  }

  .service-heading {
    font-size: 1.15rem;
  }

  .service-highlight p {
    font-size: 0.8rem;
  }
}

/* Touch Friendly */
@media (hover: none) and (max-width: 768px) {
  .feature-item {
    min-height: 44px;
    padding: 10px 14px;
  }

  .feature-item:active {
    transform: scale(0.97);
    background: #f1f5f9;
  }
}

/* Landscape Phone */
@media (max-width: 768px) and (orientation: landscape) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .feature-item {
    padding: 8px 12px;
  }

  .service-heading {
    font-size: 1.4rem;
  }
}

/* Timeline Responsive */
@media (max-width: 640px) {
  .services-showcase .solutions-premium-grid {
    grid-template-columns: 1fr;
  }
  
  .process-timeline {
    padding: 1rem;
    gap: 1.5rem;
  }
  
  .timeline-item {
    gap: 1rem;
  }
  
  .timeline-marker {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
  }
  
  .timeline-item:not(:last-child)::before {
    left: 1.5rem;
    top: 3rem;
  }
  
  .timeline-content {
    padding: 1rem;
  }
  
  .timeline-content h3 {
    font-size: 1.1rem;
  }
  
  .timeline-content p {
    font-size: 0.85rem;
  }
}