/* ==========================================================================
   JLS Technologies — Premium Design System (Corporate Tech Blue Theme)
   Full-height hero, curved container, glassmorphism, fluid clamp() layout
   ========================================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   Design Tokens / CSS Variables
   ========================================================================== */
:root {
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', var(--font-sans);

  /* Corporate Tech Blue Palette (#0052CC to #0077FF) */
  --blue-600:    #0052CC; /* Primary Deep Blue */
  --blue-500:    #0066FF; /* Accent Blue */
  --blue-400:    #0077FF; /* Light Glow Blue */
  --blue-200:    #CCE0FF;
  --blue-50:     #F0F7FF;
  
  --dark-900:    #0F172A;
  --dark-700:    #1E293B;
  --dark-500:    #334155;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --white:       #FFFFFF;

  /* Semantic Map */
  --bg:          var(--white);
  --fg:          var(--dark-900);
  --card:        var(--white);
  --muted:       var(--gray-400);
  --border:      var(--gray-200);
  --input-bg:    var(--gray-100);

  /* Brand gradients */
  --grad-main:   linear-gradient(135deg, var(--blue-600) 0%, #8b5cf6 100%);
  --grad-hero:   linear-gradient(160deg, #EFF6FF 0%, #E6F0FF 50%, #F0F7FF 100%);
  --grad-fade-l: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0) 100%);

  /* Shadows */
  --shadow-xs:   0 1px 3px rgba(0,0,0,.06);
  --shadow-sm:   0 4px 12px rgba(0,0,0,.08);
  --shadow-md:   0 8px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.12);
  --shadow-glow: 0 20px 60px rgba(0, 82, 204, 0.25);
  --shadow-glass:0 8px 32px rgba(0, 82, 204, 0.12);

  /* Transitions */
  --ease:        all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   Base Reset
   ========================================================================== */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body { overflow-x: hidden; line-height: 1.6; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); color: var(--dark-900); }
a { text-decoration: none; color: inherit; transition: var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ==========================================================================
   Layout Utilities
   ========================================================================== */
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

/* ==========================================================================
   HEADER — Three-column grid: [Logo] | [Nav] | [CTA]
   Full-width premium glassmorphism floating bar
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
  transition: none;
}

/* Solid on scroll cleared */
.site-header.scrolled {
  background: transparent;
  box-shadow: none;
  border-bottom: none;
}

/* Perfectly balanced horizontal flex row — Logo LEFT | Nav CENTER | CTA RIGHT */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

/* ── LOGO ── */
.brand-block {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  height: 72px;
  max-height: 72px;
  width: auto;
  max-width: 260px;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
  clip-path: none;
}
.brand-logo:hover {
  transform: scale(1.02);
}

/* ── NAV LINKS — Centered floating glassmorphic pill ── */
.nav-links {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.6vw, 1.25rem);
  white-space: nowrap;
  justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 82, 204, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  transition: var(--ease);
}

.nav-links:hover {
  border-color: rgba(0, 82, 204, 0.2);
  box-shadow: 0 6px 24px rgba(0, 82, 204, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-700);
  display: flex;
  align-items: center;
  gap: 3px;
  position: relative;
  padding: 4px 8px;
  border-radius: 9999px;
  letter-spacing: 0.01em;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-link:hover {
  background: linear-gradient(135deg, var(--blue-600) 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.nav-link:hover svg {
  stroke: #8b5cf6;
}
/* Active style with refined bullet dot */
.nav-link.active {
  background: linear-gradient(135deg, var(--blue-600) 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: #8b5cf6;
  border-radius: 50%;
  box-shadow: 0 0 8px #8b5cf6;
}

/* ── CTA — pinned to the far right of the flex row ── */
.header-cta {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Specific header CTA styling ── smaller, tighter */
.btn-header-cta {
  font-size: 0.81rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
}

/* ── BURGER toggle — hidden on desktop ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px; height: 26px;
  background: transparent;
  z-index: 1001;
  grid-column: 3;
  justify-self: flex-end;
}
.burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--dark-900);
  border-radius: 2px;
  transition: var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Legacy class for any lingering references */
.nav-pill {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.2vw, 2rem);
  flex: 1;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  white-space: nowrap;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 85vw);
  height: 100svh;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: 5.5rem 2rem 2rem;
  box-shadow: -12px 0 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-drawer.open { right: 0; }
.mobile-drawer .nav-link {
  font-size: 1.1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  width: 100%;
  border-radius: 0;
}
.mobile-drawer .nav-link.active::after {
  display: none;
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.8rem, 1.4vw, 0.9rem);
  font-weight: 600;
  padding: 0.7rem clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: 9999px;
  transition: var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}
.btn-primary {
  background: var(--grad-main);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(0, 82, 204, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(0, 82, 204, 0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: var(--card);
  border: 1.5px solid var(--border);
  color: var(--dark-900);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-xs);
}
.btn-outline:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 64px; /* matches 64px header height */
  background: #EFF6FF;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* Beautiful custom overlay to softly fade the server image edge and add a tech glow */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Soft white/light-blue fade to perfectly blend text and image sides */
    linear-gradient(
      to right,
      #EFF6FF 30%,
      rgba(239, 246, 255, 0.95) 38%,
      rgba(239, 246, 255, 0.85) 45%,
      rgba(239, 246, 255, 0.4) 55%,
      rgba(239, 246, 255, 0) 70%
    ),
    /* Subtle tech-blue glow centered right on the transition zone */
    radial-gradient(
      circle at 45% 50%,
      rgba(0, 82, 204, 0.08) 0%,
      rgba(0, 119, 255, 0.03) 40%,
      transparent 70%
    );
  z-index: 2;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 100svh;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

/* ── LEFT TEXT COLUMN ── */
.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(6rem, 12vh, 9rem);
  padding-bottom: clamp(3rem, 8vh, 5rem);
  padding-left: 0;
  padding-right: clamp(1.5rem, 4vw, 3rem);
  position: relative;
  z-index: 10;
  background: transparent;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--blue-600);
  background: rgba(0, 82, 204, 0.07);
  border: 1px solid rgba(0, 82, 204, 0.18);
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  width: fit-content;
}

.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1;
  color: var(--dark-900);
  margin-bottom: 1.5rem;
  font-weight: 800;
  max-width: 24ch;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: keep-all;
}
.hero-headline .accent {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.hero-body {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: var(--dark-700);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (max-width: 480px) {
  .hero-actions {
    flex-wrap: wrap;
  }
}

/* ── RIGHT GRAPHIC COLUMN ── */
.hero-graphic-col {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: clamp(2.5rem, 7vw, 7rem);
  padding-top: clamp(6rem, 12vh, 9rem);
  padding-bottom: clamp(3rem, 8vh, 5rem);
  z-index: 10;
}

/* ── Full-Bleed Datacenter Corridor Background ── */
.hero-datacenter-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 1;
  pointer-events: none;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.15) 45%,
    rgba(0, 0, 0, 0.7) 62%,
    rgba(0, 0, 0, 1) 78%,
    rgba(0, 0, 0, 1) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.15) 45%,
    rgba(0, 0, 0, 0.7) 62%,
    rgba(0, 0, 0, 1) 78%,
    rgba(0, 0, 0, 1) 100%
  );
}

/* 3D Composition overlays */
.hero-composition-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.layer-blue-light {
  position: absolute;
  top: -8%; right: -8%;
  width: 65%; height: 115%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

/* Highly premium cinematic blur overlay right over the image transition seam */
.layer-blur-blend {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32%;
  width: 25%;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Cloud removed from center aisle — hide it entirely */
.layer-cloud { display: none; }

/* ── Glassmorphism Features Card — floats elegantly on the left side of the graphic column ── */
.glass-features-card {
  width: clamp(230px, 22vw, 270px);
  z-index: 10;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(28px) saturate(220%);
  -webkit-backdrop-filter: blur(28px) saturate(220%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  box-shadow:
    0 20px 50px rgba(0, 82, 204, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: translateY(-20px);
  animation: glass-float 6s ease-in-out infinite alternate;
  margin-right: clamp(150px, 16vw, 230px); /* Leaves space for shield on the right */
}

.glass-feature-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.glass-icon {
  width: 34px; height: 34px;
  border-radius: 0.5rem;
  background: rgba(0, 82, 204, 0.15);
  border: 1px solid rgba(0, 82, 204, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  flex-shrink: 0;
}

.glass-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark-900);
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(255,255,255,0.7);
}

/* ── Glassmorphism cluster: card + overlapping shield ── */
.hero-graphic-cluster {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 10;
}

.shield-graphic-wrap {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(240px, 28vw, 360px);
  z-index: 20;
  pointer-events: none;
}
.hero-shield-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 25px 50px rgba(0, 82, 204, 0.3))
    drop-shadow(0 0 70px rgba(0, 119, 255, 0.2));
  animation: shield-float 5s ease-in-out infinite;
}

/* ==========================================================================
   STAT BAR
   ========================================================================== */
.stat-bar {
  position: relative;
  z-index: 10;
  margin-top: -3rem;
  padding-bottom: clamp(2rem, 5vh, 3rem);
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: repeat(4,1fr);
  overflow: hidden;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.25rem,2.5vw,1.75rem) clamp(1rem,2vw,1.5rem);
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 25%;
  height: 50%; width: 1px;
  background: var(--border);
}
.stat-icon-wrap {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: rgba(0, 82, 204, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-600);
  flex-shrink: 0;
}
.stat-val {
  font-size: 1.2rem; font-weight: 800;
  color: var(--dark-900); line-height: 1.1;
}
.stat-lbl {
  font-size: 0.82rem; color: var(--dark-500);
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.section-wrap {
  padding-block: clamp(4.5rem, 9vw, 6.5rem); /* Premium section spacing rhythm */
}
.section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--blue-600);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.2;
  color: var(--dark-900);
  font-weight: 800;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 1.5rem;
  align-items: stretch; /* Stretch cards to match height of tallest sibling */
}
.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 0.3s ease, box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
}
.svc-card:hover {
  box-shadow: 
    0 20px 40px rgba(0, 82, 204, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.02);
  transform: translateY(-6px);
  border-color: var(--blue-500);
}
.svc-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.75rem;
  background: rgba(0, 82, 204, 0.06);
  border: 1px solid rgba(0, 82, 204, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  margin-bottom: 1.5rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, border-color 0.3s ease;
}
.svc-card:hover .svc-icon {
  transform: scale(1.1) rotate(2deg);
  background: rgba(0, 82, 204, 0.12);
  border-color: rgba(0, 82, 204, 0.25);
}
.svc-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark-900);
}
.svc-desc {
  font-size: 0.92rem;
  color: var(--dark-500); /* Boosted contrast */
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   INDUSTRIES
   ========================================================================== */
.industries-section {
  padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
}
.rounded-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-xs);
}
.industries-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.industry-item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 0.7rem; flex: 1; min-width: 90px;
}
.industry-icon {
  width: 3.75rem; height: 3.75rem;
  border-radius: 1rem;
  background: rgba(0, 82, 204, 0.05);
  border: 1px solid rgba(0, 82, 204, 0.10);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-600);
}
.industry-lbl {
  font-size: 0.72rem; font-weight: 600; color: var(--dark-900);
}
.col-divider {
  width: 1px; height: 2rem;
  background: var(--border);
  flex-shrink: 0;
}

/* ==========================================================================
   TECHNOLOGY PARTNERS BANNER
   ========================================================================== */
.partners-section {
  padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
}
.partners-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  width: 100%;
}
.partner-slot {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
}
.partner-slot:hover .partner-img { transform: scale(1.10); }

.partner-img {
  display: block;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Normalized partner heights */
.p-dell    { height: 2.0rem;  max-height: 2.0rem;  }
.p-hpe     { height: 2.4rem;  max-height: 2.4rem;  }
.p-ms      { height: 2.0rem;  max-height: 2.0rem;  }
.p-lenovo  { height: 2.4rem;  max-height: 2.4rem;  }
.p-tata    { height: 3.2rem;  max-height: 3.2rem;  }
.p-aws     { height: 2.2rem;  max-height: 2.2rem;  }
.p-cisco   { height: 2.4rem;  max-height: 2.4rem;  }

/* ==========================================================================
   ABOUT + CONTACT (Snug, compact margins & filled layout grids)
   ========================================================================== */
/* ==========================================================================
   ABOUT + CONTACT (Premium Glassmorphic horizontal full-width cards)
   ========================================================================== */
.about-contact {
  padding-bottom: clamp(3rem, 7vw, 4.5rem);
}

/* Premium Glassmorphic card styling — frosted, translucent, glowing blue-purple gradients with cyan-blue light reflections */
.about-full-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(239, 246, 255, 0.25) 30%,
    rgba(0, 242, 254, 0.05) 65%,
    rgba(79, 172, 254, 0.04) 85%,
    rgba(139, 92, 246, 0.04) 100%
  );
  backdrop-filter: blur(30px) saturate(220%);
  -webkit-backdrop-filter: blur(30px) saturate(220%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.5rem;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  box-shadow:
    0 20px 50px rgba(0, 82, 204, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 82, 204, 0.05);
}

.about-card-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.1fr;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
}

.about-card-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.75rem;
}

.about-card-left .section-tag {
  margin-bottom: 0.25rem;
}

.about-card-left .section-title {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--dark-900);
}

.about-paragraph {
  font-size: 0.95rem;
  color: var(--dark-500);
  line-height: 1.65;
  margin: 0;
  max-width: 480px;
}

/* Center column Vision & Mission */
.about-card-center {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vision-mission-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.vm-icon-circle {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #0077FF 0%, #0052CC 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(0, 119, 255, 0.35);
}

.vm-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.vm-item-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-900);
  margin: 0;
}

.vm-item-content p {
  font-size: 0.875rem;
  color: var(--dark-500);
  line-height: 1.5;
  margin: 0;
}

.vm-divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  width: 100%;
}

/* Right Column: 3D Graphic */
.about-card-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about-graphic-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  transform: scale(1.45);
  transform-origin: center center;
}

.about-mini-graphic {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-height: 360px; /* Increased to adjust perfectly in the about box */
  object-fit: contain;
  animation: float-slow 6s ease-in-out infinite;
  transition: transform 0.5s ease;
}

.about-mini-graphic:hover {
  transform: translateY(-6px) scale(1.03);
}

/* Full Width Connect Card container matches .rounded-card */
.connect-full-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(239, 246, 255, 0.25) 30%,
    rgba(0, 242, 254, 0.05) 65%,
    rgba(79, 172, 254, 0.04) 85%,
    rgba(139, 92, 246, 0.04) 100%
  );
  backdrop-filter: blur(30px) saturate(220%);
  -webkit-backdrop-filter: blur(30px) saturate(220%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.5rem;
  padding: clamp(1.25rem, 2.2vw, 1.75rem) clamp(1.5rem, 3.5vw, 2.5rem); /* Tightened top/bottom padding */
  box-shadow:
    0 20px 50px rgba(0, 82, 204, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 82, 204, 0.05);
}

.connect-card-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
}

.connect-card-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.75rem;
}

.connect-tag-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue-600);
}

.connect-tag-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
}

.connect-card-left .section-tag {
  margin: 0;
}

.connect-card-left .section-title {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--dark-900);
}

.connect-card-right {
  width: 100%;
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.65rem; margin-bottom: 0.5rem;
}
.form-group { margin-bottom: 0.5rem; }
.field {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.55); /* Glass transparent inputs */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--dark-900);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.03);
  transition: var(--ease);
}
.field:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15), inset 0 1px 2px rgba(0,0,0,0.03);
}
#btn-submit {
  background: linear-gradient(135deg, #0077FF 0%, #0052CC 100%) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 0 15px rgba(0, 119, 255, 0.45), 0 4px 18px rgba(0, 82, 204, 0.25) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
#btn-submit:hover {
  box-shadow: 0 0 25px rgba(0, 119, 255, 0.65), 0 6px 24px rgba(0, 82, 204, 0.45) !important;
  transform: translateY(-2px) scale(1.01);
}
textarea.field { resize: none; }
.field.err { border-color: #DC2626 !important; }
.field.err:focus, .field.err:focus-within {
  border-color: var(--blue-500) !important;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15), inset 0 1px 2px rgba(0,0,0,0.03) !important;
  background: rgba(255, 255, 255, 0.75) !important;
}
.form-err { font-size: 0.73rem; color: #DC2626; margin-top: 3px; }
.char-row {
  display: flex; justify-content: space-between;
  font-size: 0.73rem; color: var(--muted); margin-top: 4px;
}
.honeypot {
  position: absolute; left: -9999px;
  width: 0; height: 0; overflow: hidden;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: rgba(240, 247, 255, 0.6);
  border-top: 1px solid var(--border);
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
}

.footer-logo {
  height: 72px;
  max-height: 72px;
  width: auto;
  max-width: 260px;
  display: block;
  clip-path: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 2rem;
}
.footer-desc {
  font-size: 0.865rem;
  color: var(--dark-500); line-height: 1.7;
  margin-top: 1rem; max-width: 270px;
}
.social-row { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.social-btn {
  width: 2.15rem; height: 2.15rem;
  border-radius: 50%;
  background: rgba(0, 82, 204, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-600);
  transition: var(--ease);
}
.social-btn:hover {
  background: var(--blue-600); color: #fff;
  transform: translateY(-2px);
}
.footer-col h5 {
  font-size: 0.95rem; margin-bottom: 1rem; color: var(--dark-900);
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; color: var(--dark-500); }
.footer-links a { font-size: 0.855rem; color: var(--dark-500); }
.footer-links a:hover { color: var(--blue-600); padding-left: 4px; }
.contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-row {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.855rem; color: var(--dark-500);
}
.c-icon { color: var(--blue-600); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  font-size: 0.78rem; color: var(--dark-500);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: var(--dark-500); }
.footer-legal a:hover { color: var(--blue-600); }

/* ==========================================================================
   SUCCESS MODAL
   ========================================================================== */
.modal-bg {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.50);
  backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal-bg.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  width: 100%; max-width: 480px;
  padding: 2rem; position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform .35s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-bg.open .modal-box { transform: scale(1); }
.modal-close-btn {
  position: absolute; top: 1rem; right: 1rem;
  background: transparent; border: none;
  color: var(--muted); cursor: pointer;
}
.modal-close-btn:hover { color: var(--dark-900); }
.modal-icon-wrap {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(0, 82, 204, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-600); margin-bottom: 0.75rem;
}
.modal-meta { display: flex; flex-direction: column; gap: 1rem; margin: 1.25rem 0; }
.meta-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 3px; }
.meta-val { font-size: 0.875rem; font-weight: 500; color: var(--dark-900); }
.meta-msg {
  padding: 0.75rem; border-radius: 0.5rem;
  background: rgba(0, 82, 204, 0.04);
  border: 1px solid var(--border);
  white-space: pre-wrap; word-break: break-word;
}

/* ==========================================================================
   VISION & MISSION — 3D FLIP CARDS (horizontal front face)
   ========================================================================== */
.vm-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  margin-top: 0;
  perspective: 1200px;
}
.vm-card {
  position: relative;
  height: 120px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}
.vm-card:hover {
  transform: rotateY(180deg);
}

/* ── FRONT: horizontal icon + label ── */
.vm-front, .vm-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 1rem;
  display: flex;
  align-items: center;
}
.vm-front {
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem 0.875rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 82, 204, 0.13);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 16px rgba(0, 82, 204, 0.06), inset 0 1px 0 rgba(255,255,255,0.6);
  z-index: 2;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.vm-card:hover .vm-front {
  border-color: rgba(0, 82, 204, 0.25);
  box-shadow: 0 8px 24px rgba(0, 82, 204, 0.1);
}
.vm-icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.09) 0%, rgba(139, 92, 246, 0.09) 100%);
  border: 1px solid rgba(0, 82, 204, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vm-card:hover .vm-icon-wrap {
  transform: scale(1.12) rotate(8deg);
}
.vm-front-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  min-width: 0;
  text-align: center;
}
.vm-front-text h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark-900);
  letter-spacing: 0.01em;
  margin: 0;
  white-space: nowrap;
}
.vm-front-text span {
  font-size: 0.68rem;
  color: var(--blue-600);
  font-weight: 500;
  opacity: 0.75;
}

/* ── BACK: gradient with text ── */
.vm-back {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0.875rem 0.875rem;
  background: linear-gradient(135deg, var(--blue-600) 0%, #8b5cf6 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 28px rgba(0, 82, 204, 0.25);
  transform: rotateY(180deg);
  overflow: hidden;
}
.vm-back p {
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

@media (max-width: 640px) {
  .vm-container {
    grid-template-columns: 1fr;
  }
  .vm-card {
    height: 110px;
  }
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes shield-float {
  0%   { transform: translateY(0px)   rotate(0deg)   scale(1);    }
  50%  { transform: translateY(-12px) rotate(1.5deg) scale(1.02); }
  100% { transform: translateY(0px)   rotate(0deg)   scale(1);    }
}
@keyframes glass-float {
  0%   { transform: translateY(-15px); }
  100% { transform: translateY(-25px); }
}
@keyframes float-slow {
  0%   { transform: translateY(0px) rotate(0deg); }
  50%  { transform: translateY(-8px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
@keyframes glow-pulse {
  0%   { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1.2; }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Dynamic stacking & mobile scaling)
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-inner  { grid-template-columns: 1fr 1fr; }
  .glass-features-card {
    margin-right: clamp(40px, 8vw, 120px);
  }
}

@media (max-width: 1023px) {
  /* Soft vertical stack fade overlay for mobile */
  .hero::before {
    background: 
      linear-gradient(
        to bottom,
        #EFF6FF 0%,
        rgba(239, 246, 255, 0.95) 15%,
        rgba(239, 246, 255, 0.85) 25%,
        rgba(239, 246, 255, 0.4) 40%,
        rgba(239, 246, 255, 0) 60%
      );
  }

  /* Hide desktop nav & CTA, show burger */
  .nav-links   { display: none; }
  .nav-pill    { display: none; }
  .burger      { display: flex; }
  .header-cta  { display: none; }

  .hero-inner  { grid-template-columns: 1fr; }
  .hero-text-col {
    text-align: center;
    align-items: center;
    padding-top: clamp(5.5rem, 11vh, 8rem);
    padding-bottom: 2rem;
    background: rgba(239, 246, 255, 0.75); /* Soft premium transparency on mobile */
    backdrop-filter: blur(12px); /* Blurs background corridor for excellent text contrast */
    -webkit-backdrop-filter: blur(12px);
  }
  .hero-eyebrow { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-body { margin-inline: auto; }

  .hero-graphic-col {
    min-height: 440px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
    gap: 1.5rem;
  }
  /* Server corridor scales proportionally on mobile */
  .hero-datacenter-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 15%, rgba(0,0,0,1) 60%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 15%, rgba(0,0,0,1) 60%);
  }
  /* Vertical transition blur for mobile screen layouts */
  .layer-blur-blend {
    left: 0;
    width: 100%;
    top: 20%;
    height: 30%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0) 100%
    );
  }
  .glass-features-card {
    margin-right: 0;
    transform: none;
    animation: none;
    width: 100%;
    max-width: 280px;
  }
  .shield-graphic-wrap {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1rem;
    width: clamp(180px, 30vw, 250px);
    z-index: 20;
    pointer-events: none;
  }

  .two-col      { grid-template-columns: 1fr; }
  .stat-card    { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .info-split   { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }

  /* Mobile stack overrides for new About and Let's Connect cards */
  .about-card-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .about-card-center {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: 0;
    padding-top: 1.5rem;
  }
  .about-card-right {
    margin-top: 0.5rem;
  }
  .connect-card-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 767px) {
  .partners-flex { flex-wrap: wrap; justify-content: center; gap: 1.25rem; }
  .partner-slot { width: 30%; height: 2.5rem; flex: unset; }
  .col-divider  { display: none; }
  .industries-flex { justify-content: center; }
  .industry-item { flex: unset; width: 28%; }
  .footer-grid  { grid-template-columns: 1fr; }
  .stat-card    { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 479px) {
  .hero-headline { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .header-inner { padding-inline: 1rem; }
}

/* ==========================================================================
   COMPANY OVERVIEW / WHO WE ARE
   ========================================================================== */
.company-overview-section {
  background: var(--background);
  position: relative;
  overflow: hidden;
  padding-top: 1rem;
}

.company-overview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.company-overview-left {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.company-overview-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 82, 204, 0.08));
  transition: transform 0.5s ease;
}

.company-overview-img:hover {
  transform: translateY(-5px);
}

.company-overview-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.company-overview-right .section-title {
  margin-bottom: 1.5rem;
  max-width: 20ch;
}

.company-desc-intro {
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--dark-900);
  margin-bottom: 1.25rem;
}

.company-desc-mission {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--dark-500);
  margin-bottom: 2rem;
}

.company-cta-btn {
  border-radius: 0.75rem;
  padding: 0.85rem 2rem;
}

@media (max-width: 1023px) {
  .company-overview-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .company-overview-right {
    align-items: center;
  }
  .company-overview-right .section-title {
    max-width: 100%;
  }
}

/* ==========================================================================
   REDESIGNED ABOUT US SECTION
   ========================================================================== */
.about-card-inner-new {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  width: 100%;
}

.about-top-row {
  display: grid;
  grid-template-columns: 4.2fr 5.8fr;
  width: 100%;
  align-items: start;
}

.about-new-left {
  padding: 1.75rem 2rem 1.5rem 2.5rem;
  border-right: 1px solid #F1F5F9;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.section-tag-new {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0052CC;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title-new {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  line-height: 1.25;
  color: #0F172A;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.about-paragraph-new {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

.about-new-right {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.25rem 1.5rem 2rem;
  gap: 0;
  align-items: stretch;
}

.about-new-right-top {
  display: grid;
  grid-template-columns: 5.5fr 4.5fr;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.about-new-right-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
  border-top: 1px solid #F1F5F9;
  padding-top: 0.4rem;
  margin-top: -2.4rem;
  width: 100%;
}

.feature-item-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.35rem 0.3rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 82, 204, 0.13);
  border-radius: 0.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 6px rgba(0, 82, 204, 0.05), inset 0 1px 0 rgba(255,255,255,0.6);
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}

.feature-item-inline:hover {
  border-color: rgba(0, 82, 204, 0.28);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.1);
  transform: translateY(-2px);
}

.feature-item-inline .feature-icon-new {
  width: 1.3rem;
  height: 1.3rem;
  min-width: 1.3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.09) 0%, rgba(139, 92, 246, 0.09) 100%);
  border: 1px solid rgba(0, 82, 204, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0.18rem;
}

.feature-item-inline:hover .feature-icon-new {
  transform: scale(1.12) rotate(8deg);
}

.feature-item-inline h4 {
  font-size: 0.6rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  line-height: 1.15;
}

.about-new-vm {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transform: translateY(-1rem);
}

.vm-item-new {
  display: flex;
  gap: 1rem;
}

.vm-icon-new {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0052CC;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 82, 204, 0.25);
}

.vm-content-new h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 0.25rem 0;
}

.vm-content-new p {
  font-size: 0.95rem;
  line-height: 1.45;
  color: #475569;
  margin: 0;
}

.about-new-graphic-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-graphic-container-new {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about-mini-graphic-new {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 82, 204, 0.1));
  transform: scale(1.8);
  transition: transform 0.4s ease;
}

.about-mini-graphic-new:hover {
  transform: scale(1.05) translateY(-5px);
}



.feature-icon-new {
  color: #0052CC;
  flex-shrink: 0;
}

.feature-text-new h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
}

/* Responsive Overrides */
@media (max-width: 1023px) {
  .about-top-row {
    grid-template-columns: 1fr;
  }
  .about-new-left {
    border-right: none;
    border-bottom: 1px solid #F1F5F9;
    padding: 2rem 1.5rem;
  }
  .about-new-right {
    display: flex !important;
    flex-direction: column !important;
    padding: 2rem 1.5rem !important;
    gap: 2rem !important;
    text-align: center !important;
  }
  .about-new-right-top {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .about-new-right-features {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid #F1F5F9 !important;
  }
  .feature-item-inline {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
  }
  .vm-item-new {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


