/*
Theme Name: Chemtromech
Theme URI: https://example.com
Author: Chemtromech
Description: Converted from static HTML to WordPress theme.
Version: 1.0
Text Domain: chemtromech
*/

:root{
  --blue:#0b5ed7;
  --dark:#0f172a;
  --light:#ffffff;
  --line:rgba(0,0,0,.12);
  --max:1200px;

  /* ✅ Missing vars fixed */
  --white:#ffffff;
  --muted:#e9eefc;
  --btn:#0b5ed7;
  --btn2:rgba(255,255,255,.15);
}

/* RESET */
*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,Segoe UI,Roboto,Arial;
  color:var(--dark);
  background:#fff;
}
a{text-decoration:none;color:inherit}

/* ================= NAVBAR ================= */
.site-header{
  background:#fff;
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:1000;
}

.nav-wrap{
  max-width:var(--max);
  margin:auto;
  padding:10px 16px;
  display:flex;
  align-items:center;
  gap:18px;
  position:relative;
}

.brand-logo{ height:100px; }

/* NAV */
.nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex:1;
  margin-left:8px;
}

.nav-link{
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.6px;
  padding:10px 6px;
  color:#18324b;
  white-space:nowrap;
}
.nav-link:hover{opacity:.85}
.nav-link.active{border-bottom:2px solid var(--blue)}

/* Hamburger */
.nav-toggle{
  display:none;
  font-size:22px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:8px;
  padding:6px 10px;
  cursor:pointer;
}

/* ===== Dropdown ===== */
.nav-item{
  position:relative;
  display:flex;
  align-items:center;
}

.dropdown{
  position:absolute;
  top:100%;
  left:0;
  min-width:220px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  padding:8px;
  box-shadow:0 14px 30px rgba(0,0,0,.10);
  display:none;
}

.dropdown a{
  display:block;
  padding:10px 10px;
  border-radius:10px;
  font-size:13px;
  font-weight:700;
  color:#18324b;
}
.dropdown a:hover{
  background:rgba(11,94,215,.08);
}

/* ✅ DESKTOP: hover OFF, only .open controls dropdown */
@media (min-width:901px){
  .site-header .nav-item.has-drop > .dropdown{ display:none !important; }
  .site-header .nav-item.has-drop:hover > .dropdown{ display:none !important; }
  .site-header .nav-item.has-drop.open > .dropdown{ display:block !important; }
}

/* ✅ MOBILE: open via JS class */
.nav-item.open .dropdown{ display:block; }

/* ✅ MOBILE NAVBAR */
@media (max-width: 900px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }

  .nav{
    position:absolute;
    left:16px;
    right:16px;
    top:100%;
    margin-left:0;
    background:#fff;
    border:1px solid var(--line);
    border-radius:14px;
    box-shadow:0 14px 30px rgba(0,0,0,.10);
    padding:10px;
    display:none;              /* closed by default */
    flex-direction:column;
    align-items:stretch;
    gap:6px;
  }

  .nav.open{ display:flex; }

  .nav-link{
    padding:12px 10px;
    border-radius:10px;
  }

  .nav-link.active{
    border-bottom:none;
    background:rgba(11,94,215,.08);
  }

  .nav-item{
    flex-direction:column;
    align-items:stretch;
  }

  .dropdown{
    position:static;
    box-shadow:none;
    border-radius:12px;
    margin-top:6px;
  }
}

/* =========================================================
   ✅ MINIMAL SAFE UPDATES (No layout/style change)
   - Dropdown heading clickable
   - Arrow inline + rotate when open
========================================================= */

/* heading ko clickable feel */
.drop-link{
  cursor:pointer;
  user-select:none;
  display:inline-flex;
  align-items:center;
  gap:4px; /* text + arrow spacing */
}

/* arrow (▾) */
.drop-link span[aria-hidden="true"]{
  font-size:10px;
  line-height:1;
  display:inline-block;
  transition:transform .2s ease;
}

/* ✅ open state rotate (ONLY on open) */
.nav-item.open .drop-link span[aria-hidden="true"]{
  transform:rotate(180deg);
}



/* =========================
   HERO SECTION
========================= */
.hero{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}

/* Background video */
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

/* Overlay */
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.68) 0%,
    rgba(0,0,0,.45) 55%,
    rgba(0,0,0,.25) 100%
  );
  z-index:1;
}

/* Inner wrapper */
.hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:80px 18px;
}

/* ✅ Heading + paragraph SAME width block */
.hero-left{
  width:fit-content;   /* makes container match heading width */
  max-width:92ch;      /* safety limit */
  color:var(--white);
  text-align:left;
}

/* Heading (1 line, no dots) */
.hero-title{
  margin:0 0 14px;
  font-weight:900;
  letter-spacing:-.5px;
  line-height:1.05;
  font-size:clamp(28px, 3.2vw, 54px);

  white-space:nowrap;
  overflow:visible;
  text-overflow:unset;
}

/* Paragraph text */
.hero-text{
  margin:0 0 14px;
  max-width:100%;
  font-size:clamp(14px, 1.2vw, 17px);
  line-height:1.8;
  color:var(--muted);
}

/* =========================
   BUTTONS (UNCHANGED)
========================= */
.hero-actions{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;
  border:1px solid transparent;
  background:var(--btn);
  color:#fff;
  transition:transform .15s ease, opacity .15s ease, background .15s ease;
}

.btn:hover{
  transform:translateY(-1px);
  opacity:.95;
}

.btn.btn-outline{
  background:var(--btn2);
  border-color:rgba(255,255,255,.28);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px){
  .hero-inner{ padding:70px 16px; }

  /* On small screens allow wrapping + full width */
  .hero-left{
    width:auto;
    max-width:100%;
  }

  .hero-title{
    white-space:normal;
    line-height:1.15;
  }
}

@media (max-width: 520px){
  .hero{ min-height:78vh; }
  .btn{ width:100%; }
}


/*About Section /*

/* =========================
   HOME ABOUT (IMAGE + TEXT)
========================= */
.home-about{
  background:#fff;
  padding:80px 16px;
}

.home-about-wrap{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:38px;
  align-items:center;
}

/* Text */
.home-about-text h2{
  margin:0 0 12px;
  font-size:clamp(26px, 3vw, 40px);
  font-weight:900;
  letter-spacing:-.4px;
  color:#0f172a;
}

.home-about-lead{
  margin:0 0 14px;
  font-size:16px;
  line-height:1.85;
  color:#475569;
  font-weight:600;
  max-width:68ch;
}

.home-about-text p{
  margin:0 0 14px;
  font-size:15.5px;
  line-height:1.9;
  color:#1f2937;
  max-width:72ch;
}

.home-about-smalltitle{
  margin-top:8px;
  font-weight:900;
  letter-spacing:.2px;
  color:#0f172a;
}

/* Points */
.home-about-points{
  margin:12px 0 18px;
  padding:0;
  list-style:none;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px 22px;
  max-width:72ch;
}

.home-about-points li{
  position:relative;
  padding-left:26px;
  font-weight:800;
  color:#0f172a;
}

.home-about-points li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--blue);
  font-weight:900;
}

.home-about-note{
  margin-top:10px;
  font-weight:800;
  color:#0f172a;
}

/* Image */
.home-about-media{
  position:relative;
}

.home-about-figure{
  margin:0;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.10);
  box-shadow:0 18px 40px rgba(0,0,0,.10);
  background:#fff;
}

.home-about-figure img{
  width:100%;
  height:auto;
  display:block;
}

/* Small badge (optional) */
.home-about-badge{
  position:absolute;
  right:-14px;
  bottom:18px;
  background:#0f172a;
  color:#fff;
  border-radius:16px;
  padding:12px 14px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.12);
  min-width:120px;
  text-align:left;
}

.badge-top{
  display:block;
  font-size:12px;
  opacity:.85;
  font-weight:800;
  letter-spacing:.6px;
  text-transform:uppercase;
}
.badge-big{
  display:block;
  font-size:22px;
  font-weight:900;
  line-height:1.1;
}
.badge-bottom{
  display:block;
  font-size:12px;
  opacity:.85;
  font-weight:800;
  letter-spacing:.6px;
  text-transform:uppercase;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px){
  .home-about{
    padding:60px 16px;
  }

  .home-about-wrap{
    grid-template-columns:1fr;
    gap:22px;
  }

  .home-about-badge{
    right:12px;
    bottom:12px;
  }

  .home-about-points{
    grid-template-columns:1fr;
  }
}
/*Services */

.services-section{
  padding:40px 20px 70px;
  background:transparent;
}

.services-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.services-title{
  font-size:36px;
  font-weight:800;
  margin:0 0 10px;
}

.services-subtitle{
  max-width:820px;
  margin:0 auto 32px;
  font-size:16px;
  color:#555;
}

/* Row 1 grid */
.services-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
  align-items:stretch;
}

/* Cards */
.service-card{
  background:#fff;
  padding:28px 22px;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  text-align:left;
  display:flex;
  flex-direction:column;
  min-height:220px; /* optional: equal height feel */
}

/* Row 2 wrapper (center) */
.services-row-center{
  grid-column:1 / -1;           /* full width row */
  display:flex;
  justify-content:center;       /* ✅ center 3 cards */
  gap:24px;
}

/* make row-2 cards same width as row-1 cards */
.services-row-center .service-card{
  width:calc((100% - (24px * 3)) / 4); /* exactly 1/4 width like grid cards */
}

/* ===============================
   ADD ONLY (do not change existing CSS)
   Button + light blue cards + hover
================================= */

/* Light blue card base */
.services-section .service-card{
  background:#f3f8ff;                 /* very light blue */
  border:1px solid rgba(11,94,215,.10);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* Hover effect (slightly darker + lift) */
.services-section .service-card:hover{
  background:#e7f1ff;                 /* slightly darker light-blue */
  border-color: rgba(11,94,215,.22);
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(11,94,215,.12);
}

/* Optional: heading tone on hover */
.services-section .service-card h3{
  margin:0 0 10px;
  transition: color .25s ease;
}
.services-section .service-card:hover h3{
  color:#0b5ed7;
}

/* Button styling */
.services-section .service-btn{
  margin-top:auto;                    /* button bottom stick (already flex column) */
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;

  background:#0b5ed7;
  color:#fff;

  border:1px solid rgba(11,94,215,.25);
  box-shadow: 0 10px 22px rgba(11,94,215,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

/* Button hover */
.services-section .service-btn:hover{
  background:#094fb7;                 /* darker blue */
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(11,94,215,.22);
}

/* Button active (click feel) */
.services-section .service-btn:active{
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(11,94,215,.18);
}

/* Keyboard focus */
.services-section .service-btn:focus-visible{
  outline: 3px solid rgba(11,94,215,.25);
  outline-offset: 3px;
}
/* ===============================
   ADD: Light jiggle / shimmer hover
   (safe, subtle, professional)
================================= */

/* jiggle animation */
@keyframes softJiggle {
  0%   { transform: translateY(-6px) rotate(0deg); }
  25%  { transform: translateY(-6px) rotate(0.4deg); }
  50%  { transform: translateY(-6px) rotate(-0.4deg); }
  75%  { transform: translateY(-6px) rotate(0.3deg); }
  100% { transform: translateY(-6px) rotate(0deg); }
}

/* shimmer highlight */
.services-section .service-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:16px;
  background:linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,.45),
    transparent 70%
  );
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
}

/* activate jiggle + shimmer on hover */
.services-section .service-card{
  position:relative;
  overflow:hidden;
}

.services-section .service-card:hover{
  animation: softJiggle .45s ease-in-out;
}

.services-section .service-card:hover::after{
  opacity:1;
}

/* Responsive */
@media (max-width:1024px){
  .services-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .services-row-center{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
  }

  .services-row-center .service-card{
    width:auto;
  }
}

@media (max-width:600px){
  .services-grid,
  .services-row-center{
    grid-template-columns:1fr;
  }
}


/*solutions */
/* =========================================
   SOLUTIONS (Screenshot Style)
========================================= */
.solu2-section{
  padding:70px 20px;
  background:#fff;                 /* ✅ clean like screenshot */
}

.solu2-container{
  max-width:1200px;
  margin:0 auto;
}

.solu2-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;   /* left bigger, right image */
  gap:44px;
  align-items:start;
}

/* LEFT CONTENT */
.solu2-title{
  margin:0 0 14px;
  font-size:44px;
  font-weight:900;
  letter-spacing:-.6px;
  line-height:1.05;
  color:#0f172a;
}

.solu2-desc{
  margin:0 0 18px;
  font-size:15px;
  line-height:1.7;
  color:#334155;
  max-width:620px;
}

.solu2-note{
  margin:18px 0 18px;
  font-size:15px;
  line-height:1.7;
  color:#334155;
  max-width:620px;
}

/* POINTS like screenshot (2 columns) */
.solu2-points{
  margin-top:10px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px 34px;
  max-width:720px;
}

.solu2-point{
  position:relative;
  padding-left:28px;
  font-size:15px;
  font-weight:700;
  color:#0f172a;
  line-height:1.55;
}

.solu2-point::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#0b5ed7;
  font-weight:900;
}

/* BUTTON like professional CTA */
.solu2-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  background:#0b5ed7;
  color:#fff;
  border:1px solid rgba(11,94,215,.25);
  box-shadow:0 12px 24px rgba(11,94,215,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.solu2-btn:hover{
  background:#094fb7;
  transform: translateY(-2px);
  box-shadow:0 16px 32px rgba(11,94,215,.22);
}

/* RIGHT IMAGE CARD */
.solu2-media{
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 46px rgba(0,0,0,.15);
  border:1px solid rgba(0,0,0,.08);
  background:#f3f6ff;
}

.solu2-img{
  width:100%;
  height:360px;                 /* similar to screenshot */
  object-fit:cover;
  display:block;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px){
  .solu2-grid{
    grid-template-columns:1fr;
    gap:26px;
  }

  .solu2-img{
    height:320px;
  }

  .solu2-title{
    font-size:38px;
  }
}

@media (max-width: 680px){
  .solu2-section{
    padding:56px 16px;
  }

  .solu2-title{
    font-size:32px;
  }

  .solu2-points{
    grid-template-columns:1fr;  /* mobile pe single column */
    gap:12px;
  }

  .solu2-img{
    height:260px;
  }

  .solu2-btn{
    width:100%;
  }
}

/*Products*/
/* =========================================
   PRODUCTS (Same style as Solutions)
========================================= */
.prod2-section{
  padding:70px 20px;
  background:#fff;
}

.prod2-container{
  max-width:1200px;
  margin:0 auto;
}

.prod2-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:44px;
  align-items:start;
}

/* LEFT */
.prod2-title{
  margin:0 0 14px;
  font-size:44px;
  font-weight:900;
  letter-spacing:-.6px;
  line-height:1.05;
  color:#0f172a;
}

.prod2-desc{
  margin:0 0 18px;
  font-size:15px;
  line-height:1.7;
  color:#334155;
  max-width:650px;
}

.prod2-subhead{
  margin:8px 0 12px;
  font-size:16px;
  font-weight:900;
  color:#0f172a;
}

/* Points 2 columns */
.prod2-points{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px 34px;
  max-width:720px;
  margin:0 0 18px;
}

.prod2-point{
  position:relative;
  padding-left:28px;
  font-size:15px;
  font-weight:700;
  color:#0f172a;
  line-height:1.55;
}

.prod2-point::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#0b5ed7;
  font-weight:900;
}

/* Button */
.prod2-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  background:#0b5ed7;
  color:#fff;
  border:1px solid rgba(11,94,215,.25);
  box-shadow:0 12px 24px rgba(11,94,215,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.prod2-btn:hover{
  background:#094fb7;
  transform: translateY(-2px);
  box-shadow:0 16px 32px rgba(11,94,215,.22);
}

/* RIGHT image */
.prod2-media{
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 46px rgba(0,0,0,.15);
  border:1px solid rgba(0,0,0,.08);
  background:#f3f6ff;
}

.prod2-img{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px){
  .prod2-grid{
    grid-template-columns:1fr;
    gap:26px;
  }

  .prod2-title{
    font-size:38px;
  }

  .prod2-img{
    height:320px;
  }
}

@media (max-width: 680px){
  .prod2-section{
    padding:56px 16px;
  }

  .prod2-title{
    font-size:32px;
  }

  .prod2-points{
    grid-template-columns:1fr;  /* mobile one column */
    gap:12px;
  }

  .prod2-img{
    height:260px;
  }

  .prod2-btn{
    width:100%;
  }
}


/*Industries We Serve*/

/* =========================
   INDUSTRIES WE SERVE
   (No background color)
========================= */

.industries{
  padding: 64px 0;
}

.industries__wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.industries__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding-bottom: 14px;
}

.industries__head h2{
  margin: 0;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 800;
  letter-spacing: -.3px;
  color: #101828;
}

.industries__head p{
  margin: 0;
  max-width: 520px;
  color: rgba(16,24,40,.72);
  font-weight: 600;
  line-height: 1.5;
}

.industries__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.industry-card{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px 14px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  background: transparent; /* IMPORTANT: no background color */
  box-shadow: 0 8px 20px rgba(16,24,40,.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.industry-card:hover{
  transform: translateY(-2px);
  border-color: rgba(11,94,215,.35);
  box-shadow: 0 14px 26px rgba(16,24,40,.08);
}

.industry-ico{
  width: 38px;
  height: 38px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  font-size: 18px;
  line-height: 1;
  flex: 0 0 38px;
}

.industry-card span:last-child{
  font-weight: 800;
  font-size: 14px;
  color: #101828;
  letter-spacing: .2px;
}

.industries__note{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0,0,0,.12);
  color: rgba(16,24,40,.75);
  font-weight: 650;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px){
  .industries__grid{ grid-template-columns: repeat(3, 1fr); }
  .industries__head{ flex-direction: column; align-items: flex-start; }
  .industries__head p{ max-width: 100%; }
}

@media (max-width: 680px){
  .industries__grid{ grid-template-columns: repeat(2, 1fr); }
  .industry-card{ padding: 12px; border-radius: 12px; }
  .industry-ico{ width: 36px; height: 36px; border-radius: 10px; }
}

@media (max-width: 420px){
  .industries__grid{ grid-template-columns: 1fr; }
}


/*Certificates*/

/* ==========================================
   CERTIFICATES (EXTRA LARGE + CONTINUOUS)
========================================== */

/* ===============================
   CERTIFICATES TICKER (same as clients)
================================ */

.certs-section{
  padding:50px 0;
  background:#fff;
  overflow:hidden;
}

.certs-title{
  text-align:center;
  font-size:32px;
  font-weight:800;
  margin:0 0 22px;
  color:#111;
}

/* Ticker wrapper */
.certs-ticker{
  width:100%;
  overflow:hidden;
  position:relative;
  padding:18px 0;
}

/* Track */
.certs-track{
  display:flex;
  align-items:center;
  gap:80px;
  width:max-content;
  animation: scrollCerts 80s linear infinite; /* same slow */
  will-change: transform;
}

/* Logo box */
.cert-logo{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ✅ CERT SIZE (same behavior) */
.cert-logo img{
  max-height:200px;
  max-width:200px;
  object-fit:contain;
  opacity:1;
  filter:none;
  cursor:pointer;
}

/* Animation */
@keyframes scrollCerts{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* Responsive */
@media (max-width:768px){
  .certs-track{
    gap:50px;
    animation-duration:120s;
  }

  .cert-logo img{
    max-height:100px;
    max-width:100px;
  }
}

/* ===============================
   CLIENTS SECTION
================================ */

.clients-section{
  padding:50px 0;
  background:#fff;
  overflow:hidden;
}

.clients-title{
  text-align:center;
  font-size:32px;
  font-weight:800;
  margin:0 0 22px;
  color:#111;
}

/* Ticker wrapper */
.clients-ticker{
  width:100%;
  overflow:hidden;
  position:relative;
  padding:18px 0;
}

/* Track */
.clients-track{
  display:flex;
  align-items:center;
  gap:80px;
  width:max-content;
  animation: scrollClients 100s linear infinite; /* slow */
  will-change: transform;
}

/* ❌ NO PAUSE ON HOVER (REMOVED) */

/* Logo box */
.client-logo{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ✅ LOGO SIZE 150px */
.client-logo img{
  max-height:200px;
  max-width:200px;
  object-fit:contain;
  opacity:1;
  filter:none;
  cursor:pointer;   /* cursor pointer allowed, no stop */
}

/* Animation */
@keyframes scrollClients{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* Responsive */
@media (max-width:768px){
  .clients-track{
    gap:50px;
    animation-duration:120s; /* even slower mobile */
  }

  .client-logo img{
    max-height:100px;
    max-width:100px;
  }
}


/*Footar*/

/* ===============================
   FOOTER – DARK BLUE PROFESSIONAL
================================ */

.site-footer{
  background: linear-gradient(180deg, #061a33 0%, #041225 100%);
  color:#eaf1ff;
  padding:60px 16px 24px;
  overflow:hidden;
  position:relative;
}

/* subtle light texture */
.site-footer::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 15% 20%, rgba(60,140,255,.18), transparent 55%),
    radial-gradient(circle at 85% 25%, rgba(0,255,209,.12), transparent 55%);
  pointer-events:none;
}

.footer-wrap{
  max-width:1200px;
  margin:0 auto;
  position:relative;
  z-index:1;
}

/* ===============================
   TOP GRID
================================ */

.footer-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:20px;
}

.footer-card{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:20px 20px 18px;
  box-shadow:0 12px 28px rgba(0,0,0,.22);
}

.footer-title{
  margin:0 0 10px;
  font-size:18px;
  font-weight:900;
  letter-spacing:.2px;
  color:#ffffff;
}

.footer-text{
  margin:0;
  font-size:14.5px;
  line-height:1.6;
  color:rgba(234,241,255,.88);
}

/* phone links */
.footer-links{
  margin-top:12px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-link{
  color:#ffffff;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  opacity:.92;
}

.footer-link:hover{
  opacity:1;
  text-decoration:underline;
}

/* ===============================
   MID BAR
================================ */

.footer-mid{
  margin-top:22px;
  padding:18px 20px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.footer-mid-item{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.footer-mid-label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.4px;
  font-weight:800;
  color:rgba(234,241,255,.7);
}

.footer-mid-value{
  font-size:18px;
  font-weight:900;
  color:#ffffff;
  text-decoration:none;
}

.footer-mid-phones{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}

.footer-mid-phones a{
  color:#fff;
  text-decoration:none;
}

.footer-mid-phones a:hover{
  text-decoration:underline;
}

.dot{
  opacity:.6;
}

/* ===============================
   BOTTOM
================================ */

.footer-bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.14);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.footer-social{
  display:flex;
  gap:10px;
}

.social-btn{
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  transition:.25s ease;
}

.social-btn:hover{
  background: rgba(255,255,255,.16);
}

.footer-copy{
  font-size:13px;
  font-weight:700;
  color:rgba(234,241,255,.8);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width:900px){
  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-mid{
    grid-template-columns:1fr;
  }

  .footer-mid-value{
    font-size:16px;
  }
}

/* ===== HERO ABSOLUTE CENTER FIX ===== */

.industry-hero{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.industry-hero .industry-content{
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  left: 0 !important;
  right: 0 !important;
  transform: none !important;
}

.industry-hero .industry-content h1{
  width: 100%;
  margin: 0 auto;
  text-align: center;

  position: relative !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
}
body { outline: 5px solid red !important; }

/* Blog page top spacing */
.site-main {
  margin-top: 40px;
}
/* Blog page side spacing */
.site-main .container {
  padding-left: 40px;
  padding-right: 40px;
}