﻿/* ==========================================================================
   TAEMOFY — Core Stylesheet
   Design language: precision-industrial / technical-blueprint
   ========================================================================== */

:root{
  /* Brand */
  --c-green:        #00A878;
  --c-green-dark:   #007A57;
  --c-green-light:  #E6F7F1;
  --c-red:          #E53935;
  --c-red-dark:     #B71C1C;
  --c-dark:         #1B1B1B;
  --c-bg:           #F8FAFC;

  /* Supporting neutrals */
  --c-steel:        #4A5568;
  --c-steel-light:  #8A94A6;
  --c-line:         #E2E8F0;
  --c-white:        #FFFFFF;

  /* Glass */
  --glass-bg:       rgba(255,255,255,0.08);
  --glass-bg-light: rgba(255,255,255,0.65);
  --glass-border:   rgba(255,255,255,0.18);

  /* Type */
  --f-display: 'Montserrat', sans-serif;
  --f-body:    'Poppins', sans-serif;

  /* Motion */
  --ease-out:   cubic-bezier(.16,.8,.24,1);
  --ease-spring:cubic-bezier(.34,1.56,.64,1);
  --dur-fast:   .25s;
  --dur-med:    .5s;
  --dur-slow:   .9s;

  /* Layout */
  --container: 1240px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--f-body);
  background:var(--c-bg);
  color:var(--c-dark);
  line-height:1.65;
  overflow-x:auto;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
input,textarea,select{ font-family:inherit; }
::selection{ background:var(--c-green); color:#fff; }

h1,h2,h3,h4{ font-family:var(--f-display); font-weight:800; letter-spacing:-.01em; color:var(--c-dark); }

.container{ width:100%; max-width:var(--container); margin-inline:auto; padding-inline:24px; }

/* focus visibility */
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{
  outline:2px solid var(--c-green); outline-offset:3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* ---------- Blueprint grid texture (signature motif) ---------- */
.blueprint{
    position: relative;
    background: url("/terminal\ bg.png") center center no-repeat;
    background-size: cover;      /* or contain */
    background-repeat: no-repeat;
    
}
.blueprint-dark{
  background-color:var(--c-dark);
  background-image:
    linear-gradient(rgba(0,168,120,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,168,120,.14) 1px, transparent 1px);
  background-size:42px 42px;
}
.corner-tick{ position:absolute; width:22px; height:22px; }
.corner-tick.tl{ top:18px; left:18px; border-top:2px solid currentColor; border-left:2px solid currentColor; }
.corner-tick.tr{ top:18px; right:18px; border-top:2px solid currentColor; border-right:2px solid currentColor; }
.corner-tick.bl{ bottom:18px; left:18px; border-bottom:2px solid currentColor; border-left:2px solid currentColor; }
.corner-tick.br{ bottom:18px; right:18px; border-bottom:2px solid currentColor; border-right:2px solid currentColor; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--f-body); font-weight:600; font-size:.78rem;
  letter-spacing:.22em; text-transform:uppercase; color:var(--c-green);
  margin-bottom:16px;
}
.eyebrow::before{
  content:''; width:28px; height:2px;  display:inline-block;
}
.eyebrow.light{ color:var(--c-green-light); }

.section-head{ max-width:680px; margin-bottom:56px; }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head h2{ font-size:clamp(2rem,4vw,3rem); line-height:1.12; margin-bottom:16px; }
.section-head p{ color:#E53935; font-size:.85rem; }

section{ position:relative; padding:110px 0; }
.section-tight{ padding:70px 0; }

/* ---------- Buttons ---------- */
.btn{
  position:relative; overflow:hidden;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 34px; font-weight:600; font-size:.95rem; letter-spacing:.02em;
  border-radius:100px; transition:transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast);
  white-space:nowrap;
}
.btn span{ position:relative; z-index:2; display:inline-flex; align-items:center; gap:10px; }
.btn-primary{ background:var(--c-green); color:#fff; box-shadow:0 10px 30px -10px rgba(0,168,120,.6); }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 16px 34px -10px rgba(0,168,120,.75); }
.btn-outline{ background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.55); }
.btn-outline:hover{ background:rgba(255,255,255,.12); transform:translateY(-3px); border-color:#fff; }
.btn-outline.dark{ color:var(--c-dark); border-color:rgba(27,27,27,.3); }
.btn-outline.dark:hover{ background:rgba(27,27,27,.06); }
.btn-red{ background:var(--c-red); color:#fff; box-shadow:0 10px 30px -10px rgba(229,57,53,.55); }
.btn-red:hover{ transform:translateY(-3px); box-shadow:0 16px 34px -10px rgba(229,57,53,.7); }
.btn-sm{ padding:11px 24px; font-size:.85rem; }
.btn-block{ width:100%; }

/* ripple */
.ripple{ position:absolute; border-radius:50%; background:rgba(255,255,255,.5); transform:scale(0); animation:ripple-anim .6s var(--ease-out); pointer-events:none; }
@keyframes ripple-anim{ to{ transform:scale(3); opacity:0; } }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  height: var(--header-h);
  display: flex;
  align-items: center;

  background: #f3f3f3; /* Black background */

  transition:
    background var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out),
    height var(--dur-med) var(--ease-out),
    border-color var(--dur-med);

  border-bottom: 1px solid transparent;
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; width:100%; }
.site-header.is-solid{
  background:rgba(248,250,252,.86);
  backdrop-filter:blur(16px) saturate(160%);
  -webkit-backdrop-filter:blur(16px) saturate(160%);
  box-shadow:0 8px 30px -12px rgba(27,27,27,.15);
  border-bottom-color:var(--c-line);
  height:72px;
}
.site-header.is-solid .logo-mark-text{ color:var(--c-dark); }
.site-header.is-solid .nav-links a{ color:var(--c-dark); }
.site-header.is-solid .hamburger span{ background: black; }
.hamburger.active span{ background:#fff; }
.site-header.is-solid .header-cta{ color:var(--c-dark); border-color:rgba(27,27,27,.25); }

.logo{ display:flex; align-items:center; gap:10px; z-index:2; }
.logo-mark{
  width:42px; height:42px; border-radius:10px;
  background:linear-gradient(135deg,var(--c-green),var(--c-green-dark));
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-family:var(--f-display); font-weight:800; font-size:1.1rem;
  box-shadow:0 6px 16px -4px rgba(0,168,120,.6);
  position:relative;
}
.logo-mark::after{
  content:''; position:absolute; inset:-4px; border-radius:13px;
  border:1.5px solid var(--c-red); opacity:.55;
}
.logo-mark-text{ font-family:var(--f-display); font-weight:800; font-size:1.28rem; letter-spacing:.02em; color:#fff; transition:color var(--dur-fast); }
.logo-mark-text b{ color:var(--c-red); }

.nav-links{ display:flex; align-items:center; gap:38px;  }
.nav-links a{
  position:relative; color:#080808; font-weight:500; font-size:.95rem;
  padding:8px 0; transition:color var(--dur-fast);
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:2px;
  background:var(--c-green); transition:width var(--dur-fast) var(--ease-out);
}
.nav-links a:hover::after,.nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:var(--c-green); }

.header-right{ display:flex; align-items:center; gap:22px; }
.header-cta{
  color:#070707; border:1.5px solid rgba(99, 226, 209, 0.938); padding:10px 22px;
  border-radius:100px; font-size:.85rem; font-weight:600; transition:var(--dur-fast);

}
.header-cta:hover{ background:var(--c-green); border-color:var(--c-green); }

.hamburger{ display:none; position:relative; flex-direction:column; justify-content:center; gap:6px; width:32px; height:32px; z-index:1002; cursor:pointer; }
.hamburger span{ display:block; height:2px; width:100%; background:#111; border-radius:2px; transition:transform var(--dur-fast) var(--ease-spring), opacity var(--dur-fast), background var(--dur-fast); }
.hamburger.active span{ background:#111; }
.hamburger.active span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity:0; }
.hamburger.active span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }
body.mobile-menu-open .site-header{ background:transparent; box-shadow:none; border-bottom-color:transparent; backdrop-filter:none; -webkit-backdrop-filter:none; }
body.mobile-menu-open .logo, body.mobile-menu-open .header-cta{ opacity:0; pointer-events:none; }
body.mobile-menu-open .site-header.is-solid .hamburger span{ background:#111; }

.mobile-menu{
  --menu-panel: min(72vw, 320px);
  position:fixed;
  inset:0;
  z-index:1000;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:flex-start;
  gap:0;
  padding:88px 36px 40px calc(100% - var(--menu-panel) + 36px);
  background:linear-gradient(to right, rgba(17,17,17,.62) 0 calc(100% - var(--menu-panel)), #fff calc(100% - var(--menu-panel)) 100%);
  transform:translateX(100%);
  transition:transform .45s var(--ease-out);
  pointer-events:none;
}
.mobile-menu.active{ transform:translateX(0); pointer-events:auto; }
.mobile-menu a{
  width:100%;
  color:#222;
  border-bottom:1px solid #eadfd8;
  font-family:var(--f-body);
  font-size:.98rem;
  font-weight:600;
  letter-spacing:.12em;
  line-height:1;
  text-transform:uppercase;
  padding:18px 0;
}
.mobile-menu a:first-child{ border-top:0; }
.mobile-menu a.active{ color:#111; }
.mobile-menu a span{ display:none; }
/* ---------- Hero ---------- */
.hero{
  position:relative; min-height:100vh; display:flex; align-items:center;
  background:transparent; overflow:hidden;
}
.hero img{
  position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; z-index:0;
}
.hero-video-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.5; }
.hero-canvas-bg{ position:absolute; inset:0; width:100%; height:100%; }
.hero::before{
  content:''; position:absolute; inset:0;
  z-index:1;
}
.hero-content{ position:relative; z-index:2; padding-top:var(--header-h); width:100%; }
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:10px; color:var(--c-green);
  font-weight:600; letter-spacing:.24em; text-transform:uppercase; font-size:.8rem; margin-bottom:22px;
}
.hero-eyebrow .dot{ width:8px; height:8px; border-radius:50%; background:var(--c-red); animation:pulse-dot 1.6s infinite; }
@keyframes pulse-dot{ 0%,100%{ box-shadow:0 0 0 0 rgba(229,57,53,.6);} 70%{ box-shadow:0 0 0 8px rgba(229,57,53,0);} }

.hero h1{
  font-size:clamp(2.6rem,6.4vw,5.4rem); line-height:1.04; color:#fff; max-width:920px;
}
.hero h1 .line{ display:block; overflow:hidden; }
.hero h1 .accent{ color:var(--c-green); }
.hero p.lead{ color:rgba(255,255,255,.78); font-size:1.15rem; max-width:560px; margin:26px 0 40px; }
.hero-actions{ display:flex; gap:18px; flex-wrap:wrap; }

.hero-scroll{
  position:absolute; bottom:38px; left:50%; transform:translateX(-50%); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:10px; color:rgba(255,255,255,.65);
  font-size:.72rem; letter-spacing:.2em; text-transform:uppercase;
}
.hero-scroll .wheel{ width:26px; height:42px; border:2px solid rgba(255,255,255,.4); border-radius:20px; position:relative; }
.hero-scroll .wheel::after{
  content:''; position:absolute; top:8px; left:50%; width:4px; height:8px; background:var(--c-green);
  border-radius:2px; transform:translateX(-50%); animation:scroll-dot 1.8s infinite;
}
@keyframes scroll-dot{ 0%{ opacity:1; top:8px; } 70%{ opacity:0; top:22px; } 100%{ opacity:0; top:8px; } }

/* floating shapes / particles */
.floating-shapes{ position:absolute; inset:0; z-index:1; pointer-events:none; }
.f-shape{ position:absolute; border-radius:50%; opacity:.5; filter:blur(1px); }
.f-shape.ring{ border-radius:50%; border:1.5px solid rgba(0,168,120,.35); background:transparent; }
.f-shape.square{ border-radius:6px; border:1.5px solid rgba(229,57,53,.3); background:transparent; transform:rotate(20deg); }
.particle{ position:absolute; width:4px; height:4px; border-radius:50%; background:var(--c-green); opacity:.7; }

/* stat strip under hero (optional use) */
.hero-stats{ position:relative; z-index:2; display:flex; gap:60px; margin-top:64px; flex-wrap:wrap; }
.hero-stats .stat b{ font-family:var(--f-display); font-size:2.1rem; color:#fff; display:block; }
.hero-stats .stat span{ color:rgba(255,255,255,.6); font-size:.82rem; letter-spacing:.05em; text-transform:uppercase; }

/* ---------- Cards ---------- */
.card{
  background:#fff; border-radius:var(--radius-md); border:1px solid var(--c-line);
  transition:transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-fast);
}
.card:hover{ transform:translateY(-8px); box-shadow:0 30px 60px -25px rgba(27,27,27,.25); border-color:transparent; }

.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.why-card{
  padding:40px 32px; background:#fff; border-radius:var(--radius-md); border:1px solid var(--c-line);
  position:relative; overflow:hidden; transition:var(--dur-med) var(--ease-out);
}
.why-card::before{
  content:''; position:absolute; top:0; left:0; width:4px; height:0; background:var(--c-green);
  transition:height var(--dur-med) var(--ease-out);
}
.why-card:hover::before{ height:100%; }
.why-card:hover{ transform:translateY(-8px); box-shadow:0 30px 60px -25px rgba(27,27,27,.2); }
.why-icon{
  width:58px; height:58px; border-radius:14px; background:var(--c-green-light); color:var(--c-green);
  display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin-bottom:22px;
  transition:transform var(--dur-med) var(--ease-spring), background var(--dur-fast), color var(--dur-fast);
}
.why-card:hover .why-icon{ background:var(--c-green); color:#fff; transform:rotate(-8deg) scale(1.08); }
.why-card h3{ font-size:1.2rem; margin-bottom:10px; }
.why-card p{ color:var(--c-steel); font-size:.95rem; }
.why-index{ position:absolute; top:24px; right:28px; font-family:var(--f-display); font-weight:800; font-size:2.2rem; color:var(--c-line); }

/* ---------- Product cards ---------- */
.products-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.product-card{
  position:relative; border-radius:var(--radius-md); overflow:hidden; height:460px;
  display:flex; flex-direction:column; justify-content:flex-end;
  background:var(--c-dark); isolation:isolate;
}
.product-card .pc-bg{
  position:absolute; inset:0; z-index:0; transition:transform .7s var(--ease-out);
}
.product-card:hover .pc-bg{ transform:scale(1.08); }
.product-card::after{
  content:''; position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(27,27,27,.15) 0%, rgba(27,27,27,.92) 90%);
}
.product-card .pc-content{ position:relative; z-index:2; padding:32px; color:#000000; background:rgb(15, 14, 14); }
.product-card .pc-tag{ color:var(--c-green); font-weight:600; font-size:.78rem; letter-spacing:.15em; text-transform:uppercase; margin-bottom:10px; display:block; }
.product-card h3{ color:#fff; font-size:1.5rem; margin-bottom:12px; }
.product-card p{ color:rgba(255,255,255,.72); font-size:.92rem; margin-bottom:20px; max-height:0; opacity:0; overflow:hidden; transition:max-height .5s var(--ease-out), opacity .4s; }
.product-card:hover p{ max-height:100px; opacity:1; }
.product-card .pc-link{
  display:inline-flex; align-items:center; gap:8px; color:#fff; font-weight:600; font-size:.9rem;
  border-bottom:1.5px solid var(--c-green); padding-bottom:4px; width:fit-content;
}
.product-card .pc-link i{ transition:transform var(--dur-fast); }
.product-card:hover .pc-link i{ transform:translateX(6px); }

/* generated "material" backdrops for product/industrial imagery replacement */
.mat-motor{ background:
  radial-gradient(circle at 30% 20%, rgba(0,168,120,.35), transparent 55%),
  repeating-linear-gradient(135deg, #2b2b2b 0 2px, #232323 2px 4px),
  linear-gradient(160deg,#1f1f1f,#141414); }
.mat-pump{ background:
  radial-gradient(circle at 70% 30%, rgba(229,57,53,.3), transparent 55%),
  repeating-linear-gradient(45deg, #262626 0 2px, #1e1e1e 2px 4px),
  linear-gradient(160deg,#1f1f1f,#141414); }
.mat-fan{ background:
  radial-gradient(circle at 40% 70%, rgba(0,168,120,.28), transparent 55%),
  repeating-linear-gradient(90deg, #262626 0 2px, #1e1e1e 2px 4px),
  linear-gradient(160deg,#1f1f1f,#141414); }

/* ---------- Timeline / process ---------- */
.process-wrap{ position:relative; }
.process-line{ position:absolute; top:60px; left:0; width:100%; height:2px; background:var(--c-line); z-index:0; }
.process-line-fill{ position:absolute; top:0; left:0; height:2px; width:0%; background:var(--c-green); transition:width 1.4s var(--ease-out); }
.process-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:24px; position:relative; z-index:1; }
.process-step{ text-align:center; }
.process-node{
  width:64px;
  height:64px;
  margin:0 auto 22px;
  border-radius:50%;
  background:#fff;
  border:2px solid var(--c-line);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--f-display);
  font-weight:800;
  color:var(--c-steel);
  transition:var(--dur-med) var(--ease-spring);
  position:relative;
}

.process-node:hover{
  background:#00a878; /* Green */
  border-color:#00a878;
  color:#fff;
}
.process-step.is-active .process-node{ border-color:var(--c-green); color:var(--c-green); background:var(--c-green-light); transform:scale(1.1); }
.process-step h4{ font-size:1rem; margin-bottom:8px; }
.process-step p{ color:var(--c-steel); font-size:.85rem; }

/* ---------- Achievements Section ---------- */
.achievements-section {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 120px 0;
  color: #60bda3;
  overflow: hidden;
}

.achievements-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(229, 57, 53, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 168, 120, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.achievements-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.achievements-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.achievements-label::before,
.achievements-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: #60bda3;
}

.achievements-label i {
  font-size: 1.1rem;
}

.achievements-title {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: white;
}

.achievements-title span {
  color: #fff;
}

.achievements-title .highlight {
  color: #60bda3;
  display: inline-block;
}

.achievements-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin-inline: auto;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.achievement-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid;
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 0.8, 0.24, 1);
}

.achievement-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}


.achievement-card:hover::before {
  opacity: 1;
}

.achievement-card > * {
  position: relative;
  z-index: 1;
}

.achievement-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(86, 198, 162, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  transition: all 0.4s ease;
  background: rgba(229, 57, 53, 0.05);
}

.achievement-card:hover .achievement-icon {
  border-color: #60bda3;

  transform: scale(1.1);
}

.achievement-icon.truck { color: #60bda3; }
.achievement-icon.smile { color: #60bda3; }
.achievement-icon.industry { color: #60bda3; }
.achievement-icon.project { color: #60bda3; }

.achievement-number {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  letter-spacing: -0.02em;
}

.achievement-number .suffix {
  font-size: 1.8rem;
  opacity: 0.9;
}

.achievement-divider {
  width: 50px;
  height: 2px;
  background: #60bda3;;
  margin: 16px auto 20px;
  border-radius: 2px;
}

.achievement-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
}

.achievement-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@keyframes cardFloatIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.achievement-card[data-reveal] {
  animation: cardFloatIn 0.6s cubic-bezier(0.16, 0.8, 0.24, 1) forwards;
  opacity: 0;
}

/* ---------- Video / CTA section ---------- */
.video-section{ position:relative; min-height:70vh; display:flex; align-items:center; background:var(--c-dark); overflow:hidden; }
.video-section .vs-bg{ position:absolute; inset:0; object-fit:cover; width:100%; height:100%; opacity:.45; }
.video-section::before{ content:''; position:absolute; inset:0; background:linear-gradient(120deg, rgba(27,27,27,.9), rgba(0,168,120,.25)); }
.video-glass{
  position:relative; z-index:2; max-width:640px; padding:48px;
  background:var(--glass-bg); border:1px solid var(--glass-border); border-radius:var(--radius-lg);
  backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
}
.play-btn{
  width:78px; height:78px; border-radius:50%; background:var(--c-green); color:#fff; font-size:1.4rem;
  display:flex; align-items:center; justify-content:center; margin-bottom:28px; position:relative;
}
.play-btn::before,.play-btn::after{
  content:''; position:absolute; inset:0; border-radius:50%; border:2px solid var(--c-green);
  animation:play-ripple 2.4s infinite; opacity:0;
}
.play-btn::after{ animation-delay:1.2s; }
@keyframes play-ripple{ 0%{ transform:scale(1); opacity:.7; } 100%{ transform:scale(1.7); opacity:0; } }
.video-glass h3{ color:#fff; font-size:1.8rem; margin-bottom:14px; }
.video-glass p{ color:rgba(255,255,255,.75); }

/* ---------- Forms ---------- */
.form-group{ position:relative; margin-bottom:26px; }
.form-group label{
  position:absolute; left:20px; top:18px; color:var(--c-steel-light); font-size:.95rem;
  transition:var(--dur-fast) var(--ease-out); pointer-events:none; background:transparent; padding:0 4px;
}
.form-group input,.form-group textarea,.form-group select{
  width:100%; padding:18px 20px; border:1.5px solid var(--c-line); border-radius:var(--radius-sm);
  background:#fff; font-size:.98rem; color:var(--c-dark); transition:border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.form-group textarea{ resize:vertical; min-height:130px; }
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{
  border-color:var(--c-green); box-shadow:0 0 0 4px rgba(0,168,120,.12); outline:none;
}
.form-group input:focus + label,.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,.form-group select.filled + label{
  top:-10px; left:14px; font-size:.75rem; background:#fff; color:var(--c-green); font-weight:600;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-note{ font-size:.82rem; color:var(--c-steel-light); margin-top:-14px; margin-bottom:20px; }

.contact-form-card{
  background:#fff; border-radius:var(--radius-lg); padding:48px; border:1px solid var(--c-line);
  box-shadow:0 40px 80px -40px rgba(27,27,27,.25);
}
.glass-form-card{
  background:var(--glass-bg-light); border:1px solid rgba(255,255,255,.5); border-radius:var(--radius-lg);
  padding:52px; backdrop-filter:blur(22px); -webkit-backdrop-filter:blur(22px);
  box-shadow:0 40px 90px -30px rgba(27,27,27,.35);
}
.glass-form-card .form-group input,.glass-form-card .form-group textarea,.glass-form-card .form-group select{
  background:rgba(255,255,255,.6); border-color:rgba(255,255,255,.7);
}
.glass-form-card .form-group input:focus + label,.glass-form-card .form-group textarea:focus + label,
.glass-form-card .form-group select.filled + label{ background:transparent; }

.form-status{ margin-top:16px; font-size:.9rem; font-weight:600; display:none; }
.form-status.success{ color:var(--c-green); display:block; }
.form-status.error{ color:var(--c-red); display:block; }

/* ---------- Contact info cards ---------- */
.contact-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.contact-info-card{
  padding:34px 28px; background:#fff; border-radius:var(--radius-md); border:1px solid var(--c-line);
  text-align:center; transition:var(--dur-med) var(--ease-out);
}
.contact-info-card:hover{ transform:translateY(-6px); box-shadow:0 24px 50px -25px rgba(27,27,27,.2); }
.contact-info-card i{
  width:56px; height:56px; border-radius:50%; background:var(--c-green-light); color:var(--c-green);
  display:flex; align-items:center; justify-content:center; margin:0 auto 18px; font-size:1.3rem;
}
.contact-info-card h4{ margin-bottom:8px; font-size:1.05rem; }
.contact-info-card p{ color:var(--c-steel); font-size:.9rem; }

.map-frame{ border-radius:var(--radius-md); overflow:hidden; border:1px solid var(--c-line); height:100%; min-height:420px; }
.map-frame iframe{ width:100%; height:100%; min-height:420px; border:0; filter:grayscale(.15); }

/* ---------- Footer ---------- */
.site-footer{ position:relative; color:rgba(255,255,255,.75); overflow:hidden; }
.footer-bg{
  position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,168,120,.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(229,57,53,.14), transparent 45%),
    var(--c-dark);
}
.footer-inner{ position:relative; z-index:1; padding:90px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-col h4{ color:#fff; font-size:1rem; margin-bottom:24px; letter-spacing:.03em; }
.footer-col p{ font-size:.92rem; line-height:1.75; }
.footer-col ul li{ margin-bottom:13px; }
.footer-col ul li a{ font-size:.92rem; transition:color var(--dur-fast), padding-left var(--dur-fast); }
.footer-col ul li a:hover{ color:var(--c-green); padding-left:6px; }
.footer-logo{ display:flex; align-items:center; gap:10px;  }
.footer-social{ display:flex; gap:12px; margin-top:24px; }
.footer-social a{
  width:42px; height:42px; border-radius:50%; border:1.5px solid rgba(255,255,255,.2);
  display:flex; align-items:center; justify-content:center; transition:var(--dur-fast);
}
.footer-social a:hover{ background:var(--c-green); border-color:var(--c-green); transform:translateY(-4px); }
.newsletter-form{ display:flex; margin-top:18px; border:1px solid rgba(255,255,255,.2); border-radius:100px; overflow:hidden; }
.newsletter-form input{ flex:1; background:transparent; border:none; padding:12px 18px; color:#fff; font-size:.88rem; }
.newsletter-form input::placeholder{ color:rgba(255,255,255,.4); }
.newsletter-form button{ background:var(--c-green); color:#fff; padding:0 20px; font-weight:600; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:.82rem; color:rgba(255,255,255,.5); flex-wrap:wrap; gap:12px; }
.footer-bottom a{ color:rgba(255,255,255,.5); }
.footer-bottom a:hover{ color:var(--c-green); }

/* ---------- Page hero banner (interior pages) ---------- */
.page-banner{
  position:relative; padding:calc(var(--header-h) + 90px) 0 90px; background:var(--c-dark); color:#fff; overflow:hidden;
}
.page-banner .container{ position:relative; z-index:2; }
.breadcrumb{ display:flex; align-items:center; gap:10px; color:rgba(255,255,255,.55); font-size:.88rem; margin-top:18px; }
.breadcrumb a:hover{ color:var(--c-green); }
.page-banner h1{ color:#fff; font-size:clamp(2.2rem,5vw,3.6rem); }

/* ---------- Misc utility ---------- */
.text-green{ color:var(--c-green); }
.text-red{ color:var(--c-red); }
.mt-0{ margin-top:0; }
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.tag-pill{
  display:inline-flex; align-items:center; gap:8px; padding:8px 18px; border-radius:100px;
  background:var(--c-green-light); color:var(--c-green-dark); font-size:.8rem; font-weight:600;
}
.divider-diagonal{ height:80px; background:var(--c-bg); clip-path:polygon(0 40%, 100% 0, 100% 100%, 0 100%); margin-top:-1px; }

/* spec table */
.spec-table{ width:100%; border-collapse:collapse; }
.spec-table tr{ border-bottom:1px solid var(--c-line); }
.spec-table tr:last-child{ border-bottom:none; }
.spec-table td{ padding:16px 12px; font-size:.94rem; }
.spec-table td:first-child{ color:var(--c-steel); font-weight:500; width:40%; }
.spec-table td:last-child{ font-weight:600; }
.spec-table tr:hover{ background:var(--c-green-light); }

/* gallery */
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.gallery-item{ border-radius:var(--radius-sm); overflow:hidden; height:160px; position:relative; cursor:pointer; }
.gallery-item::after{ content:'\f00e'; font-family:'Font Awesome 6 Free'; font-weight:900; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:#fff; background:rgba(27,27,27,0); opacity:0; transition:var(--dur-fast); font-size:1.2rem; }
.gallery-item:hover::after{ opacity:1; background:rgba(27,27,27,.45); }

/* cursor glow (desktop only, added via JS) */
.cursor-glow{
  position:fixed; width:420px; height:420px; border-radius:50%; pointer-events:none; z-index:2;
  background:radial-gradient(circle, rgba(0,168,120,.10), transparent 70%);
  transform:translate(-50%,-50%); left:0; top:0; opacity:0; transition:opacity .4s;
}

/* AOS-lite fallback base state (used with animation.js reveal) */
[data-reveal]{ transform:translateY(36px); transition:opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal].in-view{ opacity:1; transform:translateY(0); }
[data-reveal="left"]{ transform:translateX(-48px); }
[data-reveal="left"].in-view{ transform:translateX(0); }
[data-reveal="right"]{ transform:translateX(48px); }
[data-reveal="right"].in-view{ transform:translateX(0); }
[data-reveal="scale"]{ transform:scale(.9); }
[data-reveal="scale"].in-view{ transform:scale(1); }
.pc-bg.mat-motor {
    background-image: url("/pro1.51.jpg"); /* Change to your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 500px; /* Adjust as needed */
    position: relative;
}

.pc-bg.mat-fan {
    background-image: url("/transparent01.jpg"); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 500px; /* Adjust as needed */
    position: relative;
    /* Optional */
    overflow: hidden;
}

.pc-bg.mat-pump {
    background-image: url("/SHOTY1.jpg"); /* Change to your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 500px; /* Adjust as needed */
    position: relative;
   
    overflow: hidden;
}

.pc-bg.mat-fast {
    background-image: url("/mms1.jpg"); /* Change to your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 500px; /* Adjust as needed */
    position: relative;
   
    overflow: hidden;
}



.pc-bg.mat-pump::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Optional dark overlay */
}

 .about-section{
    padding:120px 0;
    background:#f8fafc;
}

.about-grid{
    display:grid;
    grid-template-columns:45% 55%;
    gap:80px;
    align-items:center;
}

.about-image{
    width:100%;
    aspect-ratio:1/1;
    max-width:720px;
    justify-self:end;
    overflow:hidden;
    border-radius:16px;
}
.about-eyebrow{
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#E53935;
    margin-bottom:18px;
}

.about-title{
    font-family:"Cormorant Garamond",serif;
    font-size:52px;
    line-height:1;
    font-weight:600;
    color:#0D1B33;
    margin-bottom:30px;
    
}

.about-text{
    font-size:18px;
    line-height:1.9;
    color:#5F6675;
    margin-bottom:22px;
    max-width:620px;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-top:15px;
    color:#0D1B33;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    gap:18px;
}

.about-image{
    width:100%;
    aspect-ratio:1/1;
    overflow:hidden;
    border-radius:12px;
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.about-image:hover img{
    transform:scale(1.06);
}

/* Responsive */

@media(max-width:992px){

.about-grid{
    grid-template-columns:1fr;
    gap:50px;
}

.about-title{
    font-size:48px;
}

.about-image{
    max-width:500px;
    margin:auto;
}

.about-text{
    font-size:16px;
}
}


.container{
    padding-left:24px;
    padding-right:24px;
    box-sizing:border-box;
}
.why-card h3{
    font-family:"Cormorant Garamond",serif;
    font-size:22px;
    line-height:1;
    font-weight:600;
    color:#0D1B33;
    margin-bottom:30px;
}


.products-section {
    position: relative;
    background: url("/serv.png") center center/cover no-repeat;
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
}

.products-section::before {
    content: "";
    position: absolute;
    inset: 0;

    /* Black fade overlay */
    background: linear-gradient(
        180deg,
        rgba(48, 47, 47, 0.85) 0%,
        rgba(48, 47, 47, 0.65) 35%,
        rgba(48, 47, 47, 0.75) 70%,
        rgba(48, 47, 47, 0.90) 100%
    );

    z-index: -1;
}

.products-section .container {
    position: relative;
    z-index: 2;
}

.products-section .products-head {
    max-width: 860px;
    margin-bottom: 28px;
}

.products-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    color: #ff2d2d;
    font-family: var(--f-body);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.products-eyebrow::before,
.products-eyebrow::after {
    content: "";
    width: 16px;
    height: 2px;
    background: #60bda3;
}

.products-title {
    color: #fff;
    font-family: var(--f-display);
    font-size: clamp(2.35rem, 5.2vw, 4.6rem);
    line-height: .98;
    text-transform: uppercase;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .65);
    margin-bottom: 18px;
}

.products-title span {
    color: #60bda3;
}

.products-subtitle {
    color: rgba(255, 255, 255, .78);
    font-size: .98rem;
    margin: 0;
}

.products-section .products-grid {
    gap: 24px;
    max-width: 1100px;
    margin-inline: auto;
}

.products-section .product-card {
    min-height: 398px;
    height: auto;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .26);
    background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(15, 15, 15, .92) 48%, rgba(10, 10, 10, .96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 26px 60px rgba(0, 0, 0, .4);
    display: block;
    overflow: hidden;
}

.products-section .product-card::after {
    display: none;
}

.products-section .product-card .pc-bg {
    position: relative;
    inset: auto;
    z-index: 1;
    height: 178px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: transform .7s var(--ease-out);
}

.products-section .product-card:hover .pc-bg {
    transform: scale(1.04);
}

.products-section .product-card .pc-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    
}

.products-section .product-card .pc-content {
    position: relative;
    z-index: 2;
    min-height: 220px;
    padding: 34px 24px 24px;
    color: #fff;
    background: linear-gradient(180deg, rgba(18, 18, 18, .82), rgba(12, 12, 12, .98));
}

.products-section .pc-icon {
    position: absolute;
    top: -26px;
    left: 22px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(20, 20, 20, .86);
    border: 2px solid #ff2d2d;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .35);
}

.products-section .product-card .pc-tag {
    color: #60bda3;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .17em;
    margin-bottom: 8px;
}

.products-section .pc-index {
    position: absolute;
    top: 14px;
    right: 18px;
    color: rgba(255, 255, 255, .035);
    font-family: var(--f-display);
    font-size: 4.7rem;
    font-weight: 900;
    line-height: 1;
}

.products-section .product-card h3 {
    color: #fff;
    max-width: 245px;
    font-size: 1.28rem;
    line-height: 1.18;
    margin-bottom: 14px;
}

.products-section .product-card h3::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background: #60bda3;
    margin-top: 12px;
}

.products-section .product-card p {
    color: rgba(255, 255, 255, .7);
    max-height: none;
    opacity: 1;
    overflow: visible;
    font-size: .78rem;
    line-height: 1.5;
    margin-bottom: 22px;
    max-width: 270px;
}

.products-section .product-card .pc-link {
    min-width: 134px;
    min-height: 34px;
    padding: 8px 18px;
    justify-content: center;
    gap: 16px;
    color: #fff;
    border: 1px solid #60bda3;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
}

.products-section .product-card .pc-link i {
    color: #60bda3;
}

.products-section .product-card .pc-link:hover {
    background: #ff2d2d;
    color: #fff;
}

.products-section .product-card .pc-link:hover i {
    color: #fff;
}
/* ================================
   TAEMOFY ABOUT SECTION
================================ */

.tmf-about-wrap{

    padding:110px 0;
    background:#f8fafc;

}

.tmf-about-container{

    width:min(1320px,calc(100% - 48px));
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:90px;

}

.tmf-about-left{

    max-width:620px;

}

.tmf-about-tag{

    display:inline-block;

    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#E53935;
    font-weight:700;

    margin-bottom:20px;

}

.tmf-about-heading{

    font-family:"Cormorant Garamond",serif;
    font-size:48px;
    line-height:1.02;
    color:#0D1B33;
    margin-bottom:30px;
    font-weight:600;

}

.tmf-about-heading span{

    color:#0D1B33;

}

.tmf-about-left p{

    font-size:17px;
    line-height:2;
    color:#5d6677;
    margin-bottom:28px;

}

.tmf-about-btn{

    display:inline-flex;
    align-items:center;
    gap:12px;

    color:#0D1B33;
    font-weight:700;
    text-decoration:none;

    transition:.35s;

}

.tmf-about-btn:hover{

    gap:20px;

}

.tmf-about-right{

    width:100%;

}

.tmf-about-right img{

    width:100%;
    display:block;

    border-radius:18px;

    transition:.6s;

}

.tmf-about-right:hover img{

    transform:scale(1.04);

}

/* ================================
        Laptop
================================ */

@media(max-width:1200px){

.tmf-about-container{

    gap:60px;

}

.tmf-about-heading{

    font-size:54px;

}

.tmf-about-left p{

    font-size:18px;

}

}

/* ================================
        Tablet
================================ */

@media(max-width:991px){

.tmf-about-container{

    grid-template-columns:1fr;
    gap:50px;

}

.tmf-about-left{

    max-width:100%;
    text-align:center;

}

.tmf-about-right{

    max-width:700px;
    margin:auto;

}

.tmf-about-btn{

    justify-content:center;

}

}

/* ================================
        Mobile
================================ */

@media(max-width:576px){

.tmf-about-wrap{

    padding:70px 0;

}

.tmf-about-container{

    width:calc(100% - 40px);

}

.tmf-about-heading{

    font-size:35px;

}

.tmf-about-left p{

    font-size:16px;
    line-height:1.9;
    text-align:justify;

}

.tmf-about-right{

    max-width:100%;

}

}

/* ================================
      Small Mobile
================================ */

@media(max-width:380px){

.tmf-about-heading{

    font-size:36px;

}

}


/*=============================
TAEMOFY CONTACT
=============================*/

.tmf-contact-section{

    position:relative;

    padding:120px 0;

    background:url("/terminal bg.png") center center/cover no-repeat;

    overflow:hidden;

}

.tmf-contact-overlay{

    position:absolute;

    inset:0;


}

.tmf-contact-container{

    position:relative;

    z-index:2;

    width:min(1320px,calc(100% - 48px));

    margin:auto;

    display:grid;

    grid-template-columns:1.05fr .95fr;

    gap:80px;

    align-items:center;

}

/*====================*/

.tmf-contact-eyebrow{

    display:flex;

    align-items:center;

    gap:14px;

    color:#00A878;

    font-weight:700;

    font-size:13px;

    letter-spacing:3px;

    margin-bottom:20px;

}

.tmf-contact-eyebrow::before{

    content:"";

    width:34px;

    height:2px;

    

}

.tmf-contact-title{

    font-family:"Cormorant Garamond",serif;

    font-size:64px;

    line-height:1;

    color:#10223E;

    margin-bottom:35px;

}

/*====================*/

.tmf-contact-card{

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(18px);

    border-radius:24px;

    padding:42px;

    box-shadow:0 30px 60px rgba(0,0,0,.10);

}

.tmf-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

}

.tmf-contact-card input,

.tmf-contact-card textarea{

    width:100%;

    border:1px solid #dbe4ec;

    border-radius:12px;

    padding:18px;

    font-size:16px;

    margin-bottom:18px;

    outline:none;

    transition:.35s;

    background:#fff;

}

.tmf-contact-card textarea{

    height:170px;

    resize:none;

}

.tmf-contact-card input:focus,

.tmf-contact-card textarea:focus{

    border-color:#00A878;

}

.tmf-contact-card button{

    width:100%;

    height:60px;

    border:none;

    border-radius:999px;

    background:#00A878;

    color:#fff;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.tmf-contact-card button:hover{

    background:#008b63;

}

/*====================*/

.tmf-map-card{

    background:#fff;

    padding:16px;

    border-radius:24px;

    box-shadow:0 35px 70px rgba(0,0,0,.12);

}

.tmf-map-card iframe{

    width:100%;

    height:520px;

    border:none;

    border-radius:18px;

}

/*=====================
Laptop
======================*/

@media(max-width:1200px){

.tmf-contact-title{

    font-size:54px;

}

.tmf-contact-container{

    gap:50px;

}

}

/*=====================
Tablet
======================*/

@media(max-width:991px){

.tmf-contact-container{

    grid-template-columns:1fr;

}

.tmf-contact-title{

    text-align:center;

}

.tmf-contact-eyebrow{

    justify-content:center;

}

.tmf-map-card{

    max-width:700px;

    margin:auto;

}

}

/*=====================
Mobile
======================*/

@media(max-width:576px){

.tmf-contact-section{

    padding:70px 0;

}

.tmf-contact-container{

    width:calc(100% - 40px);

}

.tmf-grid{

    grid-template-columns:1fr;

}

.tmf-contact-title{

    font-size:42px;

    text-align:center;

}

.tmf-contact-card{

    padding:24px;

}

.tmf-map-card iframe{

    height:320px;

}

}

.achievements-bg{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            rgba(39, 39, 39, 0.88),
            rgba(32, 32, 32, 0.88)
        ),
        url("/serv.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    z-index:0;
}
.facility-section{
    padding:120px 0;
    background:#fff;
}

.two-col{
    display:grid;
    grid-template-columns:48% 52%;
    gap:90px;
    align-items:center;
}

.facility-image{
    border-radius:24px;
    overflow:hidden;
    height:560px;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.facility-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.facility-image:hover img{
    transform:scale(1.05);
}

.eyebrow{
    color:#00A86B;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.facility-section h2{
    font-size:35px;
    line-height:1.2;
    margin-bottom:25px;
    color:#101828;
}

.facility-text{
    color:#667085;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

.facility-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.tag-pill{
    display:flex;
    align-items:center;
    gap:10px;
    background:#E8F8F2;
    color:#00875A;
    padding:16px 22px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.tag-pill:hover{
    background:#00A86B;
    color:#fff;
}

.tag-pill i{
    font-size:15px;
}

@media(max-width:991px){

.two-col{
    grid-template-columns:1fr;
    gap:50px;
}

.facility-image{
    height:420px;
}

.facility-section h2{
    font-size:36px;
}

.facility-list{
    grid-template-columns:1fr;
}
}


.taemofy-mfgx-showcase{
    padding:120px 0;
    background:#fff;
}

.taemofy-mfgx-layout{
    max-width:1320px;
    margin:auto;
    display:grid;
    grid-template-columns:48% 52%;
    gap:90px;
    align-items:center;
}

.taemofy-mfgx-media{
    overflow:hidden;
    border-radius:24px;
    height:560px;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.taemofy-mfgx-photo{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.taemofy-mfgx-media:hover .taemofy-mfgx-photo{
    transform:scale(1.05);
}

.taemofy-mfgx-label{
    display:inline-block;
    margin-bottom:18px;
    color:#00A86B;
    letter-spacing:3px;
    font-size:13px;
    font-weight:700;
}

.taemofy-mfgx-heading{
    font-size:48px;
    line-height:1.2;
    margin-bottom:24px;
}

.taemofy-mfgx-copy{
    color:#667085;
    font-size:18px;
    line-height:1.9;
    margin-bottom:36px;
}

.taemofy-mfgx-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.taemofy-mfgx-chip{
    display:flex;
    align-items:center;
    gap:12px;
    padding:16px 24px;
    border-radius:999px;
    background:#E9F8F2;
    color:#00875A;
    font-weight:600;
    transition:.3s;
}

.taemofy-mfgx-chip i{
    font-size:14px;
}

.taemofy-mfgx-chip:hover{
    background:#00A86B;
    color:#fff;
}

@media(max-width:991px){

.taemofy-mfgx-layout{
    grid-template-columns:1fr;
    gap:50px;
}

.taemofy-mfgx-media{
    height:420px;
}

.taemofy-mfgx-heading{
    font-size:36px;
}

.taemofy-mfgx-grid{
    grid-template-columns:1fr;
}

}

@media (max-width: 768px) {

.taemofy-mfgx-showcase{
    padding:80px 20px;
}

.taemofy-mfgx-layout{
    grid-template-columns:1fr;
    gap:45px;
}

.taemofy-mfgx-details{
    padding:0 5px;
}

}

.page-banner{
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    background: url("/header\ image.png") center center/cover no-repeat;
}

.page-banner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65); /* Adjust darkness */
    z-index: 1;
}

.page-banner .container{
    position: relative;
    z-index: 2;
}

.page-banner h1,
.page-banner .eyebrow,
.page-banner .breadcrumb,
.page-banner .breadcrumb a,
.page-banner .breadcrumb span{
    color: #fff;
}

.page-banner .breadcrumb i{
    color: rgba(255,255,255,.7);
}

@media (max-width: 768px) {
    .logo img {
        height: 70px; /* Reduce logo size */
        width: auto;
    }
}
/* ---------- Product catalogue ---------- */
.catalogue-section{background:#fff;padding:90px 0 110px;}
.product-catalogue{display:grid;grid-template-columns:minmax(260px,360px) 1fr;gap:32px;align-items:start;}
.catalogue-sidebar{position:sticky;top:104px;background:#f4f4f4;border-radius:8px;padding:30px;min-height:520px;}
.catalogue-sidebar h2{font-size:1.55rem;margin-bottom:24px;}
.catalogue-category{display:block;width:100%;padding:12px 18px;color:#111;text-align:left;border-radius:6px;font-size:.92rem;transition:background .25s var(--ease-out),color .25s var(--ease-out),transform .25s var(--ease-out);}
.catalogue-category:hover,.catalogue-category.is-active{background:#fff;color:var(--c-green-dark);transform:translateX(4px);}
.catalogue-main{min-width:0;}
.catalogue-toolbar{display:flex;align-items:flex-end;justify-content:space-between;gap:22px;margin-bottom:24px;}
.catalogue-toolbar h2{font-size:clamp(1.7rem,3vw,2.4rem);line-height:1.15;}
.catalogue-count{color:var(--c-steel);font-size:.9rem;white-space:nowrap;}
.catalogue-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;}
.catalogue-card{display:flex;flex-direction:column;min-height:302px;overflow:hidden;background:#fff;border:1px solid #d9dce2;border-radius:6px;transition:transform .25s var(--ease-out),box-shadow .25s var(--ease-out),border-color .25s var(--ease-out);}
.catalogue-card:hover{transform:translateY(-5px);border-color:rgba(0,168,120,.45);box-shadow:0 18px 36px rgba(17,24,39,.1);}
.catalogue-card-link{display:flex;flex-direction:column;height:100%;color:inherit;}
.catalogue-card-media{display:flex;align-items:center;justify-content:center;height:184px;padding:16px;background:#fff;}
.catalogue-card-media img{width:100%;height:100%;object-fit:contain;}
.catalogue-card-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;border:1px dashed #cfd6df;border-radius:6px;background:#f8fafc;color:#9aa5b1;font-size:2.4rem;}
.catalogue-card-body{padding:16px 16px 20px;}
.catalogue-card-category{display:block;color:#030303;font-size:.78rem;font-weight:600;margin-bottom:6px;}
.catalogue-card h3{font-family:var(--f-body);color:#60bda3;font-size:.98rem;line-height:1.35;font-weight:700;letter-spacing:0;}
.catalogue-card h3 span{color:#f44336;}
.catalogue-pagination{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:8px;margin-top:30px;}
.catalogue-page-btn{min-width:38px;height:38px;padding:0 12px;border:1px solid #d9dce2;border-radius:6px;color:#1f2937;background:#fff;font-weight:600;transition:background .25s var(--ease-out),color .25s var(--ease-out),border-color .25s var(--ease-out);}
.catalogue-page-btn:hover,.catalogue-page-btn.is-active{color:#fff;background:var(--c-green);border-color:var(--c-green);}
.catalogue-page-btn:disabled{color:#9ca3af;background:#f5f5f5;cursor:not-allowed;}
@media(max-width:1100px){.product-catalogue{grid-template-columns:1fr;}.catalogue-sidebar{position:static;min-height:0;}.catalogue-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:640px){.catalogue-section{padding:64px 0;}.catalogue-sidebar{padding:22px;}.catalogue-toolbar{align-items:flex-start;flex-direction:column;}.catalogue-count{white-space:normal;}.catalogue-grid{grid-template-columns:1fr;}.catalogue-card-media{height:210px;}}
/* ---------- Product detail reference page ---------- */
.product-detail-page{background:#fff;color:#121826;}.product-detail-section{padding:calc(var(--header-h) + 34px) 0 72px;background:#fff;}.product-detail-breadcrumb{display:flex;align-items:center;gap:11px;margin-bottom:18px;color:#667085;font-size:.9rem;flex-wrap:wrap;}.product-detail-breadcrumb a:hover,.product-detail-breadcrumb span{color:#ff174f;font-weight:600;}.product-detail-breadcrumb i{font-size:.58rem;color:#98a2b3;}.product-detail-hero{display:grid;grid-template-columns:minmax(300px,1fr) minmax(320px,.98fr);gap:38px;align-items:start;margin-bottom:34px;}.product-gallery{border:1px solid #e4e7ec;border-radius:8px;overflow:hidden;background:#fff;}.product-main-image{height:330px;display:flex;align-items:center;justify-content:center;padding:34px;background:#fff;}.product-main-image img{width:100%;height:100%;object-fit:contain;}.product-thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;padding:12px 20px 14px;border-top:1px solid #eef0f4;background:#fff;}.product-thumb{height:68px;border:1px solid #e4e7ec;border-radius:6px;background:#fff;display:flex;align-items:center;justify-content:center;padding:8px;transition:border-color var(--dur-fast),box-shadow var(--dur-fast);}.product-thumb.is-active,.product-thumb:hover{border-color:#ff174f;box-shadow:0 0 0 1px #ff174f inset;}.product-thumb img{width:100%;height:100%;object-fit:contain;}.product-thumb-drawing span{width:48px;height:38px;border:1px solid #c7ccd4;background:linear-gradient(90deg,transparent 31%,#d7dce4 32% 34%,transparent 35% 65%,#d7dce4 66% 68%,transparent 69%),linear-gradient(transparent 45%,#d7dce4 46% 49%,transparent 50%);position:relative;}.product-detail-summary h1{font-size:clamp(1.9rem,3.1vw,2.8rem);line-height:1.2;margin:2px 0 10px;font-family:var(--f-body);font-weight:500;letter-spacing:0;}.product-detail-summary h1 span{color:#ff174f;font-weight:800;}.product-number{font-size:1rem;color:#121826;margin-bottom:18px;}.product-detail-table{width:100%;border-collapse:collapse;margin-bottom:24px;border:1px solid #e4e7ec;}.product-detail-table th,.product-detail-table td{border:1px solid #e4e7ec;text-align:left;padding:12px 16px;font-size:.95rem;}.product-detail-table th{width:58%;font-weight:700;color:#111827;background:#fff;}.product-detail-table td{font-weight:600;color:#111827;}.product-enquiry-btn{display:inline-flex;align-items:center;justify-content:center;gap:18px;min-width:160px;padding:13px 20px;border-radius:6px;background:#ff174f;color:#fff;font-weight:700;box-shadow:0 12px 24px rgba(255,23,79,.22);transition:transform var(--dur-fast),box-shadow var(--dur-fast);}.product-enquiry-btn:hover{transform:translateY(-2px);box-shadow:0 16px 30px rgba(255,23,79,.3);}.product-detail-content{display:grid;grid-template-columns:minmax(0,1.06fr) minmax(300px,.9fr);gap:32px;align-items:start;}.product-copy-block{margin-bottom:26px;}.product-section-title{display:flex;align-items:center;gap:18px;margin-bottom:10px;}.product-section-title h2,.product-info-panel h2,.detail-cta h2{font-family:var(--f-body);font-size:1.08rem;letter-spacing:0;color:#111827;}.product-section-title::after{content:'';height:1px;background:#d7dce4;flex:1;}.product-copy-block p{color:#4b5563;line-height:1.7;max-width:720px;}.technical-drawing-card{position:relative;min-height:240px;border:1px solid #e4e7ec;border-radius:7px;background:#fff;display:grid;grid-template-columns:1fr 1fr;gap:38px;align-items:center;padding:28px 34px 62px;overflow:hidden;}.drawing-face{height:118px;border:2px solid #a7adb7;position:relative;background:linear-gradient(#d6dbe3 0 0) center/100% 2px no-repeat;}.drawing-face::before,.drawing-face::before{left:70px;}.drawing-face::after{right:70px;}.drawing-face span{position:absolute;width:32px;height:32px;border:2px solid #a7adb7;border-radius:50%;}.drawing-face span:nth-child(1){left:18px;top:18px}.drawing-face span:nth-child(2){left:50%;top:18px;transform:translateX(-50%)}.drawing-face span:nth-child(3){right:18px;top:18px}.drawing-face span:nth-child(4){left:18px;bottom:18px}.drawing-face span:nth-child(5){left:50%;bottom:18px;transform:translateX(-50%)}.drawing-face span:nth-child(6){right:18px;bottom:18px}.drawing-side{height:118px;border-bottom:2px solid #30343b;position:relative;background:linear-gradient(90deg,transparent 16%,#30343b 17% 18%,transparent 19% 50%,#30343b 51% 52%,transparent 53% 84%,#30343b 85% 86%,transparent 87%);}.drawing-side::before{content:'';position:absolute;left:8%;right:8%;bottom:0;height:48px;background:repeating-linear-gradient(135deg,#30343b 0 3px,transparent 3px 9px);border:2px solid #30343b;border-bottom:0;}.drawing-side span{position:absolute;bottom:48px;width:18px;height:72px;border:2px solid #30343b;border-bottom:0;background:#fff;}.drawing-side span:nth-child(1){left:20%;}.drawing-side span:nth-child(2){left:48%;}.drawing-side span:nth-child(3){right:20%;}.drawing-download{position:absolute;left:20px;bottom:14px;display:inline-flex;align-items:center;gap:12px;padding:10px 14px;border:1px solid #eef0f4;border-radius:5px;color:#ff174f;font-weight:700;font-size:.88rem;background:#fff;box-shadow:0 4px 12px rgba(17,24,39,.08);}.product-info-panels{display:grid;gap:2px;}.product-info-panel{border:1px solid #e4e7ec;border-radius:7px;background:#fff;padding:22px 24px;}.feature-list,.application-list{display:grid;gap:13px;margin-top:14px;color:#4b5563;font-size:.92rem;}.feature-list li,.application-list li{display:flex;align-items:center;gap:13px;}.feature-list i,.application-list i{color:#ff174f;font-size:1rem;width:18px;text-align:center;}.detail-cta{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:20px;margin-top:30px;padding:16px 22px;border:1px solid #e4e7ec;border-radius:7px;background:#fff;}.detail-cta-icon{width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#ff174f;color:#fff;}.detail-cta p{color:#4b5563;font-size:.95rem;}@media(max-width:960px){.product-detail-hero,.product-detail-content{grid-template-columns:1fr;}.product-main-image{height:300px;}.technical-drawing-card{grid-template-columns:1fr;}.detail-cta{grid-template-columns:auto 1fr;}.detail-cta .product-enquiry-btn{grid-column:1/-1;justify-self:start;}}@media(max-width:560px){.product-detail-section{padding-top:calc(var(--header-h) + 24px);}.product-thumbs{grid-template-columns:repeat(2,1fr);padding:12px;}.product-main-image{height:260px;padding:22px;}.technical-drawing-card{padding:22px 18px 62px;}.drawing-face::before{left:48px;}.drawing-face::after{right:48px;}.detail-cta{grid-template-columns:1fr;}.product-enquiry-btn{width:100%;}}
