    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
 font-family: 'Sora', sans-serif;
      background-color: #f4f7fc; /* soft off-white base */
      color: #11223b;
      overflow-x: hidden;
    }

  /* ========== TOPBAR (light / white theme) ========== */
    .topbar {
      background: #041838;
      border-bottom: 1px solid rgba(0, 35, 75, 0.08);
      padding: 0.7rem 5%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      font-size: 0.85rem;
      letter-spacing: 0.2px;
      color: #dfdcdc !important;
      box-shadow: 0 4px 15px rgba(0,20,50,0.02);
    }

    .topbar-left {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .status-dot {
      width: 10px;
      height: 10px;
      background: #2ecc71;
      border-radius: 50%;
      box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.2);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5); }
      70% { box-shadow: 0 0 0 6px rgba(46, 204, 113, 0); }
      100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
    }

    .status-text {
      font-weight: 500;
      color: #ededed;
    }

    .topbar-center {
      flex: 1;
      text-align: center;
      overflow: hidden;
      white-space: nowrap;
      max-width: 450px;
    }

    .ticker {
      display: inline-block;
      animation: tickerMove 18s linear infinite;
      font-weight: 450;
      color: #ededed;
    }

    .ticker span {
      margin: 0 10px;
    }

    @keyframes tickerMove {
      0% { transform: translateX(0%); }
      100% { transform: translateX(-45%); }
    }

    .topbar-right {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .topbar-right a {
      text-decoration: none;
      color: #ededed;
      font-weight: 500;
      transition: color 0.2s;
    }

    .topbar-right a:hover {
      color: #f45b2b; /* orange accent */
    }

    .divider {
      width: 1px;
      height: 16px;
      background: rgba(0,35,75,0.15);
    }

    /* ========== HEADER (nav) white + navy ========== */
    .tecla-header {
      background: #ffffffdd;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 0.8rem 5%;
      border-bottom: 1px solid rgba(0, 35, 75, 0.1);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 10px 30px -15px rgba(0,20,50,0.1);
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
    }

    .logo img {
      height: 60px;
      width: auto;
      display: block;
      filter: brightness(0.9) saturate(1.2);
    }

    /* Mobile Toggle */
    .mobile-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
      padding: 8px;
      z-index: 1001;
    }

    .mobile-toggle span {
      width: 25px;
      height: 3px;
      background: #13273e;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .mobile-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Desktop Navigation */
    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      font-weight: 600;
      color: #13273e;
      font-size: 1rem;
      letter-spacing: -0.01em;
      transition: all 0.2s;
      padding: 0.5rem 0;
      border-bottom: 2px solid transparent;
      white-space: nowrap;
    }

    .nav-links a:hover {
      color: #f45b2b;
      border-bottom-color: #f45b2b;
    }

    /* Dropdown */
    .dropdown {
      position: relative;
    }

    .dropdown-toggle {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .dropdown-toggle i {
      font-size: 0.8rem;
      transition: transform 0.3s;
    }

    .dropdown:hover .dropdown-toggle i {
      transform: rotate(180deg);
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      min-width: 250px;
      border-radius: 12px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
      border: 1px solid rgba(0,35,75,0.1);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 1000;
    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu a {
      display: block;
      padding: 1rem 1.5rem;
      border-bottom: 1px solid rgba(0,35,75,0.05);
      font-size: 0.95rem;
      border-radius: 0;
    }

    /* Dropdown Submenu */
    .dropdown-submenu {
      position: relative;
    }

    .submenu-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .submenu {
      position: absolute;
      left: 100%;
      top: 0;
      background: white;
      min-width: 220px;
      border-radius: 12px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
      border: 1px solid rgba(0,35,75,0.1);
      opacity: 0;
      visibility: hidden;
      transform: translateX(-10px);
      transition: all 0.3s ease;
    }

    .dropdown-submenu:hover .submenu {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
    }

    .submenu a {
      padding: 0.8rem 1.2rem;
      font-size: 0.9rem;
    }

    .dropdown-menu a:hover {
      background: rgba(244,91,43,0.05);
      color: #f45b2b;
    }

    .nav-cta {
      background: #0a2540;
      color: white !important;
      padding: 0.75rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 10px 20px -8px rgba(10, 37, 64, 0.2);
      border: 1px solid rgba(255,255,255,0.2);
      white-space: nowrap;
    }

    .nav-cta:hover {
      background: #f45b2b;
      transform: translateY(-3px);
      box-shadow: 0 20px 25px -10px #f45b2b80;
      color: white;
    }

    /* Mobile Navigation */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(20px);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .mobile-nav.active {
      opacity: 1;
      visibility: visible;
    }

    .mobile-nav a {
      text-decoration: none;
      font-weight: 600;
      color: #13273e;
      font-size: 1.2rem;
      padding: 1rem 2rem;
      border-radius: 12px;
      transition: all 0.3s;
      text-align: center;
    }

    .mobile-nav a:hover {
      background: rgba(244,91,43,0.1);
      color: #f45b2b;
    }

    .mobile-dropdown {
      text-align: center;
    }

    .mobile-dropdown-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .mobile-dropdown-menu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: rgba(244,91,43,0.05);
      border-radius: 12px;
      margin-top: 1rem;
    }

    .mobile-dropdown.active .mobile-dropdown-menu {
      max-height: 500px;
    }

    .mobile-submenu-items {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: rgba(244,91,43,0.03);
      border-radius: 8px;
      margin-top: 0.5rem;
    }

    .mobile-submenu.active .mobile-submenu-items {
      max-height: 200px;
    }

    .mobile-submenu-items a {
      font-size: 0.9rem;
      padding: 0.6rem 1rem;
      margin-left: 1rem;
    }

    .mobile-cta {
      background: #f45b2b !important;
      color: white !important;
      padding: 1rem 3rem;
      border-radius: 50px;
      margin-top: 1rem;
    }

    /* Mobile Responsive */
    @media (max-width: 1024px) {
      .nav-links {
        gap: 1.5rem;
      }
      
      .nav-cta {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
      }
    }

    @media (max-width: 768px) {
      .mobile-toggle {
        display: flex;
      }
      
      .nav-links,
      .nav-cta {
        display: none;
      }
      
      .topbar {
        padding: 0.5rem 3%;
        font-size: 0.8rem;
      }
      
      .topbar-center {
        display: none;
      }
      
      .tecla-header {
        padding: 0.6rem 3%;
      }
    }

    /* ========== ELITE HERO SECTION (white theme, floating image, parallax) ========== */
  .hero-elite {
    position: relative;
    min-height: 90vh;
    width: 100%;
   background: radial-gradient(
      circle at 75% 50%,
      rgba(244, 91, 43, 0.06),
      transparent 50%
    ),
    #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: 4rem 5%;
}


/* WHITE FADE OVERLAY (for premium readability) */
.hero-elite::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.503)
    );
    z-index: 1;
}

/* Make content above layers */
.hero-elite > * {
    position: relative;
    z-index: 2;
}

    /* floating abstract shapes (parallax) */
    .parallax-shape {
      position: absolute;
      width: 50vw;
      height: 50vw;
      border-radius: 50%;
      background: rgba(244, 91, 43, 0.02);
      top: -10%;
      right: -10%;
      filter: blur(70px);
      z-index: 2;
      animation: floatShape 20s infinite alternate ease-in-out;
    }

    .parallax-shape2 {
      left: -5%;
      bottom: 0%;
      width: 40vw;
      height: 40vw;
      background: rgba(10, 55, 110, 0.02);
      filter: blur(70px);
      position: absolute;
      animation: floatShape2 25s infinite alternate;
      z-index: 2;
    }

    @keyframes floatShape {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(-40px, 30px) scale(1.2); }
    }
    @keyframes floatShape2 {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(30px, -40px) scale(1.3); }
    }

    .hero-container {
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
      position: relative;
      z-index: 20;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 3rem;
    }

    /* LEFT CONTENT */
    .hero-left {
      flex: 1 1 500px;
    }

    .hero-tag {
      display: inline-block;
      background: rgba(244, 91, 43, 0.05);
      border: 1px solid rgba(244, 91, 43, 0.15);
      backdrop-filter: blur(4px);
      padding: 0.5rem 1.5rem;
      border-radius: 60px;
      color: #f45b2b;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 2rem;
      box-shadow: 0 8px 20px rgba(244, 91, 43, 0.05);
    }

  .hero-left h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.15;   /* tighter for bold structure */
  letter-spacing: -0.035em;
  color: #0a2540;
  margin-bottom: 1.5rem;
}

.hero-left h1 span {
  background: linear-gradient(
    90deg,
    #f84f1b 0%,
    #fda881 40%,
    #f54a17 80%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: orangeGlow 3s linear infinite;
  display: inline-block;
  position: relative;
}

@keyframes orangeGlow {
  from {
    background-position: 0% center;
  }
  to {
    background-position: 200% center;
  }
}
    .hero-left h1 span::after {
      content: '';
      position: absolute;
      bottom: 10px;
      left: 0;
      width: 100%;
      height: 12px;
      background: rgba(244, 91, 43, 0.15);
      z-index: -1;
      border-radius: 20px;
    }

    .hero-left p {
      font-size: 1.15rem;
  color: #3a5482;
      max-width: 550px;
      margin: 1.5rem 0 2.5rem;
      line-height: 1.6;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      align-items: center;
    }

   .btn-primary {
  background: #f45b2b;
  color: white;
  border: none;
  padding: 1rem 2.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.2);

  /* NEW */
  animation: buttonGlow 3.5s ease-in-out infinite;
}
@keyframes buttonGlow {
  0% {
    box-shadow: 0 18px 28px -12px rgba(244, 90, 43, 0.666);
  }
  50% {
    box-shadow: 0 25px 45px -10px rgba(244, 90, 43, 0.705);
  }
  100% {
    box-shadow: 0 18px 28px -12px rgba(244, 90, 43, 0.696);
  }
}

    .btn-primary:hover {
      background: #e0441a;
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 30px 40px -12px #f45b2b;
    }

    .btn-outline {
      background: transparent;
      color: #0a2540;
      border: 1.5px solid rgba(10, 37, 64, 0.2);
      padding: 1rem 2.5rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 60px;
      text-decoration: none;
      transition: all 0.3s ease;
      backdrop-filter: blur(5px);
    }

    .btn-outline:hover {
      border-color: #f45b2b;
      color: #f45b2b;
      background: rgba(244, 91, 43, 0.02);
      transform: translateY(-3px);
    }

    /* RIGHT CONTENT – FLOATING IMAGE (premium) */
    .hero-right {
      flex: 1 1 400px;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }

    /* main floating image */
    .hero-floating-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      aspect-ratio: 1/1;
      object-fit: contain;
   filter: drop-shadow(0 60px 80px rgba(246, 108, 66, 0.25));
      animation: floatImage 7s infinite alternate ease-in-out;
      transform-origin: center;
      position: relative;
      z-index: 25;
    }

    @keyframes floatImage {
      0% { transform: translateY(0px) rotate(0deg) scale(1); }
      100% { transform: translateY(-30px) rotate(2deg) scale(1.02); }
    }

    /* platform reflection (like reference) */
 .image-platform {
  width: 65%;
  height: 35px;
  background: radial-gradient(
    ellipse at center,
    rgba(244, 91, 43, 0.18),
    transparent 70%
  );
  filter: blur(20px);
  border-radius: 50%;
  margin: -40px auto 0;
}

    @keyframes platformGlow {
      0% { opacity: 0.3; transform: scale(1); }
      100% { opacity: 0.7; transform: scale(1.2); }
    }

    /* small floating circles (depth) */
    .orb {
      position: absolute;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: radial-gradient(circle at 20% 20%, rgba(244,91,43,0.1), transparent 70%);
      bottom: 10%;
      left: 0%;
      z-index: 5;
      filter: blur(30px);
      animation: orbMove 12s infinite alternate;
    }

    .orb2 {
      width: 200px;
      height: 200px;
      background: radial-gradient(circle at 80% 80%, rgba(10,55,110,0.1), transparent);
      top: 0%;
      right: 5%;
      filter: blur(40px);
      position: absolute;
      animation: orbMove2 15s infinite alternate;
    }

    @keyframes orbMove {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(30px, -20px) scale(1.3); }
    }
    @keyframes orbMove2 {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(-30px, 20px) scale(1.2); }
    }

    /* meta footer (like reference) */
    .hero-meta-footer {
      position: absolute;
      bottom: 30px;
      left: 5%;
      right: 5%;
      width: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #4a6085;
      font-size: 0.9rem;
      z-index: 30;
      border-top: 1px solid rgba(0,0,0,0.05);
      padding-top: 1.5rem;
    }

    .meta-left i, .meta-right i {
      color: #f45b2b;
      margin-right: 6px;
    }
    .meta-right i{
      letter-spacing: 1.3px;
    }

    /* responsiveness */
    @media (max-width: 1024px) {
      .hero-container {
        flex-direction: column;
        text-align: center;
      }
      .hero-left {
        text-align: center;
      }
      .hero-left p {
        margin-left: auto;
        margin-right: auto;
      }
      .hero-buttons {
        justify-content: center;
      }
      .hero-meta-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        position: relative;
        bottom: 0;
        margin-top: 50px;
        border: none;
      }
    }

    @media (max-width: 700px) {
      .topbar {
        flex-direction: column;
        gap: 8px;
      }
      .nav-links {
        display: none;
      }
      .hero-left h1 {
        font-size: 2.5rem;
      }
    }
.btn-primary:active {
  transform: translateY(-2px) scale(0.98);
}



/* ================================================================
   SERVICES ELITE WHITE — with integrated floating elements
================================================================ */


/* ── Soft radial orbs ── */
.sew-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.sew-orb--a {
  width: 560px; height: 560px;

  filter: blur(70px);
  top: -140px; right: -80px;
  animation: sewDrift 14s ease-in-out infinite;
}
.sew-orb--b {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(10,37,64,0.07) 0%, transparent 70%);
  filter: blur(60px);
  bottom: 0; left: -60px;
  animation: sewDrift 18s ease-in-out infinite reverse;
}
.sew-orb--c {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(244,91,43,0.09) 0%, transparent 70%);
  filter: blur(50px);
  top: 50%; left: 42%;
  animation: sewDrift 10s ease-in-out infinite 2s;
}
@keyframes sewDrift {
  0%,100% { transform: translate(0,0); }
  33%      { transform: translate(22px,-16px); }
  66%      { transform: translate(-16px, 20px); }
}

/* ── Spinning rings ── */
.sew-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.sew-ring--a {
  width: 340px; height: 340px;
  border: 1.5px dashed rgba(244,91,43,0.22);
  top: 30px; right: 40px;
  animation: sewSpin 25s linear infinite;
}
.sew-ring--b {
  width: 200px; height: 200px;
  border: 1.5px dashed rgba(10,37,64,0.12);
  bottom: 80px; left: 60px;
  animation: sewSpin 18s linear infinite reverse;
}
@keyframes sewSpin { to { transform: rotate(360deg); } }

/* ── Dot grids ── */
.sew-dots {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(244,91,43,0.4) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.5;
}
.sew-dots--tl { width: 120px; height: 120px; top: 60px; left: 80px; animation: sewBob 7s ease-in-out infinite; }
.sew-dots--br { width: 100px; height: 100px; bottom: 70px; right: 90px; animation: sewBob 9s ease-in-out infinite 1s; opacity: 0.35; }

/* ── Accent lines ── */
.sew-line {
  position: absolute;
  height: 1.5px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 0;
}
.sew-line--1 {
  width: 160px;
  background: linear-gradient(90deg, transparent, rgba(244,91,43,0.45), transparent);
  top: 200px; left: 4%;
  transform: rotate(-30deg);
  animation: sewFade 4s ease-in-out infinite;
}
.sew-line--2 {
  width: 120px;
  background: linear-gradient(90deg, transparent, rgba(244,91,43,0.35), transparent);
  bottom: 160px; right: 5%;
  transform: rotate(25deg);
  animation: sewFade 5.5s ease-in-out infinite 1.2s;
}
@keyframes sewFade {
  0%,100% { opacity:.3; } 50% { opacity:1; }
}

/* ── Sparkles ── */
.sew-spark {
  position: absolute;
  color: #f45b2b;
  font-size: 1.1rem;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}
.sew-spark--1 { top: 90px;  left: 12%;  animation: sewSparkle 3s ease-in-out infinite; }
.sew-spark--2 { top: 72px;  right: 15%; animation: sewSparkle 4s ease-in-out infinite .7s; font-size:.85rem; opacity:.7; }
.sew-spark--3 { bottom: 200px; left: 8%; animation: sewSparkle 5s ease-in-out infinite 1.4s; font-size:.7rem; opacity:.5; }
.sew-spark--4 { top: 160px; right: 8%;  animation: sewSparkle 3.5s ease-in-out infinite .3s; font-size:.7rem; opacity:.6; }
@keyframes sewSparkle {
  0%,100% { transform: scale(1) rotate(0deg);    opacity:.5; }
  50%      { transform: scale(1.5) rotate(18deg); opacity:1; }
}

/* ── Floating Pills ── */
.sew-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0a2540;
  background: #ffffff;
  border: 1.5px solid rgba(10,37,64,0.1);
  border-radius: 50px;
  padding: 10px 18px;
  box-shadow: 0 8px 28px rgba(10,37,64,0.12), 0 2px 6px rgba(10,37,64,0.06);
  z-index: 6;
  white-space: nowrap;
}
.sew-pill i { color: #f45b2b; font-size: 0.72rem; }
.sew-pill--1 { top: 52px;  left: 6%; animation: sewBob 5s ease-in-out infinite; }
.sew-pill--2 { top: 52px;  right: 5%; animation: sewBob 6s ease-in-out infinite .9s; }

/* ── Live Badge ── */
.sew-badge {
  position: absolute;
  bottom: 120px; right: 5%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #0a7a4b;
  background: #edfbf4;
  border: 1.5px solid rgba(10,122,75,0.22);
  border-radius: 50px;
  padding: 9px 16px;
  box-shadow: 0 6px 20px rgba(10,122,75,0.14);
  z-index: 6;
  animation: sewBob 7s ease-in-out infinite 1.4s;
}
.sew-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #0a7a4b;
  animation: sewPing 1.6s ease-in-out infinite;
}
@keyframes sewPing {
  0%,100% { box-shadow: 0 0 0 0 rgba(10,122,75,0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(10,122,75,0); }
}

/* Shared */
@keyframes sewBob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* ── Header ── */
.services-header {
  max-width: 700px;
  margin: 0 auto 90px;
  position: relative;
  z-index: 2;
}
.section-tag {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  font-weight: 600;
  color: #f45b2b;
  background: rgba(244,91,43,0.07);
  border: 1px solid rgba(244,91,43,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 22px;
  display: inline-block;
}
.services-header h2 {
  font-size: clamp(2.4rem,4.5vw,3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0a2540;
  margin-bottom: 14px;
  font-family: 'Syne', sans-serif;
}
.services-header p { color: #4a6085; font-size: 1rem; }


@keyframes sewGlow {
  0%,100% { opacity:.45; transform: translateX(-50%) scaleX(1); }
  50%      { opacity:.8;  transform: translateX(-50%) scaleX(1.08); }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .arc-stage { height: 420px; }
  .arc-card { width: 185px; }
  .left-1  { left: 20%; bottom: 190px; }
  .right-1 { right: 20%; bottom: 190px; }
}
@media (max-width: 900px) {
  .arc-stage, .arc-connectors { display: none; }
  .sew-pill, .sew-badge { display: none; }
}

/* ================================================================
   TECLA MEDIA – Why Choose + Who We Are — LIGHT THEME
   Namespace: tm-svc__*
================================================================ */

.tm-svc {
  --tm-orange:        #f45b2b;
  --tm-orange-soft:   rgba(244, 91, 43, 0.10);
  --tm-orange-border: rgba(244, 91, 43, 0.22);
  --tm-navy:          #07193b;
  --tm-navy-mid:      #0e2a55;
  --tm-navy-light:    #1a3a6e;
  --tm-text-body:     #3d5a80;
  --tm-text-muted:    #7a93b5;
  --tm-bg:            #ffffff;
  --tm-card-bg:       #ffffff;
  --tm-card-border:   rgba(7, 25, 59, 0.08);
  --tm-card-shadow:   0 4px 24px rgba(7, 25, 59, 0.07);
}

.tm-svc {
  position: relative;
  width: 100%;
padding: 47px 3% 78px;
  background: var(--tm-bg);
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

/* ── Orbs ── */
.tm-svc__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.tm-svc__orb--a {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(244,91,43,0.10), transparent 70%);
  top: -180px; left: -200px;
  animation: tmSvcFloat 12s ease-in-out infinite;
}
.tm-svc__orb--b {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(14,42,85,0.07), transparent 70%);
  bottom: -100px; right: -120px;
  animation: tmSvcFloat 16s ease-in-out infinite reverse;
}
.tm-svc__orb--c {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(244,91,43,0.06), transparent 70%);
  top: 55%; left: 55%;
  animation: tmSvcFloat 9s ease-in-out infinite 1.5s;
}
@keyframes tmSvcFloat {
  0%,100% { transform: translate(0,0); }
  33%     { transform: translate(28px,-18px); }
  66%     { transform: translate(-18px, 22px); }
}

/* ── Grid BG ── */
.tm-svc__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7,25,59,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,25,59,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black, transparent);
}

/* ── Inner ── */
.tm-svc__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Header ── */
.tm-svc__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 90px;
}

.tm-svc__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tm-orange);
  background: var(--tm-orange-soft);
  border: 1px solid var(--tm-orange-border);
  padding: 8px 18px 8px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.tm-svc__tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tm-orange);
  animation: tmSvcBlink 2s ease-in-out infinite;
}
@keyframes tmSvcBlink {
  0%,100% { opacity:1; }
  50%      { opacity:0.3; }
}

.tm-svc__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--tm-navy);
}
.tm-svc__title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px rgba(7,25,59,0.22);
}

.tm-svc__subtitle {
  font-size: 1.05rem;
  color: var(--tm-text-body);
  line-height: 1.7;
  font-weight: 300;
  max-width: 400px;
  margin: 0 0 28px auto;
}

.tm-svc__link-btn {
  display: block;
  width: fit-content;
  margin-left: auto;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--tm-navy);
  text-decoration: none;
  border: 1.5px solid rgba(7,25,59,0.18);
  border-radius: 100px;
  padding: 12px 22px;
  transition: all .3s ease;
  background: transparent;
}
.tm-svc__link-btn i { transition: transform .3s ease; margin-left: 6px; }
.tm-svc__link-btn:hover {
  background: var(--tm-navy);
  border-color: var(--tm-navy);
  color: #fff;
}
.tm-svc__link-btn:hover i { transform: translateX(4px); }

/* ── Cards Grid ── */
.tm-svc__cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

/* ===== LEAF CARD SHAPE ===== */

.tm-svc__card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(7,25,59,0.06);

  /* LEAF GEOMETRY */
  border-radius: 82px 12px 82px 12px;

  padding: 44px 42px;
  box-shadow: 0 10px 35px rgba(7,25,59,0.06);

  transition:
    transform .45s cubic-bezier(.22,.61,.36,1),
    box-shadow .45s ease,
    border-color .45s ease;

  overflow: hidden;
}
@keyframes tmSvcCardIn {
  to { opacity:1; transform:translateY(0); }
}

.tm-svc__card--wide { grid-column: 1 / 6;  animation-delay: .05s; border: 1px solid rgba(12, 5, 74, 0.874); }
.tm-svc__card--mid  { grid-column: 6 / 10; animation-delay: .15s; background: rgb(255, 85, 23); color: #ffffff; }
.tm-svc__card--tall { grid-column: 10 / 13; grid-row: 1 / 3; animation-delay: .25s; }
.tm-svc__card--slim { grid-column: 1 / 5;  animation-delay: .20s; background: rgb(255, 85, 23); color: #ffffff; }
.tm-svc__card--stat { grid-column: 5 / 10; animation-delay: .30s;  border: 1px solid rgba(12, 5, 74, 0.874);}

/* "Who We Are" card — navy accent */
.tm-svc__card--about {
  background: #07193b;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 30px 80px rgba(7,25,59,0.25);
}
.tm-svc__card--about .tm-svc__card-title { color: #fff; }
.tm-svc__card--about .tm-svc__card-desc  { color: rgba(255,255,255,0.6); }
.tm-svc__card--about .tm-svc__card-num   { color: rgba(255,255,255,0.15); }

/* About tag pill */
.tm-svc__about-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tm-orange);
  background: rgba(244,91,43,0.15);
  border: 1px solid rgba(244,91,43,0.3);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

/* About stats */
.tm-svc__about-stat-row {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.tm-svc__about-stat strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
}
.tm-svc__about-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

.tm-svc__card--about .tm-svc__arrow i { color: #fff; }
.tm-svc__card--about:hover .tm-svc__arrow {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

/* ================= PREMIUM HOVER UPGRADE ================= */

.tm-svc__card {
  transition:
    transform .7s cubic-bezier(.16,1,.3,1),
    box-shadow .7s cubic-bezier(.16,1,.3,1),
    background .6s ease,
    border-color .6s ease;
}

/* Light cards hover */
.tm-svc__card:not(.tm-svc__card--about):hover {
  transform: translateY(-18px) scale(1.02);

  box-shadow:
    0 50px 110px rgba(7,25,59,0.12),
    0 20px 45px rgba(7,25,59,0.08),
    0 8px 20px rgba(7,25,59,0.06);

  border-color: rgba(244,91,43,.4);
}

/* Orange cards stronger glow */
.tm-svc__card--mid:hover,
.tm-svc__card--slim:hover {
  background: linear-gradient(145deg,#ff6a3d,#e64717);

  box-shadow:
    0 60px 130px rgba(244,91,43,.45),
    0 25px 60px rgba(244,91,43,.25);
}

/* Navy card luxury lift */
.tm-svc__card--about:hover {
  transform: translateY(-22px) scale(1.03);

  box-shadow:
    0 80px 160px rgba(7,25,59,.55),
    0 35px 90px rgba(7,25,59,.35);

  border-color: rgba(244,91,43,.4);
}

/* Icon premium interaction */
.tm-svc__card:hover .tm-svc__icon-box {
  transform: translateY(-6px) scale(1.15);
  box-shadow: 0 18px 45px rgba(244,91,43,.35);
}

.tm-svc__card:hover .tm-svc__icon-box i {
  transform: scale(1.2);
}

/* Chips micro lift */
.tm-svc__card:hover .tm-svc__chip {
  transform: translateY(-3px);
}

/* Subtle highlight sweep */
.tm-svc__card::after {
  content:"";
  position:absolute;
  top:-120%;
  left:-50%;
  width:200%;
  height:300%;
  background:linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,.25) 50%,
    transparent 60%
  );
  transform:rotate(25deg);
  opacity:0;
  pointer-events:none;
}

.tm-svc__card:hover::after {
  animation: tmSweep 1.4s ease forwards;
  opacity:1;
}

@keyframes tmSweep {
  from { transform: translateX(-100%) rotate(25deg); }
  to   { transform: translateX(100%) rotate(25deg); }
}

/* Hover glow (light cards) */
.tm-svc__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 20%, rgba(244,91,43,0.07), transparent 65%);
  opacity: 0;
  transition: opacity .4s ease;
  border-radius: inherit;
}
.tm-svc__card:not(.tm-svc__card--about):hover::before { opacity: 1; }

/* Card number */
.tm-svc__card-num {
  position: absolute;
  top: 28px; right: 32px;
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(7,25,59,0.12);
}

/* Icon box */
.tm-svc__icon-box {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--tm-orange-soft);
  border: 1px solid var(--tm-orange-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: all .35s ease;
  position: relative; z-index: 1;
}
.tm-svc__icon-box i {
  font-size: 22px;
  color: var(--tm-orange);
  transition: transform .35s ease;
}
.tm-svc__card:not(.tm-svc__card--about):hover .tm-svc__icon-box {
  background: var(--tm-orange);
  border-color: var(--tm-orange);
  box-shadow: 0 8px 24px rgba(244,91,43,0.35);
}
.tm-svc__card:not(.tm-svc__card--about):hover .tm-svc__icon-box i {
  color: #fff;
  transform: scale(1.15);
}

/* Text */
.tm-svc__card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tm-navy);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.tm-svc__card--wide .tm-svc__card-title { font-size: 1.5rem; }
.tm-svc__card--tall .tm-svc__card-title { font-size: 1.3rem; }

.tm-svc__card-desc {
  font-size: 0.88rem;
  color: var(--tm-text-body);
  line-height: 1.65;
  font-weight: 300;
  position: relative; z-index: 1;
}

/* Tags */
.tm-svc__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
  position: relative; z-index: 1;
}
.tm-svc__chip {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--tm-navy-light);
  background: rgba(7,25,59,0.05);
  border: 1px solid rgba(7,25,59,0.09);
  padding: 5px 12px;
  border-radius: 50px;
  transition: all .25s ease;
}
.tm-svc__card:hover .tm-svc__chip {
  background: rgba(244,91,43,0.06);
  border-color: rgba(244,91,43,0.2);
  color: var(--tm-orange);
}

/* Arrow */
.tm-svc__arrow {
  position: absolute;
  bottom: 32px; right: 32px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(7,25,59,0.04);
  border: 1px solid rgba(7,25,59,0.1);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: all .3s ease;
  z-index: 2;
}
.tm-svc__arrow i {
  font-size: 12px;
  color: var(--tm-orange);
  transform: rotate(-45deg);
}
.tm-svc__card:hover .tm-svc__arrow {
  opacity: 1;
  transform: translateY(0);
  background: var(--tm-orange-soft);
  border-color: var(--tm-orange-border);
}

/* Stats */
.tm-svc__stats {
  display: flex;
  gap: 28px;
  margin-top: 24px;
  position: relative; z-index: 1;
}
.tm-svc__stat strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--tm-navy);
  letter-spacing: -0.04em;
}
.tm-svc__stat span {
  font-size: 0.75rem;
  color: var(--tm-text-muted);
  font-weight: 300;
}

/* ── Bottom Strip ── */
.tm-svc__strip {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1.5px solid rgba(7,25,59,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tm-svc__strip-text {
  font-size: 0.875rem;
  color: var(--tm-text-muted);
  font-weight: 300;
}
.tm-svc__strip-text strong {
  color: var(--tm-navy);
  font-weight: 600;
}
.tm-svc__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  background: var(--tm-orange);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all .3s ease;
  border: none;
  cursor: pointer;
}
.tm-svc__cta:hover {
  background: #e04e22;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(244,91,43,0.45);
}
.tm-svc__cta i { font-size: 12px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .tm-svc__head { grid-template-columns: 1fr; gap: 20px; }
  .tm-svc__subtitle { margin: 0 0 28px 0; }
  .tm-svc__link-btn { margin-left: 0; }
  .tm-svc__cards { grid-template-columns: 1fr 1fr; }
  .tm-svc__card--wide,
  .tm-svc__card--mid,
  .tm-svc__card--tall,
  .tm-svc__card--slim,
  .tm-svc__card--stat { grid-column: unset; grid-row: unset; }
  .tm-svc__card--wide { grid-column: 1 / 2; }
  .tm-svc__card--mid  { grid-column: 2 / 3; }
  .tm-svc__card--tall { grid-column: 1 / 3; }
  .tm-svc__card--slim { grid-column: 1 / 2; }
  .tm-svc__card--stat { grid-column: 2 / 3; }
}

@media (max-width: 640px) {
  .tm-svc { padding: 80px 5%; }
  .tm-svc__cards { grid-template-columns: 1fr; }
  .tm-svc__card--wide,
  .tm-svc__card--mid,
  .tm-svc__card--tall,
  .tm-svc__card--slim,
  .tm-svc__card--stat { grid-column: 1 / 2; }
  .tm-svc__strip { flex-direction: column; gap: 20px; text-align: center; }
  .tm-svc__stats { gap: 16px; }
  .tm-svc__about-stat-row { gap: 16px; }
}

     /* ================================================================
   TECLA – WHY CHOOSE / WHO WE ARE  ·  PREMIUM EDITION
   Namespace: tcw__*
================================================================ */

/* ── Tokens ── */
:root {
  --tcw-orange:      #f45b2b;
  --tcw-orange-dim:  rgba(244,91,43,0.10);
  --tcw-orange-mid:  rgba(244,91,43,0.22);
  --tcw-navy:        #07193b;
  --tcw-navy-2:      #0c2248;
  --tcw-navy-3:      #142f5e;
  --tcw-body:        #3d5a80;
  --tcw-muted:       #7a93b5;
  --tcw-border:      rgba(7,25,59,0.08);
  --tcw-white:       #ffffff;
  --tcw-off:         #f9fafc;
}

/* ── Section shell ── */
.tcw {
  position: relative;
  width: 100%;
  padding: 60px 5% 60px;
  background: var(--tcw-white);
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

/* ── BG mesh gradient ── */
.tcw__bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%,   rgba(244,91,43,0.06)  0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 95% 100%,  rgba(7,25,59,0.05)    0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 55%,   rgba(244,91,43,0.04)  0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* ── Grain noise ── */
.tcw__bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 0;
}

/* ── Soft orbs ── */
.tcw__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.tcw__orb-1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(244,91,43,0.11), transparent 70%);
  top: -200px; left: -180px;
  animation: tcwFloat 13s ease-in-out infinite;
}
.tcw__orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(7,25,59,0.07), transparent 70%);
  bottom: -120px; right: -100px;
  animation: tcwFloat 17s ease-in-out infinite reverse;
}
.tcw__orb-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(244,91,43,0.07), transparent 70%);
  top: 45%; left: 48%;
  animation: tcwFloat 10s ease-in-out infinite 2s;
}
@keyframes tcwFloat {
  0%,100% { transform: translate(0,0); }
  33%     { transform: translate(24px,-16px); }
  66%     { transform: translate(-18px, 22px); }
}

/* ── Decorative geometry ── */
.tcw__geo {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.tcw__geo-circle {
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px dashed rgba(244,91,43,0.12);
  top: -60px; right: 80px;
  animation: tcwSpin 40s linear infinite;
}
.tcw__geo-arc {
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px dashed rgba(7,25,59,0.08);
  bottom: 80px; left: 40px;
  animation: tcwSpin 28s linear infinite reverse;
}
.tcw__geo-lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
@keyframes tcwSpin { to { transform: rotate(360deg); } }

/* ── Wrap ── */
.tcw__wrap {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
.tcw__header {
  margin-bottom: 80px;
}

.tcw__header-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.tcw__eyebrow-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--tcw-orange);
}
.tcw__eyebrow-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--tcw-orange), transparent);
}

/* Pulse dot */
.tcw__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--tcw-orange);
  box-shadow: 0 0 0 0 rgba(244,91,43,0.4);
  animation: tcwPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.tcw__pulse--green {
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
  animation: tcwPulseGreen 2s ease-in-out infinite;
}
@keyframes tcwPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(244,91,43,0.5); }
  50%     { box-shadow: 0 0 0 8px rgba(244,91,43,0); }
}
@keyframes tcwPulseGreen {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%     { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

.tcw__header-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}

/* Headline — editorial Cormorant */
.tcw__headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--tcw-navy);
  margin: 0;
}
.tcw__headline em {
  font-style: italic;
  color: var(--tcw-orange);
}
.tcw__headline-outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(7,25,59,0.2);
  font-weight: 300;
  font-style: italic;
}

.tcw__lead {
  font-size: 1rem;
  color: var(--tcw-body);
  line-height: 1.75;
  font-weight: 300;
  margin: 0 0 32px;
}

/* Meta numbers */
.tcw__header-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.tcw__meta-item {
  display: flex;
  flex-direction: column;
}
.tcw__meta-item strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--tcw-navy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.tcw__meta-item span {
  font-size: 0.7rem;
  color: var(--tcw-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 2px;
}
.tcw__meta-div {
  width: 1px;
  height: 32px;
  background: var(--tcw-border);
}

/* CTA button */
.tcw__btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tcw-navy);
  border: 1.5px solid var(--tcw-border);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color .3s ease;
}
.tcw__btn span {
  padding: 12px 20px;
  transition: background .3s ease, color .3s ease;
}
.tcw__btn-icon {
  width: 44px; height: 44px;
  background: var(--tcw-navy);
  display: flex; align-items: center; justify-content: center;
  border-radius: 0 50px 50px 0;
  transition: background .3s ease;
}
.tcw__btn-icon i { font-size: 12px; color: #fff; transition: transform .3s ease; }
.tcw__btn:hover { border-color: var(--tcw-orange); }
.tcw__btn:hover span { color: var(--tcw-orange); }
.tcw__btn:hover .tcw__btn-icon { background: var(--tcw-orange); }
.tcw__btn:hover .tcw__btn-icon i { transform: translateX(3px); }


:root {
  --font-size: 0.8em;

  --bg1: #ffffff;
  --blue: #fd6105;   /* orange tone */
  --green: #fd6105;
  --purple: #fd6105;
  --gold: #fd6105;
  --red: #fd6105;
  --orange: #e67e22;
}

main.tm-ig {
  padding: 2vw;
}

.tm-ig__list {
  font-size: var(--font-size);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Grid */
.tm-ig__item {
  flex: 0 0 calc(33.333% - 2rem);
  max-width: calc(33.333% - 2rem);
  position: relative;
  width: 100%;
  max-width: 25em;
 
  border-radius: 14px;
  padding: 0.5em;
  cursor: pointer;
  transition: all 0.3s ease;

border-bottom: 2px solid rgba(244, 90, 43, 0.477);


  
}

/* Hover elevation */
.tm-ig__item:hover {
  transform: translateY(-6px);
   box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.10),
    0 10px 20px rgba(0, 0, 0, 0.06),
    0 4px 0 rgb(244, 90, 43); /* thin accent base */
}

/* Number/Icon Wrap */
.tm-ig__numberWrap {
  position: absolute;
}

/* Large icon behaving like number */
.tm-ig__number {
  font-size: 11em;
  font-weight: 600;
  width: 1.5em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Icon styling */
.tm-ig__number i {
  font-size: 0.8em;
  display: block;
  color: var(--blue);
  transition: transform 0.4s cubic-bezier(.17,.67,.38,1.4);
}

/* ICON FULL REVEAL + POP + GRADIENT */
.tm-ig__item:hover .tm-ig__number i {
  transform: translateY(-0.35em) scale(1.12);

  background: linear-gradient(135deg, #0d034a, #223482);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
}

/* Diagonal Cover */
.tm-ig__coverWrap {
  transform: rotate(130deg);
  position: absolute;
  width: 16em;
  height: 16em;
  left: -2em;
  top: -2em;
}

/* Cover Surface */
.tm-ig__numberCover {
  position: absolute;
  background: var(--bg1);
  width: 18em;
  height: 6em;
  border-radius: 50% 50% 0 0;
  border-bottom: 3px solid #f5f8f7;
  transition: all 0.4s ease;
}

/* ORIGINAL DEEP GLOW SHADOW (this is the magic) */
.tm-ig__numberCover::before {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 4em;
  right: 4em;
  top: 5em;
  box-shadow: 0 0 30px 17px #48668577;
  border-radius: 100px / 10px;
  z-index: -1;
}

.tm-ig__numberCover::after {
  position: absolute;
  bottom: 0;
  content: "";
  left: -10%;
  width: 120%;
  height: 150%;
  background: radial-gradient(
    at bottom,
    #48668533,
    transparent,
    transparent
  );
  z-index: 1;
}

/* Hover curve effect */
.tm-ig__item:hover .tm-ig__coverWrap .tm-ig__numberCover {
  border-radius: 100%;
}

/* Content */
.tm-ig__content {
  margin: 8em 3em 1em 7em;
  position: relative;
}

.tm-ig__content h2 {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #0f172a;
}

.tm-ig__content p {
  line-height: 1.5em;
  font-size: 15px !important;
  color: #6b7280;
}
/* ===============================
   TECLA ELITE TIMELINE SECTION
=================================*/

.tm-elite {
  padding: 160px 5%;
  background:
    radial-gradient(circle at 20% 20%, rgba(244,91,43,0.05), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(7,25,59,0.05), transparent 60%),
    #ffffff;
  font-family: 'DM Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

.tm-elite__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===============================
   HEADER
=================================*/

.tm-elite__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 120px;
}

.tm-elite__tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #f45b2b;
  background: rgba(244,91,43,0.08);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 30px;
}

.tm-elite__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #07193b;
  line-height: 1.05;
  margin-bottom: 30px;
}

.tm-elite__title span {
  color: transparent;
  -webkit-text-stroke: 2px rgba(7,25,59,0.25);
}

.tm-elite__subtitle {
  font-size: 19px;
  color: #3d5a80;
  line-height: 1.7;
}

/* ===============================
   TIMELINE
=================================*/

.tm-elite__timeline {
  position: relative;
}

.tm-elite__timeline::after {
  content: "";
  position: absolute;
  width: 2px;
  background: linear-gradient(to bottom,
    rgba(244,91,43,0.3),
    rgba(244,91,43,1),
    rgba(244,91,43,0.3)
  );
  top: 0;
  bottom: 0;
  left: 50%;
  transform: scaleY(0);
  transform-origin: top;
  animation: tmLineGrow 1.5s ease forwards;
}

@keyframes tmLineGrow {
  to { transform: scaleY(1); }
}

/* ===============================
   ITEMS
=================================*/

.tm-elite__item {
  position: relative;
  width: 50%;
  padding: 40px 50px;
}

.tm-elite__left { left: 0; }
.tm-elite__right { left: 50%; }

.tm-elite__item::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #f45b2b;
  border-radius: 50%;
  top: 60px;
  right: -9px;
  box-shadow:
    0 0 0 6px rgba(244,91,43,0.15),
    0 0 20px rgba(244,91,43,0.4);
}

.tm-elite__right::after {
  left: -9px;
}

/* ===============================
   CARD
=================================*/

.tm-elite__card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(7,25,59,0.06);
  border-radius: 22px;
  box-shadow:
    0 15px 40px rgba(7,25,59,0.08),
    0 3px 12px rgba(7,25,59,0.04);
  overflow: hidden;
  transition: all .4s cubic-bezier(.22,.68,0,1.1);
}

.tm-elite__card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 30px 70px rgba(7,25,59,0.12),
    0 0 0 1px rgba(244,91,43,0.15);
}

/* IMAGE */
.tm-elite__image {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: .4s ease;
}

.tm-elite__card:hover .tm-elite__image {
  transform: scale(1.05);
  filter: saturate(110%);
}

/* Sample images */
.tm-img-1 { background: url('img/hrms.jpg') center/cover; }
.tm-img-2 { background: url('img/hrms.jpg') center/cover; }
.tm-img-3 { background: url('img/hrms.jpg') center/cover; }
.tm-img-4 { background: url('img/hrms.jpg') center/cover; }

/* CONTENT */
.tm-elite__content {
  padding: 35px;
}

.tm-step {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(7,25,59,0.25);
  margin-bottom: 15px;
}

.tm-elite__content h3 {
  font-weight: 700;
  color: #07193b;
  margin-bottom: 15px;
}

.tm-elite__content h3 i {
  color: #f45b2b;
  margin-right: 8px;
}

.tm-elite__content p {
  color: #3d5a80;
  line-height: 1.7;
}

/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 900px) {

  .tm-elite__timeline::after {
    left: 20px;
  }

  .tm-elite__item {
    width: 100%;
    padding-left: 70px;
  }

  .tm-elite__right {
    left: 0;
  }

  .tm-elite__item::after {
    left: 11px;
  }
}


/* ================= FOOTER BACKGROUND ================= */
.footer-bg {
    background: linear-gradient(135deg, #F05A28 0%, #ff8c42 100%);
    padding: 50px 0;
}

/* ================= FOOTER CARD ================= */
.tecla-footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 60px 40px 30px;
    border-radius: 30px;
    margin: 0 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
    color: #1E2B3A;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
}

/* ===== COLUMN 1 ===== */
.footer-about {
    flex: 2 1 320px;
}

.brand-logo {
    max-width: 150px;
    height: auto;
}

.brand-tagline {
    font-size: 12px;
    letter-spacing: 3px;
    margin: 10px 0 25px;
    color: #F05A28;
    text-transform: uppercase;
}

.company-description {
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    font-size: 18px;
    color: #F05A28;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    border-radius: 50%;
    background: #f0f4f8;
    border: 2px solid #F05A28;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F05A28, #1e3a8a);
    transition: left 0.4s ease;
    z-index: -1;
    border-radius: 50%;
}

.social-links a:hover {
    color: #fff;
    border-color: #1e3a8a;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 25px rgba(240, 90, 40, 0.3);
}

.social-links a:hover::before {
    left: 0;
}

/* ===== COLUMN 2 ===== */
.footer-services {
    flex: 2 1 280px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    color: #1E2B3A;
}

.services-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 25px;
    margin-top: 25px;
}

.services-grid li {
    color: #4B5563;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.services-grid li:hover {
    background: linear-gradient(135deg, rgba(240, 90, 40, 0.2), rgba(30, 58, 138, 0.15));
    transform: translateX(8px);
    color: #F05A28;
    padding-left: 20px;
}

.services-grid li::before {
    content: "▹";
    color: #F05A28;
    margin-right: 8px;
}

/* ===== COLUMN 3 ===== */
.footer-contact {
    flex: 1 1 280px;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #4B5563;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(240, 90, 40, 0.15), rgba(30, 58, 138, 0.1));
    transform: translateX(-8px);
    color: #1E2B3A;
}

.contact-item i {
    color: #F05A28;
    margin-top: 3px;
    width: 20px;
}

/* MAP */
.map-container {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #F05A28, #1e3a8a) border-box;
}

.map-container iframe {
    width: 100%;
    height: 170px;
    border: 0;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
    color: #6B7280;
}

.footer-bottom a {
    color: #6B7280;
    text-decoration: none;
    margin-left: 20px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-bottom a:hover {
    color: #F05A28;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
    .tecla-footer {
        margin: 0 20px;
        border-radius: 20px;
    }

    .footer-container {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom a {
        margin: 0 10px;
    }
}

/* ================= CYBER PRODUCTS SECTION ================= */
.cyber-products {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
    position: relative;
    overflow: hidden;
}

.cyber-products::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(244,91,43,0.08), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59,130,246,0.08), transparent 40%);
    pointer-events: none;
}

.cyber-products__container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cyber-products__header {
    text-align: center;
    margin-bottom: 70px;
}

.cyber-products__tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #f45b2b;
    background: rgba(244,91,43,0.15);
    border: 1px solid rgba(244,91,43,0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.cyber-products__title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.cyber-products__title span {
    background: linear-gradient(135deg, #f45b2b 0%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cyber-products__desc {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.cyber-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cyber-product {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.cyber-product::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(244,91,43,0.1), rgba(59,130,246,0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cyber-product:hover {
    transform: translateY(-10px);
    border-color: rgba(244,91,43,0.5);
    box-shadow: 0 20px 60px rgba(244,91,43,0.3);
}

.cyber-product:hover::before {
    opacity: 1;
}

.cyber-product--featured {
    background: linear-gradient(135deg, rgba(244,91,43,0.15), rgba(59,130,246,0.1));
    border-color: rgba(244,91,43,0.4);
}

.cyber-product__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f45b2b;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-product__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f45b2b, #ff8c42);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.cyber-product:hover .cyber-product__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(244,91,43,0.5);
}

.cyber-product__icon i {
    font-size: 32px;
    color: white;
}

.cyber-product__name {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cyber-product__desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.cyber-product__features {
    list-style: none;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cyber-product__features li {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cyber-product__features li i {
    color: #f45b2b;
    font-size: 12px;
}

.cyber-product__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cyber-product__btn:hover {
    background: #f45b2b;
    border-color: #f45b2b;
    transform: translateX(5px);
}

.cyber-product__btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.cyber-product__btn:hover i {
    transform: translateX(3px);
}

@media(max-width: 768px) {
    .cyber-products {
        padding: 60px 5%;
    }
    .cyber-products__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .cyber-product {
        padding: 30px 20px;
    }
}





/* ================= CYBER-BENTO PRODUCTS SHOWCASE (WHITE THEME) ================= */

.cyber-products {
    background: #ffffff;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.cyber-products::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 90, 47, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.cyber-grid-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 30px;
}

/* Header Module */
.cyber-header-module {
    grid-column: span 2;
    padding: 20px 40px;
}

.glitch-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 5px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.cyber-header-module h2 {
    font-size: 54px;
    color: var(--dark);
    line-height: 1.05;
    margin-bottom: 25px;
    font-weight: 800;
}

.cyber-header-module h2 span {
    background: linear-gradient(135deg, var(--accent), #ff8c69);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cyber-header-module p {
    color: #64748b;
    font-size: 19px;
    max-width: 450px;
    line-height: 1.6;
}

/* Module Background Image */
.module-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
   
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease, filter 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.cyber-module:hover .module-bg {
    transform: scale(1.1);
    opacity: 0.25;
    filter: grayscale(0%);
}

.module-content {
    position: relative;
    z-index: 2;
}

/* Premium White Module Style */
.cyber-module {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 40px;
    padding: 15px 45px;
    position: relative;
    transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.4s ease;
    transform: perspective(1200px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.cyber-module:hover {
    border-color: rgba(255, 90, 47, 0.15);
    background: #ffffff;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.08);
}

/* Border Glow Animation (Refined for White) */
.module-border {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cyber-module:hover .module-border {
    opacity: 0.6;
    animation: borderRun 4s linear infinite;
}

/* Module Content */
.module-number {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #cbd5e1;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.module-icon {
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 45px;
    transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.03);
}

.cyber-module:hover .module-icon {
    transform: scale(1.15) rotate(8deg);
    background: var(--accent);
    color: #fff;
    box-shadow: 0 15px 30px rgba(255, 90, 47, 0.2);
}

.cyber-module h3 {
    font-size: 30px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 800;
}

.cyber-module p {
    color: #262729;
    font-size: 15px;
    margin-bottom: 45px;
    line-height: 1.6;
}

.module-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.module-footer i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cyber-module:hover .module-footer i {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(244,91,43,0.4);
}

.cyber-module:hover .module-footer {
    color: var(--accent);
}

/* Light Overlay Info */
.module-overlay-info {
    position: absolute;
    inset: 0;
    background: #ffffff;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(105%);
    transition: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 5;
    border-radius: 40px;
}

.cyber-module:hover .module-overlay-info {
    transform: translateY(0);
}

.module-overlay-info h4 {
    color: var(--dark);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.module-overlay-info h4::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--accent);
}

.module-overlay-info ul {
    list-style: none;
}

.module-overlay-info li {
    color: #475569;
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.module-overlay-info li i {
    color: var(--accent);
    font-size: 12px;
}

/* Info Module Tweaks */
.hrms-module {
    grid-column: span 2;
}

.insurance-module {
    grid-column: span 2;
}

.lms-module {
    grid-column: span 1;
}

.info-module {
    grid-column: span 4;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 40px;
    background: #f8fafc !important;
    border: none !important;
}

.stats-mini {
    display: flex;
    gap: 40px;
    flex-shrink: 0;
}

.s-item {
    font-size: 12px;
    color: #64748b;
}

.s-item span {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
}

.info-module p {
    margin: 0;
    font-size: 15px;
    color: #64748b;
}

.info-module span {
    color: var(--accent);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .cyber-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hrms-module,
    .insurance-module,
    .lms-module,
    .info-module,
    .cyber-header-module {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .cyber-header-module h2 {
        font-size: 32px;
    }

    .info-module {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Explore More Card */
.explore-module {
    grid-column: span 1;
    background: #162a44;
    border: none !important;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.explore-gradient {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}



.explore-module .module-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.explore-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.explore-icon i {
    font-size: 36px;
    color: white;
}



.explore-module h3 {
    color: white !important;
    margin-bottom: 12px;
}

.explore-module p {
    color: rgba(255,255,255,0.85) !important;
    margin-bottom: 25px;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #11223b;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    gap: 14px;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    background: #F45B2B;
    color: white;
}

.explore-btn i {
    transition: transform 0.3s ease;
}

.explore-btn:hover i {
    transform: translateX(5px);
}


/* Make modules clickable */
.cyber-module {
    text-decoration: none;
    display: block;
    color: inherit;
}

.module-arrow {
    transition: transform 0.3s ease;
}

.cyber-module:hover .module-arrow {
    transform: translateX(5px);
    animation: arrowBounce 0.6s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(5px); }
    50% { transform: translateX(10px); }
}

.cyber-module:hover .module-footer {
    color: var(--accent);
}


/* Arrow on right side of cards */
.hrms-module::after,
.insurance-module::after,
.lms-module::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) translateX(50px);
    font-size: 24px;
    color: var(--accent);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10;
}

.hrms-module:hover::after,
.insurance-module:hover::after,
.lms-module:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    animation: arrowSlide 1s ease-in-out infinite;
}

@keyframes arrowSlide {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(10px); }
}


/* Arrow button on bottom right */
.hrms-module .module-footer::after,
.insurance-module .module-footer::after,
.lms-module .module-footer::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(244,91,43,0.4);
}

.hrms-module:hover .module-footer::after,
.insurance-module:hover .module-footer::after,
.lms-module:hover .module-footer::after {
    opacity: 1;
    transform: scale(1);
}


/* Define accent color variable */
:root {
    --accent: #F45B2B;
    --dark: #07193B;
}



.contact-section {
  padding: 100px 5%;

  position: relative;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.532) 0%,
      rgba(255, 255, 255, 0.481) 40%,
      rgba(255, 255, 255, 0.463) 70%,
      #ffffff8c 100%
    ),
    url("/img/contactbg.jpg") center / cover no-repeat !important;
}
.contact-container{
max-width:1400px;
margin:0 auto;
display:grid;
grid-template-columns: 1fr 1fr;
gap:60px;
align-items:start;
}
.contact-tag {
  background: linear-gradient(135deg, #F45B2B, #ff7a50);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}
.contact-title {
  font-size: 3rem;
  font-weight: 800;
  color: #07193B;
  margin-bottom: 20px;
  line-height: 1.2;
}
.contact-title span {
  background: linear-gradient(135deg, #F45B2B, #ff7a50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-desc {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}
.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.contact-info-item i {
  font-size: 1.5rem;
  color: #F45B2B;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244,91,43,0.1);
  border-radius: 12px;
}
.contact-info-item span {
  display: block;
  font-size: 1rem;
  color: #07193B;
  margin-bottom: 5px;
}
.contact-info-item strong {
  color: #666;
  font-size: 18px;
}
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 1px solid rgba(244,91,43,0.1);
}
.form-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-bottom:20px;
}
.form-row-2{
display:grid;
grid-template-columns:1fr;
gap:20px;
margin-bottom:20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #F45B2B;
  box-shadow: 0 0 0 3px rgba(244,91,43,0.1);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: #07193B;
  margin-bottom: 12px;
}
.checkbox-group{
display:grid;
grid-template-columns:1fr 1fr;
gap:12px;

}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  color: #666;
  font-size: 0.9rem;
}
.contact-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #F45B2B, #ff7a50);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(244,91,43,0.4);
}
.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(244,91,43,0.5);
}

.checkbox-group label {
  padding: 12px 16px !important;
  background: #f8f9fa !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  border: 2px solid transparent !important;
}
.checkbox-group label:hover {
  background: rgba(244,91,43,0.05) !important;
  border-color: rgba(244,91,43,0.2) !important;
}
.checkbox-group input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  cursor: pointer !important;
  accent-color: #F45B2B !important;
}
.checkbox-group label:has(input:checked) {
  background: rgba(244,91,43,0.1) !important;
  border-color: #F45B2B !important;
  color: #07193B !important;
  font-weight: 500 !important;
}


.contact-title, .contact-desc, .contact-info-item strong, .contact-info-item span {
  color: #07193B !important;
}
.contact-desc, .contact-info-item span {
  color: #666 !important;
}
.contact-tag {
  background: linear-gradient(135deg, #F45B2B, #ff7a50) !important;
  color: white !important;
}

.contact-stats{
display:flex;
gap:40px;
margin-top:30px;
}

.stat-item h3{
font-size:28px;
color:#F45B2B;
margin-bottom:5px;
}

.stat-item p{
font-size:14px;
color:#666;
}
.contact-social{
margin-top:30px;
}

.social-icons{
display:flex;
gap:15px;
margin-top:10px;
}

.social-icons a{
width:40px;
height:40px;
background:#f8f9fa;
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
color:#07193B;
transition:0.3s;
}

.social-icons a:hover{
background:#F45B2B;
color:white;
}

/* ===============================
   CONTACT SECTION – MOBILE VIEW
================================== */
@media (max-width: 768px) {

  .contact-section {
    padding: 60px 20px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Left Content */
  .contact-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .contact-desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .contact-info-item {
    gap: 15px;
    margin-bottom: 20px;
  }

  .contact-info-item i {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  /* Form Card */
  .contact-form {
    padding: 25px;
    border-radius: 18px;
  }

.form-row{
display:grid;
grid-template-columns:1fr;
gap:20px;
margin-bottom:20px;
}

  .contact-form input,
  .contact-form textarea {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  /* Checkbox */
  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .checkbox-group label {
    font-size: 0.85rem;
    padding: 10px 14px !important;
  }

  /* Button */
  .contact-submit {
    padding: 14px;
    font-size: 0.95rem;
  }

}



.services-showcase {
  padding: 100px 5%;
  background: linear-gradient(135deg, #f8f9fa, #fff);
  text-align: center;
}
.services-showcase-header {
  margin-bottom: 60px;
}
.showcase-tag {
  background: linear-gradient(135deg, #F45B2B, #ff7a50);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
}
.showcase-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #07193B;
}
.services-showcase-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}
.services-left, .services-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
  transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(244,91,43,0.15);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.service-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #07193B;
  margin-bottom: 8px;
}
.service-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}
.services-center {
  position: relative;
}
.services-image {
  width: 600px;
  height: auto;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(244,91,43,0.2));
}
.services-showcase-footer {
  margin-top: 60px;
}
.showcase-btn {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #F45B2B, #ff7a50);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(244,91,43,0.4);
  transition: all 0.3s;
}
.showcase-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(244,91,43,0.5);
}

.services-left, .services-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.services-left .service-card:nth-child(1) {
  margin-right: -20px;
}
.services-left .service-card:nth-child(2) {
  margin-right: 40px;
}
.services-left .service-card:nth-child(3) {
  margin-right: -20px;
}
.services-right .service-card:nth-child(1) {
  margin-left: -20px;
}
.services-right .service-card:nth-child(2) {
  margin-left: 40px;
}
.services-right .service-card:nth-child(3) {
  margin-left: -20px;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(244,91,43,0.15);
}

.services-center:hover ~ .services-left .service-card,
.services-center:hover ~ .services-right .service-card {
  animation: cardPulse 0.6s ease-in-out;
}
.services-showcase-container:hover .services-left .service-card,
.services-showcase-container:hover .services-right .service-card {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(244,91,43,0.25);
}
.services-image:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 25px 50px rgba(244,91,43,0.4));
}
@keyframes cardPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.services-center:hover ~ .services-left .service-card:nth-child(1),
.services-center:hover ~ .services-right .service-card:nth-child(1) {
  animation-delay: 0s;
}
.services-center:hover ~ .services-left .service-card:nth-child(2),
.services-center:hover ~ .services-right .service-card:nth-child(2) {
  animation-delay: 0.1s;
}
.services-center:hover ~ .services-left .service-card:nth-child(3),
.services-center:hover ~ .services-right .service-card:nth-child(3) {
  animation-delay: 0.2s;
}

.service-card:hover {
  transform: translateY(-8px) rotate(2deg) !important;
  box-shadow: 0 15px 40px rgba(244,91,43,0.3) !important;
}
.service-card:hover .service-icon {
  transform: scale(1.2) rotate(360deg);
  transition: transform 0.6s ease;
}
.service-card:hover .service-content h3 {
  color: #F45B2B;
  transition: color 0.3s ease;
}
.services-left .service-card:nth-child(odd):hover {
  animation: bounceLeft 0.6s ease;
}
.services-left .service-card:nth-child(even):hover {
  animation: bounceRight 0.6s ease;
}
.services-right .service-card:nth-child(odd):hover {
  animation: bounceRight 0.6s ease;
}
.services-right .service-card:nth-child(even):hover {
  animation: bounceLeft 0.6s ease;
}
@keyframes bounceLeft {
  0%, 100% { transform: translateX(0) translateY(-8px); }
  50% { transform: translateX(-10px) translateY(-8px); }
}
@keyframes bounceRight {
  0%, 100% { transform: translateX(0) translateY(-8px); }
  50% { transform: translateX(10px) translateY(-8px); }
}
.services-image {
  pointer-events: none;
}

@media (max-width: 768px) {
  .services-showcase {
    padding: 60px 5%;
  }
  .services-showcase-header {
    margin-bottom: 40px;
  }
  .showcase-title {
    font-size: 1.8rem;
  }
  .services-showcase-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .services-left, .services-right {
    order: 2;
  }
  .services-center {
    order: 1;
  }
  .services-image {
    width: 100%;
    max-width: 300px;
  }
  .services-left .service-card:nth-child(1),
  .services-left .service-card:nth-child(2),
  .services-left .service-card:nth-child(3),
  .services-right .service-card:nth-child(1),
  .services-right .service-card:nth-child(2),
  .services-right .service-card:nth-child(3) {
    margin-left: 0;
    margin-right: 0;
  }
  .service-card {
    flex-direction: row;
  }
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .service-content h3 {
    font-size: 1rem;
  }
  .service-content p {
    font-size: 0.85rem;
  }
}

/* ============================================================
   TECLA ABOUT — WHITE / ORANGE / NAVY THEME
   Replace your existing about CSS with this
============================================================ */

/* ---- Tokens ---- */
:root {
  --tcx-fire:    #F45B2B;
  --tcx-fire2:   #ff7a50;
  --tcx-navy:    #07193B;
  --tcx-navy2:   #0d2554;
  --tcx-white:   #ffffff;
  --tcx-bg:      #f8f9fc;
  --tcx-panel:   #ffffff;
  --tcx-border:  rgba(7,25,59,0.1);
  --tcx-muted:   rgba(7,25,59,0.55);
  --tcx-r:       20px;
  --tcx-font-h:  'Sora', sans-serif;
  --tcx-font-b:  'Sora', sans-serif;
}

/* ---- Section ---- */
.tcx-about {
  position: relative;
  padding: 140px 5%;
  background: var(--tcx-bg);
  overflow: hidden;
  font-family: 'Sora', sans-serif;
}

/* ---- BG Grid (subtle navy) ---- */
.tcx-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(7,25,59,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,25,59,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}

/* ---- Orbs ---- */
.tcx-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.tcx-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244,91,43,0.12), transparent 70%);
  top: -10%; left: -10%;
  animation: tcx-drift 12s ease-in-out infinite alternate;
}
.tcx-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(7,25,59,0.1), transparent 70%);
  bottom: -5%; right: -5%;
  animation: tcx-drift 16s ease-in-out infinite alternate-reverse;
}
.tcx-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(244,91,43,0.07), transparent 70%);
  top: 50%; left: 50%;
  animation: tcx-drift 9s ease-in-out infinite alternate;
}
@keyframes tcx-drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(40px,30px) scale(1.08); }
}

/* ---- Scan Line (orange on white) ---- */
.tcx-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,91,43,0.25), transparent);
  animation: tcx-scan 8s linear infinite;
  pointer-events: none;
}
@keyframes tcx-scan {
  0%   { top: -5%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 105%; opacity: 0; }
}

/* ---- Container ---- */
.tcx-container {
  position: relative; z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* ============================================
   LEFT
============================================ */

[data-tcx-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1);
}
[data-tcx-reveal].tcx-visible { opacity: 1; transform: none; }
.tcx-right[data-tcx-reveal] { transition-delay: 0.15s; }

/* Eyebrow */
.tcx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.tcx-eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--tcx-fire);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--tcx-fire);
  animation: tcx-pulse 2s ease-in-out infinite;
}
@keyframes tcx-pulse {
  0%,100% { box-shadow: 0 0 6px var(--tcx-fire); }
  50%      { box-shadow: 0 0 18px var(--tcx-fire), 0 0 30px rgba(244,91,43,0.3); }
}
.tcx-eyebrow-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--tcx-fire);
}
.tcx-eyebrow-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--tcx-fire), transparent);
}

/* Title */
.tcx-title {
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--tcx-navy);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.tcx-title-accent {
  display: block;
  background: linear-gradient(135deg, var(--tcx-fire) 0%, var(--tcx-fire2) 60%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tcx-title-mask { display: inline-block; margin-right: 12px; }

/* Desc */
.tcx-desc {
  font-size: 1.05rem;
  color: var(--tcx-muted);
  line-height: 1.85;
  margin-bottom: 50px;
  max-width: 460px;
}
.tcx-desc em { color: var(--tcx-navy); font-style: normal; font-weight: 600; }

/* ---- Stats ---- */
.tcx-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 52px;
}
.tcx-stat { cursor: default; }
.tcx-stat-inner {
  position: relative;
  padding: 24px 16px 20px;
  background: var(--tcx-panel);
  border-radius: var(--tcx-r);
  border: 1px solid var(--tcx-border);
  box-shadow: 0 4px 20px rgba(7,25,59,0.07);
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), border-color 0.3s, box-shadow 0.4s;
}
.tcx-stat-inner:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(244,91,43,0.4);
  box-shadow: 0 24px 48px rgba(7,25,59,0.12), 0 0 40px rgba(244,91,43,0.08);
}
.tcx-stat-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(244,91,43,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.tcx-stat-inner:hover .tcx-stat-glow { opacity: 1; }

.tcx-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--tcx-fire);
  line-height: 1;
  margin-bottom: 8px;
}
.tcx-stat-suf { font-size: 1.4rem; }
.tcx-stat-label {
  font-size: 0.78rem;
  color: var(--tcx-muted);
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}
.tcx-stat-bar {
  height: 2px;
  background: rgba(7,25,59,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.tcx-stat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--tcx-fire), var(--tcx-fire2));
  border-radius: 2px;
  width: 0;
  transition: width 1.4s cubic-bezier(.16,1,.3,1);
}

/* ---- Button ---- */
.tcx-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 44px;
  background: linear-gradient(135deg, var(--tcx-navy), var(--tcx-navy2));
  color: var(--tcx-white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(7,25,59,0.28);
  transition: transform 0.35s cubic-bezier(.16,1,.3,1), box-shadow 0.35s, background 0.3s;
}
.tcx-btn:hover {
  background: linear-gradient(135deg, var(--tcx-fire), var(--tcx-fire2));
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 28px 64px rgba(244,91,43,0.38);
}
.tcx-btn-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.tcx-btn:hover .tcx-btn-icon { transform: translateX(5px); }
.tcx-btn-ripple {
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.tcx-btn:hover .tcx-btn-ripple { opacity: 1; }

/* ============================================
   RIGHT
============================================ */
.tcx-img-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Corner decorators — navy */
.tcx-corner {
  position: absolute;
  width: 28px; height: 28px;
  z-index: 5;
  pointer-events: none;
}
.tcx-c-tl { top: -8px; left: -8px; border-top: 2px solid var(--tcx-navy); border-left: 2px solid var(--tcx-navy); border-radius: 4px 0 0 0; }
.tcx-c-tr { top: -8px; right: -8px; border-top: 2px solid var(--tcx-navy); border-right: 2px solid var(--tcx-navy); border-radius: 0 4px 0 0; }
.tcx-c-bl { bottom: -8px; left: -8px; border-bottom: 2px solid var(--tcx-navy); border-left: 2px solid var(--tcx-navy); border-radius: 0 0 0 4px; }
.tcx-c-br { bottom: -8px; right: -8px; border-bottom: 2px solid var(--tcx-navy); border-right: 2px solid var(--tcx-navy); border-radius: 0 0 4px 0; }

/* Image */
.tcx-img-clip {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(7,25,59,0.18), 0 0 0 1px var(--tcx-border);
}
.tcx-img {
  width: 100%;
  display: block;
  transition: transform 0.7s cubic-bezier(.16,1,.3,1);
}
.tcx-img-clip:hover .tcx-img { transform: scale(1.04); }

.tcx-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(244,91,43,0.06) 0%, transparent 50%, rgba(7,25,59,0.15) 100%);
  pointer-events: none;
}
.tcx-img-shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}

/* Placeholder */
.tcx-img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8edf5, #d0d8ea);
  border-radius: 20px;
}

/* Badge — navy bg */
.tcx-badge {
  position: absolute;
  bottom: -18px;
  right: 36px;
  background: var(--tcx-navy);
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(7,25,59,0.3), 0 0 0 1px rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: tcx-float 4s ease-in-out infinite;
}
@keyframes tcx-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.tcx-badge-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--tcx-fire), var(--tcx-fire2));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(244,91,43,0.4);
}
.tcx-badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 2px;
}
.tcx-badge-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}
.tcx-badge-ping {
  position: absolute;
  top: 14px; right: 14px;
  width: 9px; height: 9px;
  background: #22c55e;
  border-radius: 50%;
  animation: tcx-ping 2s ease-out infinite;
}
@keyframes tcx-ping {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  100% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
}

/* Micro card — white bg with navy text */
.tcx-micro-card {
  position: absolute;
  top: 24px; left: -28px;
  background: #ffffff;
  border: 1px solid rgba(7,25,59,0.1);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 20px 50px rgba(7,25,59,0.14);
  animation: tcx-float2 5s ease-in-out infinite;
}
@keyframes tcx-float2 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.tcx-micro-dots { display: flex; gap: 5px; margin-bottom: 10px; }
.tcx-micro-dots span { width: 7px; height: 7px; border-radius: 50%; }
.tcx-micro-dots span:nth-child(1) { background: #ff5f57; }
.tcx-micro-dots span:nth-child(2) { background: #febc2e; }
.tcx-micro-dots span:nth-child(3) { background: #28c840; }
.tcx-micro-label {
  font-size: 0.72rem;
  color: var(--tcx-muted);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.tcx-micro-score {
  position: relative;
  display: flex; align-items: center; gap: 10px;
}
.tcx-micro-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--tcx-navy);
  line-height: 1;
}
.tcx-score-ring {
  width: 44px; height: 44px;
  transform: rotate(-90deg);
}
.tcx-ring-bg {
  fill: none;
  stroke: rgba(7,25,59,0.08);
  stroke-width: 3.5;
}
.tcx-ring-fill {
  fill: none;
  stroke: var(--tcx-fire);
  stroke-width: 3.5;
  stroke-linecap: round;
  transition: stroke-dasharray 1.5s cubic-bezier(.16,1,.3,1);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .tcx-container { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .tcx-eyebrow, .tcx-desc { margin-left: auto; margin-right: auto; }
  .tcx-desc { max-width: 100%; }
  .tcx-stats { grid-template-columns: repeat(4,1fr); }
  .tcx-right { display: flex; justify-content: center; }
  .tcx-img-frame { max-width: 500px; }
}
@media (max-width: 720px) {
  .tcx-about { padding: 100px 5%; }
  .tcx-stats { grid-template-columns: repeat(2,1fr); }
  .tcx-micro-card { left: 0; }
}
@media (max-width: 480px) {
  .tcx-stats { grid-template-columns: 1fr; }
  .tcx-badge { right: 16px; }
}
/* ===============================
   ABOUT — Vertical Image Strips
=================================*/

.tcx-strip-container {
  display: flex;
  gap: 14px;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 40px 80px rgba(7,25,59,0.18),
              0 0 0 1px var(--tcx-border);
  position: relative;
}

.tcx-strip {
  flex: 1;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  transition:
    flex 0.6s cubic-bezier(.22,.61,.36,1),
    transform 0.6s cubic-bezier(.22,.61,.36,1),
    filter 0.4s ease;
  cursor: pointer;
}

/* Hover Expansion */
.tcx-strip-container:hover .tcx-strip {
  filter: brightness(0.7);
}

.tcx-strip:hover {
  flex: 3;
  filter: brightness(1);
  transform: translateY(-8px);
  z-index: 2;
}



/* =====================================================
   TMX TEAM STACK — ENHANCED BG
===================================================== */

.tmx-stack-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background:
    radial-gradient(circle at 50% 30%, rgba(244,91,43,0.08), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.04), transparent 60%),
    linear-gradient(160deg, #07193B 0%, #0b224e 50%, #07193B 100%);
}



/* ── Diagonal stripes ── */
.tmx-bg-lines {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 38px,
    rgba(255,255,255,0.04) 38px,
    rgba(255,255,255,0.04) 39px
  );
}

/* ── Large ring top-right ── */
.tmx-geo-1 {
  position: absolute;
  width: 460px; height: 460px;
  border: 1.5px solid rgba(244,91,43,0.55);
  border-radius: 50%;
  top: -90px; right: -90px;
  pointer-events: none;
  animation: tmx-spin 40s linear infinite;
}
/* inner ring inside geo-1 */
.tmx-geo-1::after {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px dashed rgba(244,91,43,0.3);
  border-radius: 50%;
}

/* ── Medium ring bottom-left ── */
.tmx-geo-2 {
  position: absolute;
  width: 280px; height: 280px;
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  bottom: 50px; left: 50px;
  pointer-events: none;
  animation: tmx-spin 28s linear infinite reverse;
}
.tmx-geo-2::after {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 50%;
}

/* ── Rotated square top-right area ── */
.tmx-geo-3 {
  position: absolute;
  width: 90px; height: 90px;
  border: 1.5px solid rgba(244,91,43,0.7);
  top: 20%; right: 16%;
  pointer-events: none;
  transform: rotate(22deg);
  animation: tmx-float-sq 8s ease-in-out infinite;
}

/* ── Small square bottom-left ── */
.tmx-geo-4 {
  position: absolute;
  width: 48px; height: 48px;
  border: 1.5px solid rgba(255,255,255,0.35);
  bottom: 26%; left: 14%;
  pointer-events: none;
  transform: rotate(14deg);
  animation: tmx-float-sq 6s ease-in-out infinite reverse;
}

/* ── PLUS marks ── */
.tmx-geo-5 {
  position: absolute;
  width: 28px; height: 28px;
  top: 17%; left: 20%;
  pointer-events: none;
}
.tmx-geo-5::before, .tmx-geo-5::after {
  content: '';
  position: absolute;
  background: #F45B2B;
  border-radius: 2px;
}
.tmx-geo-5::before { width: 3px; height: 100%; left: 50%; transform: translateX(-50%); }
.tmx-geo-5::after  { width: 100%; height: 3px; top: 50%; transform: translateY(-50%); }

.tmx-geo-6 {
  position: absolute;
  width: 22px; height: 22px;
  bottom: 22%; right: 20%;
  pointer-events: none;
}
.tmx-geo-6::before, .tmx-geo-6::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.55);
  border-radius: 2px;
}
.tmx-geo-6::before { width: 3px; height: 100%; left: 50%; transform: translateX(-50%); }
.tmx-geo-6::after  { width: 100%; height: 3px; top: 50%; transform: translateY(-50%); }

/* extra plus marks for more density */
.tmx-geo-7 {
  position: absolute;
  width: 16px; height: 16px;
  top: 60%; left: 8%;
  pointer-events: none;
}
.tmx-geo-7::before, .tmx-geo-7::after {
  content: '';
  position: absolute;
  background: rgba(244,91,43,0.6);
  border-radius: 2px;
}
.tmx-geo-7::before { width: 2px; height: 100%; left: 50%; transform: translateX(-50%); }
.tmx-geo-7::after  { width: 100%; height: 2px; top: 50%; transform: translateY(-50%); }

.tmx-geo-8 {
  position: absolute;
  width: 16px; height: 16px;
  top: 35%; right: 6%;
  pointer-events: none;
}
.tmx-geo-8::before, .tmx-geo-8::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
}
.tmx-geo-8::before { width: 2px; height: 100%; left: 50%; transform: translateX(-50%); }
.tmx-geo-8::after  { width: 100%; height: 2px; top: 50%; transform: translateY(-50%); }

/* ── Tech bracket corners (top-left) ── */
.tmx-bracket {
  position: absolute;
  top: 60px; left: 60px;
  width: 60px; height: 60px;
  pointer-events: none;
  opacity: 0.5;
}
.tmx-bracket::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 24px; height: 24px;
  border-top: 2px solid #F45B2B;
  border-left: 2px solid #F45B2B;
}
.tmx-bracket::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 24px; height: 24px;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  border-right: 2px solid rgba(255,255,255,0.4);
}

/* ── Tech bracket bottom-right ── */
.tmx-bracket-2 {
  position: absolute;
  bottom: 60px; right: 60px;
  width: 60px; height: 60px;
  pointer-events: none;
  opacity: 0.5;
}
.tmx-bracket-2::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 24px; height: 24px;
  border-bottom: 2px solid #F45B2B;
  border-right: 2px solid #F45B2B;
}
.tmx-bracket-2::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 24px; height: 24px;
  border-top: 2px solid rgba(255,255,255,0.4);
  border-left: 2px solid rgba(255,255,255,0.4);
}

/* ── Horizontal tech lines ── */
.tmx-hline {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  pointer-events: none;
}
.tmx-hline-1 {
  top: 30%;
  background: linear-gradient(90deg, transparent 0%, rgba(244,91,43,0.35) 20%, rgba(244,91,43,0.35) 45%, transparent 60%);
}
.tmx-hline-2 {
  bottom: 30%;
  background: linear-gradient(90deg, transparent 40%, rgba(255,255,255,0.12) 60%, rgba(255,255,255,0.12) 80%, transparent 100%);
}

/* ── Vertical accent line left ── */
.tmx-vline {
  position: absolute;
  top: 20%; bottom: 20%;
  width: 1px;
  pointer-events: none;
}
.tmx-vline-1 {
  left: 8%;
  background: linear-gradient(to bottom, transparent, rgba(244,91,43,0.4) 40%, rgba(244,91,43,0.4) 60%, transparent);
}
.tmx-vline-2 {
  right: 8%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15) 40%, rgba(255,255,255,0.15) 60%, transparent);
}

/* ── Orange arc ── */
.tmx-geo-arc {
  position: absolute;
  bottom: -80px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 320px;
  border: 1px solid rgba(244,91,43,0.25);
  border-radius: 50%;
  pointer-events: none;
}



/* ── Spotlight ── */
.tmx-spotlight {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(50px);
  pointer-events: none;
}

/* ── Noise ── */
.tmx-noise {
  position: absolute; inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  pointer-events: none;
}

/* ── Bottom fade ── */
.tmx-stack-section::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(7,25,59,0.5), transparent);
  pointer-events: none;
  z-index: 1;
}

@keyframes tmx-spin {
  to { transform: rotate(360deg); }
}
@keyframes tmx-float-sq {
  0%,100% { transform: rotate(22deg) translateY(0); }
  50%      { transform: rotate(22deg) translateY(-14px); }
}

/* ===============================
   HEADER
================================ */
.tmx-stack-title-wrap {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
.tmx-stack-title {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  color: #ffffff;
  margin-top: 16px;
  letter-spacing: -0.5px;
}

.tmx-stack-tag {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.8;
}
.tmx-stack-title span {
  background: linear-gradient(135deg, #F45B2B, #ff7a50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===============================
   STACK CONTAINER
================================ */
.tmx-stack-list {
  position: relative;
  transform-style: preserve-3d;
  perspective: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transition: 500ms;
  z-index: 2;
  list-style: none;
  padding: 0; margin: 0;
}
.tmx-stack-list:hover { gap: 20px; }

/* ===============================
   STACK CARDS
================================ */
.tmx-stack-item {
  position: relative;
  width: 520px;
  padding: 26px 30px;
  background: linear-gradient(145deg, #ffffff, #f4f6fa);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 18px;

  box-shadow:
    0 40px 90px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.4);

  transition: 500ms cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--i) * 60ms);
}
.tmx-stack-item:hover {
  transform: translateZ(0) scale(1.03);
  box-shadow:
    0 50px 120px rgba(0,0,0,0.45),
    0 0 40px rgba(244,91,43,0.15);
}
.tmx-stack-item:nth-child(1) { transform: translateZ(-75px) translateY(20px);  opacity: .6; filter: blur(4px); }
.tmx-stack-item:nth-child(2) { opacity: .8; filter: blur(2px); }
.tmx-stack-item:nth-child(3) { transform: translateZ(65px) translateY(-30px); }
.tmx-stack-item:nth-child(4) { transform: translateZ(125px) translateY(-68px); filter: blur(1px); }
.tmx-stack-list:hover .tmx-stack-item { opacity: 1; filter: blur(0); transform: translateZ(0) translateY(0); }

.tmx-stack-item img { max-width: 64px; border-radius: 8px; }

.tmx-stack-content { width: 100%; }
.tmx-stack-content h3 {
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1;
  color: #07193B;
  font-size: 18px;
  font-family: 'Sora', sans-serif;
}
.tmx-stack-content p {
  opacity: .6;
  line-height: 1;
  color: #6b7280;
  font-size: 14px;
}

@media (max-width: 600px) {
  .tmx-stack-item { width: 100%; }
  .tmx-geo-1 { width: 260px; height: 260px; }
  .tmx-geo-arc { width: 500px; }
}

.tmx-stack-item {
  width: 520px;
  padding: 24px;
}

.tmx-stack-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: #07193B;
}

.tmx-stack-metric {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #F45B2B;
  letter-spacing: 0.3px;
}

.tmx-stack-content h3 i {
  color: #F45B2B;
}


/* Mobile Navigation Styles */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    box-shadow: 2px 0 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 2rem 0;
  }

  .mobile-nav.active {
    left: 0;
  }

  .mobile-nav::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ff5a2f, #ff8a6f);
  }

  .mobile-nav a {
    display: block;
    padding: 1rem 2rem;
    color: #13273e;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
  }

  .mobile-nav a:hover {
    background: rgba(255,90,47,0.1);
    color: #ff5a2f;
    padding-left: 2.5rem;
  }

  .mobile-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #ff5a2f;
    transform: scaleY(0);
    transition: transform 0.3s ease;
  }

  .mobile-nav a:hover::before {
    transform: scaleY(1);
  }

  .mobile-dropdown {
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(255,90,47,0.05);
  }

  .mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
  }

  .mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
  }

  .mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255,90,47,0.02);
  }

  .mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 400px;
  }

  .mobile-dropdown-menu a {
    padding-left: 3rem;
    font-size: 0.9rem;
    color: #666;
  }

  .mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 3rem;
    background: rgba(255,90,47,0.03);
  }

  .mobile-submenu-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255,90,47,0.01);
  }

  .mobile-submenu.active .mobile-submenu-items {
    max-height: 200px;
  }

  .mobile-submenu-items a {
    padding-left: 4rem;
    font-size: 0.85rem;
    color: #888;
  }

  .mobile-cta {
    margin: 1rem 2rem;
    background: linear-gradient(135deg, #ff5a2f, #ff8a6f) !important;
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255,90,47,0.3);
    border-bottom: none;
  }

  .mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,90,47,0.4);
    padding-left: 2rem;
  }

  /* Mobile Overlay */
  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  @media (max-width: 768px) {
    .mobile-nav {
      display: block;
    }
  }

  /* WhatsApp Floating Button */
  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
  }

  .whatsapp-float i {
    margin-top: 2px;
  }

  @media (max-width: 768px) {
    .whatsapp-float {
      width: 50px;
      height: 50px;
      bottom: 20px;
      right: 20px;
      font-size: 24px;
    }
  }
    .footer-section a {
  text-decoration: none !important;
  color:black !important;
}
.faq-main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3rem;
  text-align: center;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  border: 2px solid var(--border-subtle);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-accordion-item:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(255, 90, 47, 0.1);
}

.faq-accordion-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 2rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s;
}

.faq-accordion-question span {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-accordion-question span i {
  color: var(--accent);
  font-size: 1rem;
}

.faq-icon {
  color: var(--accent);
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-accordion-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-accordion-item.active .faq-accordion-answer {
  max-height: 500px;
  padding: 0 2rem 1.8rem 2rem;
}

.faq-accordion-answer p {
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
  padding-left: 2.5rem;
}

.faq-accordion-item.active {
  background: linear-gradient(135deg, rgba(255, 90, 47, 0.03), white);
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .faq-accordion-question {
    padding: 1.5rem;
  }
  
  .faq-accordion-question span {
    font-size: 1rem;
  }
  
  .faq-accordion-answer p {
    font-size: 0.95rem;
    padding-left: 0;
  }
  
  .faq-accordion-item.active .faq-accordion-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}
/* ============================================
   MOBILE RESPONSIVE STYLES (Up to 768px)
   ============================================ */

@media (max-width: 768px) {
  /* Topbar */
  .topbar {
    flex-direction: column;
    padding: 0.5rem 3%;
    gap: 8px;
    text-align: center;
  }

  .topbar-center {
    display: none;
  }

  .topbar-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  /* Header */
  .tecla-header {
    padding: 0.6rem 3%;
  }

  .logo img {
    height: 45px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Hero Section */
  .hero-elite {
    min-height: auto;
    padding: 2rem 5%;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-left h1 {
    font-size: 2rem;
  }

  .hero-left p {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }

  .hero-right {
    min-height: 250px;
  }

  .hero-floating-image {
    max-width: 280px;
  }

  .hero-meta-footer {
    position: relative;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-top: 30px;
    padding-top: 1rem;
  }

  /* Services Elite White */
  .services-elite-white {
    padding: 60px 5%;
  }

  .services-header h2 {
    font-size: 1.8rem;
  }

  .tm-ig__list {
    gap: 1rem;
  }

  .tm-ig__item {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .tm-ig__content {
    margin: 6em 1.5em 1em 5em;
  }

  .tm-ig__content h2 {
    font-size: 20px;
  }

  .tm-ig__content p {
    font-size: 14px;
  }

  /* Floating Elements Hide */
  .sew-pill,
  .sew-badge,
  .sew-ring,
  .sew-dots,
  .sew-spark,
  .sew-line,
  .parallax-shape,
  .parallax-shape2,
  .orb,
  .orb2 {
    display: none;
  }

  /* Tecla About Section */
  .tcx-about {
    padding: 60px 5%;
  }

  .tcx-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tcx-title {
    font-size: 2rem;
  }

  .tcx-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .tcx-stat-number {
    font-size: 1.5rem;
  }

  .tcx-stat-inner {
    padding: 16px 10px;
  }

  .tcx-desc {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .tcx-btn {
    padding: 14px 32px;
  }

  .tcx-strip-container {
    height: 300px;
  }

  .tcx-badge {
    right: 16px;
    padding: 12px 16px;
  }

  .tcx-micro-card {
    left: 16px;
    padding: 12px 14px;
  }

  /* Why Choose Section */
  .tm-svc {
    padding: 40px 5%;
  }

  .tm-svc__head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .tm-svc__title {
    font-size: 2rem;
  }

  .tm-svc__cards {
    grid-template-columns: 1fr;
  }

  .tm-svc__card {
    grid-column: 1 / 2 !important;
    padding: 30px 20px;
    border-radius: 50px 10px 50px 10px;
  }

  .tm-svc__card--wide,
  .tm-svc__card--mid,
  .tm-svc__card--tall,
  .tm-svc__card--slim,
  .tm-svc__card--stat {
    grid-column: 1 / 2;
  }

  .tm-svc__strip {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .tm-svc__stats {
    flex-wrap: wrap;
    gap: 15px;
  }

  .tm-svc__stat {
    flex: 1 1 calc(50% - 15px);
  }

  .tm-svc__stat strong {
    font-size: 1.2rem;
  }

  /* Cyber Products Section */
  .cyber-products {
    padding: 60px 5%;
  }

  .cyber-grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cyber-header-module,
  .hrms-module,
  .insurance-module,
  .lms-module,
  .info-module,
  .explore-module {
    grid-column: 1 / 2;
  }

  .cyber-header-module {
    padding: 20px;
  }

  .cyber-header-module h2 {
    font-size: 28px;
  }

  .cyber-module {
    padding: 30px 20px;
  }

  .cyber-module h3 {
    font-size: 24px;
  }

  .module-overlay-info {
    padding: 30px 20px;
  }

  .info-module {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .stats-mini {
    flex-wrap: wrap;
    gap: 20px;
  }

  /* Team Stack Section */
  .tmx-stack-section {
    padding: 60px 5%;
    min-height: auto;
  }

  .tmx-stack-title-wrap {
    margin-bottom: 40px;
  }

  .tmx-stack-title {
    font-size: 28px;
  }

  .tmx-stack-list {
    width: 100%;
  }

  .tmx-stack-item {
    width: 100%;
    padding: 20px;
  }

  .tmx-stack-item:nth-child(1),
  .tmx-stack-item:nth-child(2),
  .tmx-stack-item:nth-child(3),
  .tmx-stack-item:nth-child(4) {
    transform: translateZ(0) translateY(0);
    opacity: 1;
    filter: blur(0);
  }

  /* Services Showcase */
  .services-showcase {
    padding: 60px 5%;
  }

  .showcase-title {
    font-size: 1.8rem;
  }

  .services-showcase-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-left,
  .services-right {
    order: 2;
  }

  .services-center {
    order: 1;
  }

  .services-image {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .services-left .service-card,
  .services-right .service-card {
    margin-left: 0;
    margin-right: 0;
  }

  .service-card {
    padding: 18px;
    gap: 15px;
  }

  .service-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .service-content h3 {
    font-size: 1rem;
  }

  .service-content p {
    font-size: 0.85rem;
  }

  /* Contact Section */
  .contact-section {
    padding: 60px 5%;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-desc {
    font-size: 0.95rem;
  }

  .contact-info-item {
    gap: 15px;
    margin-bottom: 20px;
  }

  .contact-info-item i {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .contact-info-item strong {
    font-size: 15px;
  }

  .contact-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-item {
    flex: 1 1 calc(50% - 20px);
  }

  .stat-item h3 {
    font-size: 22px;
  }

  .contact-form {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .checkbox-group label {
    font-size: 0.85rem;
    padding: 10px 14px !important;
  }

  .contact-submit {
    padding: 14px;
    font-size: 0.95rem;
  }

  /* Footer */
  .tecla-footer {
    margin: 0 15px;
    padding: 40px 20px 20px;
    border-radius: 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom a {
    margin: 0 10px;
  }

  .brand-logo {
    max-width: 120px;
  }

  .social-links {
    justify-content: center;
  }

  .map-container {
    width: 100%;
  }

  .map-container iframe {
    height: 150px;
  }
}

/* Small Mobile Devices (up to 480px) */
@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 1.8rem;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .tcx-stats {
    grid-template-columns: 1fr;
  }

  .tm-svc__stats {
    flex-direction: column;
  }

  .tm-svc__stat {
    width: 100%;
  }

  .contact-stats {
    flex-direction: column;
    gap: 15px;
  }

  .stat-item {
    width: 100%;
  }

  .stats-mini {
    flex-direction: column;
    gap: 10px;
  }

  .s-item {
    width: 100%;
  }

  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 22px;
    bottom: 15px;
    right: 15px;
  }

  .tmx-stack-item {
    padding: 15px;
  }

  .tmx-stack-content h3 {
    font-size: 15px;
  }

  .tmx-stack-metric {
    font-size: 12px;
  }

  /* Mobile Navigation Adjustments */
  .mobile-nav {
    width: 280px;
  }

  .mobile-nav a {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .mobile-dropdown-menu a {
    padding-left: 2.5rem;
  }

  .mobile-submenu-items a {
    padding-left: 3.5rem;
  }

  .mobile-cta {
    margin: 0.8rem 1.5rem;
    padding: 0.8rem 1.5rem;
  }

  /* Floating Elements Hide for Small Devices */
  .tcx-badge,
  .tcx-micro-card {
    display: none;
  }
}

/* Tablet Devices (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-container {
    gap: 2rem;
  }

  .hero-left h1 {
    font-size: 3rem;
  }

  .tm-ig__item {
    flex: 0 0 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }

  .cyber-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .hrms-module,
  .insurance-module,
  .lms-module,
  .info-module,
  .cyber-header-module {
    grid-column: span 2;
  }

  .tmx-stack-item {
    width: 450px;
  }

  .services-showcase-container {
    gap: 20px;
  }

  .services-image {
    max-width: 350px;
  }

  .contact-container {
    gap: 30px;
  }

  .contact-title {
    font-size: 2.5rem;
  }
}

/* Fix for very large screens */
@media (min-width: 1400px) {
  .hero-container,
  .tcx-container,
  .tm-svc__inner,
  .cyber-grid-container,
  .contact-container,
  .footer-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Ensure images don't overflow */
img {
  max-width: 100%;
  height: auto;
}

/* Fix for landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-elite {
    min-height: auto;
    padding: 2rem 5%;
  }

  .mobile-nav {
    overflow-y: auto;
  }

  .tcx-strip-container {
    height: 250px;
  }
}

/* Hide parallax effect on mobile for performance */
@media (max-width: 768px) {
  .hero-elite::before {
    transform: translateY(0) !important;
  }
}

/* ============================================
   HERO SECTION MOBILE - CLEAN VERSION
   Only Title, Subtitle, and Buttons
   ============================================ */

@media (max-width: 768px) {
  .hero-elite {
    min-height: auto;
    padding: 3rem 5% 4rem;
    background: #ffffff !important;
    position: relative;
    display: flex;
    align-items: center;
  }

  /* Hide everything we don't want */
  .hero-right,
  .orb,
  .orb2,
  .parallax-shape,
  .parallax-shape2,
  .hero-floating-image,
  .image-platform,
  .hero-meta-footer,
  .meta-left,
  .meta-right {
    display: none !important;
  }

  /* Reset container */
  .hero-container {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Left content takes full width */
  .hero-left {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  /* Tag styling */
  .hero-tag {
    display: inline-block;
    font-size: 0.7rem;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(244, 91, 43, 0.08);
    border: 1px solid rgba(244, 91, 43, 0.15);
    border-radius: 50px;
    color: #f45b2b;
    font-weight: 600;
    letter-spacing: 2px;
  }

  /* Main title */
  .hero-left h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    color: #0a2540;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .hero-left h1 span {
    background: linear-gradient(90deg, #f45b2b, #ff7a50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }

  /* Subtitle */
  .hero-left p {
    font-size: 1rem;
    color: #4a6085;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    padding: 0 10px;
  }

  /* Button container */
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
  }

  /* Primary button */
  .btn-primary {
    background: #f45b2b;
    color: white;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 20px rgba(244, 91, 43, 0.3);
  }

  .btn-primary:hover,
  .btn-primary:active {
    background: #e0441a;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(244, 91, 43, 0.4);
  }

  /* Outline button */
  .btn-outline {
    background: transparent;
    color: #0a2540;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(10, 37, 64, 0.2);
    width: 100%;
    text-align: center;
  }

  .btn-outline:hover,
  .btn-outline:active {
    border-color: #f45b2b;
    color: #f45b2b;
    background: rgba(244, 91, 43, 0.02);
  }
}

/* Small Mobile Devices (up to 480px) */
@media (max-width: 480px) {
  .hero-elite {
    padding: 2.5rem 4% 3rem;
  }

  .hero-left h1 {
    font-size: 1.9rem;
  }

  .hero-left p {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
  }

  .hero-tag {
    font-size: 0.65rem;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1.2rem;
  }

  .hero-buttons {
    max-width: 280px;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Extra Small Devices (up to 360px) */
@media (max-width: 360px) {
  .hero-elite {
    padding: 2rem 4% 2.5rem;
  }

  .hero-left h1 {
    font-size: 1.7rem;
  }

  .hero-left p {
    font-size: 0.9rem;
  }

  .hero-tag {
    font-size: 0.6rem;
    padding: 0.3rem 1rem;
  }
}

/* Tablet Devices (481px - 768px) - Optional button layout */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    max-width: 400px;
  }

  .btn-primary,
  .btn-outline {
    width: auto;
    flex: 1;
  }
}

/* Landscape Mode */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-elite {
    padding: 2rem 5%;
    min-height: auto;
  }

  .hero-left h1 {
    font-size: 1.8rem;
  }

  .hero-left p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: row;
    max-width: 400px;
  }
}