/* ==========================================================================
   Global Power Technologies — Main Stylesheet
   Custom rebuild (HTML/CSS/JS) of the WordPress/Woodmart original.
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--gpt-font-body);
  font-size: var(--gpt-text-size);
  font-weight: var(--gpt-text-weight);
  line-height: 1.7;
  color: var(--gpt-text);
  background: var(--gpt-white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gpt-link); text-decoration: none; transition: color var(--gpt-transition); }
a:hover { color: var(--gpt-primary); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--gpt-font-title);
  color: var(--gpt-title);
  font-weight: 700;
  line-height: 1.25;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: calc(var(--gpt-container) + var(--gpt-container-pad) * 2);
  margin-inline: auto;
  padding-inline: var(--gpt-container-pad);
}
.section { padding: 84px 0; }
.section--tight { padding: 60px 0; }
.section--light { background: var(--gpt-light); }
.text-center { text-align: center; }
.grid { display: grid; gap: 28px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  font-family: var(--gpt-font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .3px;
  border-radius: var(--gpt-radius-pill);
  transition: all var(--gpt-transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary { background: var(--gpt-primary); color: #fff; }
.btn--primary:hover { background: var(--gpt-primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(242,117,7,.32); }
.btn--accent { background: var(--gpt-accent); color: #fff; }
.btn--accent:hover { background: var(--gpt-accent-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(3,173,239,.32); }
.btn--ghost { background: transparent; color: var(--gpt-title); border: 1px solid var(--gpt-border-strong); }
.btn--ghost:hover { background: var(--gpt-title); color: #fff; border-color: var(--gpt-title); }
.btn--light { background: #fff; color: var(--gpt-title); }
.btn--light:hover { background: var(--gpt-primary); color: #fff; }

/* ---------- Section heading ---------- */
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head__eyebrow {
  display: inline-block;
  font-family: var(--gpt-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gpt-primary);
  margin-bottom: 14px;
}
.section-head__title { font-size: clamp(28px, 4vw, 40px); color: var(--gpt-title); }
.section-head__title span { color: var(--gpt-primary); }
.section-head__text { margin-top: 16px; font-size: 16px; color: var(--gpt-text); }
.section-head--left { margin-inline: 0; text-align: left; }

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar {
  background: var(--gpt-dark);
  color: #cfd6e2;
  font-size: 13px;
  height: var(--gpt-topbar-h);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: var(--gpt-topbar-h); }
.topbar__contacts { display: flex; align-items: center; gap: 26px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; color: #cfd6e2; }
.topbar__item i { color: var(--gpt-primary); }
.topbar__item:hover { color: #fff; }
.topbar__socials { display: flex; align-items: center; gap: 8px; }
.topbar__socials a {
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,.08); color: #cfd6e2; font-size: 13px;
}
.topbar__socials a:hover { background: var(--gpt-primary); color: #fff; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 var(--gpt-border);
  transition: box-shadow var(--gpt-transition);
}
.header.is-stuck { box-shadow: var(--gpt-shadow-sm); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--gpt-header-h);
}
.header__logo { display: flex; align-items: center; gap: 12px; }
.header__logo img { height: 58px; width: auto; }

/* Primary nav */
.nav { display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: 6px; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  font-size: var(--gpt-nav-size);
  font-weight: 500;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--gpt-link);
}
.nav__link:hover, .nav__item.is-active > .nav__link { color: var(--gpt-primary); }
.nav__item { position: relative; }
.nav__item--has-children > .nav__link::after {
  content: "\f107"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  font-size: 11px; transition: transform var(--gpt-transition);
}
.nav__item--has-children:hover > .nav__link::after { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 268px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--gpt-shadow);
  padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--gpt-transition);
  border-top: 3px solid var(--gpt-primary);
}
.nav__item--has-children:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown__link {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 8px;
  font-size: 14px; color: var(--gpt-heading); font-weight: 500;
  white-space: nowrap;
}
.dropdown__link i { color: var(--gpt-primary); font-size: 13px; width: 16px; }
.dropdown__link:hover { background: var(--gpt-primary-soft); color: var(--gpt-primary); padding-left: 18px; }

.header__actions { display: flex; align-items: center; gap: 14px; }
.header__cta { display: inline-flex; }

/* Burger */
.burger { display: none; width: 44px; height: 44px; border-radius: 8px; color: var(--gpt-title); font-size: 22px; }
.burger:hover { background: var(--gpt-light); }

/* ==========================================================================
   MOBILE NAV
   ========================================================================== */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw);
  background: #fff; z-index: 1200;
  transform: translateX(100%); transition: transform var(--gpt-transition);
  box-shadow: var(--gpt-shadow-lg); overflow-y: auto; padding: 20px;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--gpt-border); margin-bottom: 12px; }
.mobile-nav__close { font-size: 24px; color: var(--gpt-title); width: 40px; height: 40px; }
.mobile-nav__link { display: flex; align-items: center; justify-content: space-between; padding: 13px 6px; font-size: 15px; font-weight: 500; color: var(--gpt-title); text-transform: uppercase; letter-spacing: .5px; border-bottom: 1px solid var(--gpt-border); }
.mobile-nav__sub { max-height: 0; overflow: hidden; transition: max-height var(--gpt-transition); }
.mobile-nav__sub.is-open { max-height: 500px; }
.mobile-nav__sub a { display: block; padding: 11px 18px; font-size: 14px; color: var(--gpt-text); border-bottom: 1px solid var(--gpt-light); }
.mobile-nav__toggle { transition: transform var(--gpt-transition); }
.mobile-nav__toggle.is-open { transform: rotate(180deg); }
.overlay { position: fixed; inset: 0; background: rgba(15,20,30,.5); opacity: 0; visibility: hidden; transition: all var(--gpt-transition); z-index: 1100; }
.overlay.is-open { opacity: 1; visibility: visible; }

/* ==========================================================================
   HOME BANNER — full-width image carousel (matches the live site:
   1 slide at a time, autoplay 2s, 500ms slide, arrows, infinite, pause on hover)
   ========================================================================== */
.hbanner { position: relative; overflow: hidden; }
.hbanner__track { display: flex; transition: transform .5s ease; will-change: transform; }
/* All slides share one strip height (3:1 like the original banners);
   mixed-size/portrait banners letterbox inside it instead of stretching the page */
.hbanner__slide { flex: 0 0 100%; aspect-ratio: 3 / 1; min-height: 260px; max-height: 640px; background: #fff; }
.hbanner__slide img { width: 100%; height: 100%; object-fit: contain; display: block; }
@media (max-width: 680px) { .hbanner__slide { aspect-ratio: 16 / 9; } }
.hbanner__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.85); color: var(--gpt-title); display: grid; place-items: center; font-size: 18px; box-shadow: var(--gpt-shadow-sm); transition: all var(--gpt-transition); }
.hbanner__arrow:hover { background: var(--gpt-primary); color: #fff; }
.hbanner__arrow--prev { left: 18px; }
.hbanner__arrow--next { right: 18px; }
@media (max-width: 680px) { .hbanner__arrow { width: 38px; height: 38px; font-size: 15px; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; background: linear-gradient(120deg, #10233b 0%, #1c3a5e 55%, #0f2942 100%); color: #fff; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(3,173,239,.25), transparent 45%), radial-gradient(circle at 15% 85%, rgba(242,117,7,.22), transparent 45%); }
.hero__slides { position: relative; }
.hero__slide { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; min-height: 560px; padding: 60px 0; }
.hero__slide { display: none; }
.hero__slide.is-active { display: grid; animation: fadeUp .7s ease; }
.hero__content { position: relative; z-index: 2; max-width: 560px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gpt-accent); margin-bottom: 20px; }
.hero__eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gpt-accent); }
.hero__title { font-size: clamp(34px, 5vw, 56px); line-height: 1.1; color: #fff; margin-bottom: 22px; }
.hero__title span { color: var(--gpt-primary); }
.hero__text { font-size: 17px; color: #c8d3e2; margin-bottom: 34px; max-width: 500px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__media { position: relative; z-index: 2; }
.hero__media img { border-radius: 16px; box-shadow: var(--gpt-shadow-lg); }
.hero__dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5; }
.hero__dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.35); transition: all var(--gpt-transition); }
.hero__dot.is-active { background: var(--gpt-primary); width: 30px; border-radius: 6px; }
.hero__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; font-size: 18px; transition: all var(--gpt-transition); }
.hero__arrow:hover { background: var(--gpt-primary); }
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }

/* ==========================================================================
   SERVICE SCROLL STRIP (marquee under hero — matches the live site)
   ========================================================================== */
.scroll-strip { overflow: hidden; padding: 16px 0; background: var(--gpt-light); border-block: 1px solid var(--gpt-border); }
.scroll-track { display: flex; gap: 16px; width: max-content; animation: scrollLeft 26s linear infinite; }
.scroll-strip:hover .scroll-track { animation-play-state: paused; }
.scroll-item { min-width: 260px; display: flex; align-items: center; gap: 10px; padding: 9px 14px; border-radius: 8px; background: #fff; border: 1px solid #e5eef5; transition: .25s ease; }
.scroll-item:hover { border-color: var(--gpt-accent); box-shadow: 0 6px 16px rgba(3,173,239,.15); transform: translateY(-2px); }
.scroll-icon { width: 30px; height: 30px; min-width: 30px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: #fff; background: var(--gpt-accent); }
.scroll-text { font-size: 13.5px; font-weight: 600; color: #222; white-space: nowrap; }
@keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* About Company — circular product diagram variant */
.about--company .about__diagram { display: grid; place-items: center; }
.about--company .about__diagram img { border-radius: 0; box-shadow: none; max-width: 520px; width: 100%; }

/* Trust bar under hero */
.trustbar { background: var(--gpt-primary); color: #fff; }
.trustbar__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 26px 0; }
.trust { display: flex; align-items: center; gap: 14px; }
.trust i { font-size: 30px; opacity: .9; }
.trust__num { font-family: var(--gpt-font-title); font-size: 26px; font-weight: 800; line-height: 1; }
.trust__label { font-size: 13px; opacity: .92; }

/* ==========================================================================
   ABOUT (home)
   ========================================================================== */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--gpt-radius-lg); box-shadow: var(--gpt-shadow); }
.about__badge { position: absolute; right: -18px; bottom: -18px; background: var(--gpt-primary); color: #fff; border-radius: var(--gpt-radius-lg); padding: 22px 26px; box-shadow: var(--gpt-shadow); text-align: center; }
.about__badge b { font-family: var(--gpt-font-title); font-size: 34px; display: block; line-height: 1; }
.about__badge span { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.about__list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 24px 0 30px; }
.about__list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--gpt-heading); font-weight: 500; }
.about__list i { color: var(--gpt-primary); }

/* ==========================================================================
   PRODUCT / SERVICE CARDS
   ========================================================================== */
.cards { grid-template-columns: repeat(4, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }

.pcard { background: #fff; border: 1px solid var(--gpt-border); border-radius: var(--gpt-radius-lg); overflow: hidden; transition: all var(--gpt-transition); }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--gpt-shadow); border-color: transparent; }
.pcard__media { aspect-ratio: 4 / 3; background: var(--gpt-light); display: grid; place-items: center; overflow: hidden; padding: 18px; }
.pcard__media img { max-height: 100%; width: auto; object-fit: contain; transition: transform .5s ease; }
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard__body { padding: 20px 22px 24px; }
.pcard__title { font-size: 17px; color: var(--gpt-title); margin-bottom: 8px; }
.pcard__title a:hover { color: var(--gpt-primary); }
.pcard__text { font-size: 14px; margin-bottom: 14px; }
.pcard__link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--gpt-primary); }
.pcard__link i { transition: transform var(--gpt-transition); }
.pcard__link:hover i { transform: translateX(4px); }

/* Service card (icon based) */
.scard { position: relative; background: #fff; border: 1px solid var(--gpt-border); border-radius: var(--gpt-radius-lg); padding: 34px 28px; transition: all var(--gpt-transition); overflow: hidden; }
.scard::before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px; background: var(--gpt-primary); transform: scaleY(0); transform-origin: top; transition: transform var(--gpt-transition); }
.scard:hover { box-shadow: var(--gpt-shadow); transform: translateY(-6px); border-color: transparent; }
.scard:hover::before { transform: scaleY(1); }
.scard__icon { width: 66px; height: 66px; border-radius: 16px; display: grid; place-items: center; font-size: 28px; color: var(--gpt-primary); background: var(--gpt-primary-soft); margin-bottom: 22px; transition: all var(--gpt-transition); }
.scard:hover .scard__icon { background: var(--gpt-primary); color: #fff; transform: rotate(-6deg); }
.scard__title { font-size: 19px; margin-bottom: 12px; }
.scard__text { font-size: 14.5px; margin-bottom: 16px; }
.scard__link { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--gpt-primary); display: inline-flex; gap: 8px; align-items: center; }
.scard__link i { transition: transform var(--gpt-transition); }
.scard__link:hover i { transform: translateX(4px); }

/* ==========================================================================
   OUR PRODUCTS & SOLUTIONS (service cards w/ two buttons — matches live)
   ========================================================================== */
.psol { background: var(--gpt-accent-soft); }
.psol-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 44px; flex-wrap: wrap; }
.psol-head__title { font-size: clamp(26px, 3.4vw, 38px); color: var(--gpt-title); }
.psol-head__sub { margin-top: 8px; color: var(--gpt-text); font-size: 15px; }
.psol-head__link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--gpt-primary); border-bottom: 2px solid var(--gpt-primary); padding-bottom: 3px; }
.psol-head__link:hover { color: var(--gpt-primary-dark); gap: 12px; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card { background: #fff; border-radius: 14px; padding: 28px 26px; box-shadow: var(--gpt-shadow-sm); display: flex; flex-direction: column; transition: all var(--gpt-transition); }
.svc-card:hover { box-shadow: var(--gpt-shadow); transform: translateY(-5px); }
.svc-card__icon { width: 54px; height: 54px; border-radius: 12px; background: var(--gpt-primary); color: #fff; display: grid; place-items: center; font-size: 22px; margin-bottom: 20px; transition: all var(--gpt-transition); }
.svc-card:hover .svc-card__icon { transform: rotate(-6deg) scale(1.05); }
.svc-card__title { font-size: 18px; margin-bottom: 10px; color: var(--gpt-title); }
.svc-card__text { font-size: 14px; color: var(--gpt-text); margin-bottom: 18px; flex: 1; }
.svc-card__divider { border-top: 1px solid var(--gpt-border); margin-bottom: 18px; }
.svc-card__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.svc-card__actions .btn { padding: 9px 18px; font-size: 13px; }
.btn--line { background: #fff; color: var(--gpt-title); border: 1px solid #bfe3f3; }
.btn--line:hover { background: var(--gpt-accent); border-color: var(--gpt-accent); color: #fff; }
@media (max-width: 992px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .svc-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   WHY CHOOSE
   ========================================================================== */
.why { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.feature { display: flex; gap: 16px; }
.feature__icon { flex: none; width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; background: var(--gpt-accent-soft); color: var(--gpt-accent); font-size: 22px; transition: all var(--gpt-transition); }
.feature:hover .feature__icon { background: var(--gpt-accent); color: #fff; }
.feature__title { font-size: 16px; margin-bottom: 6px; }
.feature__text { font-size: 13.5px; }

/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.cta { background: linear-gradient(120deg, var(--gpt-primary) 0%, #ff9838 100%); color: #fff; border-radius: 20px; padding: 50px 56px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; box-shadow: var(--gpt-shadow); }
.cta__title { font-size: clamp(24px, 3vw, 32px); color: #fff; }
.cta__text { color: rgba(255,255,255,.9); margin-top: 8px; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi { grid-template-columns: repeat(3, 1fr); }
.tcard { background: #fff; border: 1px solid var(--gpt-border); border-radius: var(--gpt-radius-lg); padding: 32px 30px; position: relative; }
.tcard__quote { font-size: 46px; font-family: var(--gpt-font-display); color: var(--gpt-primary); line-height: 1; opacity: .25; }
.tcard__text { font-size: 15px; color: var(--gpt-heading); font-style: italic; margin: 6px 0 22px; }
.tcard__stars { color: #ffb100; margin-bottom: 14px; font-size: 14px; }
.tcard__author { display: flex; align-items: center; gap: 14px; }
.tcard__avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--gpt-primary-soft); color: var(--gpt-primary); display: grid; place-items: center; font-weight: 700; font-family: var(--gpt-font-title); }
.tcard__name { font-family: var(--gpt-font-title); font-weight: 700; color: var(--gpt-title); font-size: 15px; }
.tcard__role { font-size: 13px; color: var(--gpt-muted); }

/* ==========================================================================
   BLOG CARDS (WoodMart-style — matches the live site)
   ========================================================================== */
.bcard { background: #fff; border-radius: var(--gpt-radius-lg); box-shadow: var(--gpt-shadow-sm); overflow: hidden; text-align: center; transition: all var(--gpt-transition); }
.bcard:hover { box-shadow: var(--gpt-shadow); transform: translateY(-5px); }
.bcard__media { position: relative; overflow: hidden; }
.bcard__media img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; transition: transform .6s ease; }
.bcard:hover .bcard__media img { transform: scale(1.05); }
.bcard__date { position: absolute; top: 16px; left: 16px; background: #fff; border-radius: 6px; padding: 9px 12px 7px; line-height: 1; box-shadow: var(--gpt-shadow-sm); min-width: 48px; }
.bcard__date b { display: block; font-family: var(--gpt-font-title); font-size: 20px; font-weight: 700; color: var(--gpt-title); }
.bcard__date span { display: block; font-size: 11px; letter-spacing: .5px; text-transform: uppercase; color: var(--gpt-muted); margin-top: 3px; }
.bcard__cat { position: absolute; left: 50%; bottom: -13px; transform: translateX(-50%); background: var(--gpt-primary); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .6px; text-transform: uppercase; padding: 7px 16px; border-radius: 3px; white-space: nowrap; }
.bcard__cat:hover { background: var(--gpt-primary-dark); color: #fff; }
.bcard__body { padding: 34px 28px 30px; }
.bcard__title { font-size: 22px; line-height: 1.3; margin-bottom: 16px; }
.bcard__title a { color: var(--gpt-title); }
.bcard__title a:hover { color: var(--gpt-primary); }
.bcard__meta { display: flex; align-items: center; justify-content: center; gap: 16px; font-size: 13px; color: var(--gpt-muted); margin-bottom: 18px; }
.bcard__meta-item { display: inline-flex; align-items: center; gap: 7px; }
.bcard__avatar { width: 20px; height: 20px; border-radius: 50%; background: var(--gpt-primary-soft); color: var(--gpt-primary); display: grid; place-items: center; font-size: 10px; }
.bcard__meta a { color: var(--gpt-muted); }
.bcard__meta a:hover { color: var(--gpt-primary); }
.bcard__excerpt { font-size: 14.5px; color: var(--gpt-text); margin-bottom: 20px; }
.bcard__more { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--gpt-primary); }
.bcard__more i { transition: transform var(--gpt-transition); }
.bcard__more:hover i { transform: translateX(4px); }

/* ==========================================================================
   OUR NEW ARTICLES (home — simple centred blog cards)
   ========================================================================== */
.arts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.acard { background: #fff; border: 1px solid var(--gpt-border); border-radius: 4px; overflow: hidden; text-align: center; transition: all var(--gpt-transition); }
.acard:hover { box-shadow: var(--gpt-shadow); transform: translateY(-5px); }
.acard__img { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.acard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.acard:hover .acard__img img { transform: scale(1.06); }
.acard__body { padding: 26px 24px 28px; }
.acard__title { font-size: 20px; line-height: 1.35; margin-bottom: 14px; }
.acard__title a { color: var(--gpt-title); }
.acard__title a:hover { color: var(--gpt-primary); }
.acard__excerpt { font-size: 13.5px; color: var(--gpt-text); line-height: 1.7; margin-bottom: 18px; }
.acard__more { font-size: 12.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--gpt-primary); }
.acard__more:hover { color: var(--gpt-primary-dark); }
@media (max-width: 900px) { .arts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .arts-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   CERTIFICATIONS & COMPLIANCE (values copied from the live site)
   ========================================================================== */
.cert-heading { text-align: center; margin-bottom: 40px; }
.cert-heading h2 { font-family: var(--gpt-font-display); font-size: clamp(24px, 3.5vw, 34px); font-weight: 800; color: #1a1a1a; display: inline-flex; align-items: center; gap: 10px; }
.cert-heading h2 span { color: var(--gpt-primary); }
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.cert-card { background: #fff; border-radius: 18px; padding: 32px 20px 28px; text-align: center; border: 1px solid rgba(0,0,0,.06); box-shadow: 0 4px 20px rgba(0,0,0,.06); position: relative; overflow: hidden; transition: transform .35s cubic-bezier(.23,1,.32,1), box-shadow .35s ease, border-color .3s; }
.cert-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #f27507, #ff9a3c); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; border-radius: 18px 18px 0 0; }
.cert-card:hover::before { transform: scaleX(1); }
.cert-card::after { content: ""; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(105deg, transparent 40%, rgba(242,117,7,.06) 50%, transparent 60%); transition: left .7s ease; pointer-events: none; }
.cert-card:hover::after { left: 160%; }
.cert-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 50px rgba(242,117,7,.12), 0 4px 16px rgba(0,0,0,.08); border-color: rgba(242,117,7,.2); }
.cert-icon { font-size: 36px; margin-bottom: 16px; display: block; transition: transform .4s cubic-bezier(.23,1,.32,1); }
.cert-card:hover .cert-icon { transform: scale(1.15) rotate(-4deg); }
.cert-name { font-family: var(--gpt-font-alt); font-size: 15px; font-weight: 700; color: var(--gpt-primary); margin-bottom: 8px; letter-spacing: .2px; }
.cert-desc { font-family: var(--gpt-font-alt); font-size: 13px; color: #777; line-height: 1.5; }
@media (max-width: 800px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cert-grid { grid-template-columns: 1fr 1fr; gap: 14px; } .cert-card { padding: 24px 14px 20px; } }

/* ==========================================================================
   OUR PARTNERS (logo grid)
   ========================================================================== */
.partners-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 44px 30px; align-items: center; justify-items: center; }
.partners-grid__item { display: grid; place-items: center; height: 78px; transition: transform var(--gpt-transition); }
.partners-grid__item img { max-height: 70px; max-width: 150px; width: auto; object-fit: contain; }
.partners-grid__item:hover { transform: translateY(-5px); }
@media (max-width: 992px) { .partners-grid { grid-template-columns: repeat(4, 1fr); gap: 34px 20px; } }
@media (max-width: 600px) { .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 26px 14px; } .partners-grid__item { height: 60px; } .partners-grid__item img { max-height: 52px; } }

/* ==========================================================================
   OUR PRODUCTS carousel (home, below testimonials — mirrors the live site)
   ========================================================================== */
.prodc { position: relative; padding: 0 42px; }
.prodc__track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 60px) / 3); gap: 30px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
.prodc__track::-webkit-scrollbar { display: none; width: 0; height: 0; }
.prodc__item { scroll-snap-align: start; }
.prodc__img { height: 300px; display: grid; place-items: center; background: #fff; overflow: hidden; }
.prodc__img img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform .5s ease; }
.prodc__item:hover .prodc__img img { transform: scale(1.05); }
.prodc__name { font-family: var(--gpt-font-title); font-weight: 600; font-size: 16px; color: var(--gpt-title); margin: 16px 0 8px; }
.prodc__more { font-size: 13px; font-weight: 700; color: var(--gpt-title); border-bottom: 1px solid var(--gpt-title); padding-bottom: 2px; }
.prodc__more:hover { color: var(--gpt-primary); border-color: var(--gpt-primary); }
.prodc__arrow { position: absolute; top: 132px; width: 40px; height: 40px; border-radius: 50%; background: transparent; color: #9aa3ad; display: grid; place-items: center; font-size: 22px; transition: all var(--gpt-transition); z-index: 2; }
.prodc__arrow:hover { color: var(--gpt-primary); }
.prodc__arrow--prev { left: 0; } .prodc__arrow--next { right: 0; }
.prodc__dots { display: flex; justify-content: center; gap: 9px; margin-top: 26px; }
.prodc__dot { width: 9px; height: 9px; border-radius: 50%; background: #d8dde3; transition: all var(--gpt-transition); }
.prodc__dot.is-active { background: #2b2f36; }
@media (max-width: 900px) { .prodc { padding: 0; } .prodc__track { grid-auto-columns: calc((100% - 30px)/2); } .prodc__arrow { display: none; } }
@media (max-width: 600px) { .prodc__track { grid-auto-columns: 82%; } .prodc__img { height: 240px; } }

/* ==========================================================================
   TESTIMONIALS — "What Our Customers Say" (mirrors the live site exactly)
   ========================================================================== */
.testimonial-wrap { display: flex; gap: 28px; overflow-x: auto; padding: 20px 10px; scroll-behavior: smooth; }
.testimonial-card { min-width: 320px; max-width: 320px; background: linear-gradient(180deg, #eef7fd, #e2f1fb); padding: 24px; border-radius: 16px; box-shadow: 0 10px 25px rgba(0,0,0,.08); position: relative; transition: .35s; }
.testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(242,117,7,.25); }
.testimonial-card .avatar { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, #f27507, #ff9a2f); color: #fff; font-weight: 700; font-size: 22px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 18px rgba(242,117,7,.35); margin-bottom: 10px; font-family: var(--gpt-font-title); }
.testimonial-card .verify { position: absolute; left: 60px; top: 60px; background: var(--gpt-accent); color: #fff; font-size: 12px; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.testimonial-card .name { font-weight: 700; font-size: 17px; margin-top: 6px; color: var(--gpt-title); font-family: var(--gpt-font-title); }
.testimonial-card .review { background: #fff; padding: 14px; border-radius: 10px; margin-top: 14px; border-left: 3px solid var(--gpt-primary); font-size: 14px; color: #444; line-height: 1.7; }
.testimonial-card .verified { color: var(--gpt-accent); font-size: 13px; margin-top: 10px; font-weight: 600; }

/* Client logos */
.clients { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 44px; }
.clients img { height: 46px; width: auto; filter: grayscale(1); opacity: .55; transition: all var(--gpt-transition); }
.clients img:hover { filter: grayscale(0); opacity: 1; }

/* ==========================================================================
   OUR CLIENT (logo row — matches the live site)
   ========================================================================== */
.our-client__head { margin-bottom: 40px; }
.our-client__head h2 { font-size: clamp(26px, 3.4vw, 34px); color: var(--gpt-title); font-weight: 500; }
.our-client__head h2 strong { font-weight: 800; }
.our-client__head p { margin-top: 8px; color: var(--gpt-text); font-size: 15px; }
.client-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 34px 48px; }
.client-logos__item { display: grid; place-items: center; height: 72px; transition: transform var(--gpt-transition); }
.client-logos__item img { max-height: 72px; max-width: 168px; width: auto; object-fit: contain; }
.client-logos__item:hover { transform: translateY(-4px); }

/* Auto-scrolling client logo carousel (matches the live site) */
.client-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.client-marquee__track { display: flex; align-items: center; gap: 64px; width: max-content; animation: scrollLeft 34s linear infinite; }
.client-marquee:hover .client-marquee__track { animation-play-state: paused; }
.client-marquee__item { flex: none; height: 64px; display: grid; place-items: center; transition: transform var(--gpt-transition); }
.client-marquee__item img { max-height: 60px; max-width: 155px; width: auto; object-fit: contain; }
.client-marquee__item:hover { transform: translateY(-4px); }

/* ==========================================================================
   ABOUT OUR COMPANY — founder card (MP Singh)
   ========================================================================== */
.founder { background: var(--gpt-accent-soft); }
.founder__card { background: #fff; border-radius: 26px; box-shadow: var(--gpt-shadow); display: grid; grid-template-columns: 380px 1fr; overflow: hidden; }
.founder__photo { position: relative; min-height: 460px; }
.founder__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.founder__photo-caption { position: absolute; inset: auto 0 0 0; padding: 26px 22px 24px; background: linear-gradient(transparent, rgba(10,16,26,.85)); color: #fff; text-align: center; }
.founder__badge { display: inline-block; background: var(--gpt-primary); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .6px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 12px; }
.founder__photo-name { font-family: var(--gpt-font-title); font-weight: 700; font-size: 20px; }
.founder__photo-sub { font-size: 13px; opacity: .85; }
.founder__body { padding: 46px 50px; position: relative; }
.founder__qmark { font-family: var(--gpt-font-display); font-size: 70px; line-height: .8; color: var(--gpt-primary); opacity: .18; position: absolute; top: 30px; left: 46px; }
.founder__title { font-family: var(--gpt-font-display); font-size: clamp(26px, 3vw, 34px); color: var(--gpt-title); position: relative; }
.founder__title span { color: var(--gpt-primary); }
.founder__role-top { display: flex; align-items: center; gap: 14px; color: var(--gpt-primary); font-weight: 600; font-size: 13.5px; margin: 10px 0 22px; }
.founder__role-top::after { content: ""; height: 1px; width: 60px; background: var(--gpt-primary); opacity: .5; }
.founder__quote { font-style: italic; font-size: 16.5px; line-height: 1.7; color: var(--gpt-heading); margin-bottom: 18px; }
.founder__text { font-size: 15px; color: var(--gpt-text); padding-bottom: 22px; border-bottom: 1px solid var(--gpt-border); margin-bottom: 20px; }
.founder__sign-name { font-family: var(--gpt-font-title); font-weight: 700; color: var(--gpt-title); font-size: 16px; }
.founder__sign-role { color: var(--gpt-primary); font-size: 13.5px; margin-bottom: 22px; }
@media (max-width: 860px) {
  .founder__card { grid-template-columns: 1fr; }
  .founder__photo { min-height: 360px; }
  .founder__body { padding: 36px 28px; }
  .founder__qmark { left: 26px; }
}

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero { position: relative; background: linear-gradient(120deg, #10233b, #1c3a5e); color: #fff; padding: 66px 0; text-align: center; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(3,173,239,.22), transparent 45%), radial-gradient(circle at 10% 90%, rgba(242,117,7,.2), transparent 45%); }
.page-hero--img { padding: 96px 0; background-size: cover; background-position: center; }
.page-hero--img::after { background: linear-gradient(180deg, rgba(16,25,40,.55), rgba(16,25,40,.4)); }
.page-hero--img .page-hero__title { font-size: clamp(40px, 6vw, 68px); text-shadow: 0 2px 18px rgba(0,0,0,.25); }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero__title { font-size: clamp(30px, 4.5vw, 46px); color: #fff; margin-bottom: 12px; }
.breadcrumb { display: flex; gap: 10px; justify-content: center; font-size: 14px; color: #c8d3e2; }
.breadcrumb a { color: #c8d3e2; }
.breadcrumb a:hover { color: var(--gpt-primary); }
.breadcrumb span { color: var(--gpt-primary); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.contact__info { display: grid; gap: 18px; }
.info-card { display: flex; gap: 16px; background: #fff; border: 1px solid var(--gpt-border); border-radius: var(--gpt-radius-lg); padding: 22px 24px; }
.info-card__icon { flex: none; width: 52px; height: 52px; border-radius: 12px; background: var(--gpt-primary-soft); color: var(--gpt-primary); display: grid; place-items: center; font-size: 20px; }
.info-card__label { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--gpt-muted); margin-bottom: 4px; }
.info-card__value { font-family: var(--gpt-font-title); font-weight: 600; color: var(--gpt-title); font-size: 16px; }
.form { background: #fff; border: 1px solid var(--gpt-border); border-radius: var(--gpt-radius-lg); padding: 34px; box-shadow: var(--gpt-shadow-sm); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--gpt-heading); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 18px; font-family: inherit; font-size: 15px; color: var(--gpt-title);
  border: 1px solid var(--gpt-border-strong); border-radius: 12px; background: #fff; transition: all var(--gpt-transition);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gpt-primary); box-shadow: 0 0 0 3px rgba(242,117,7,.12); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: #f5f6f7; color: #6b7280; padding-top: 64px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1.15fr 1.5fr; gap: 40px; padding-bottom: 46px; }
.footer__logo img { height: 74px; margin-bottom: 18px; }
.footer__about { font-size: 14px; line-height: 1.8; color: #6b7280; }
.footer h4 { color: #1f2937; font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.footer__links li { margin-bottom: 13px; }
.footer__links a { color: #6b7280; font-size: 14px; }
.footer__links a:hover { color: var(--gpt-primary); }
.footer__contact li { display: flex; gap: 10px; margin-bottom: 13px; font-size: 14px; align-items: flex-start; }
.footer__contact i { color: #9aa3ad; margin-top: 4px; font-size: 13px; width: 14px; }
.footer__contact a { color: #6b7280; }
.footer__contact a:hover { color: var(--gpt-primary); }
.footer__addr { color: #9aa3ad; line-height: 1.7; }
.footer__socials { display: flex; gap: 8px; margin-top: 18px; }
.footer__socials a { width: 30px; height: 30px; border-radius: 50%; color: #fff; display: grid; place-items: center; font-size: 13px; transition: transform var(--gpt-transition), opacity var(--gpt-transition); }
.footer__socials a:hover { transform: translateY(-3px); opacity: .85; color: #fff; }
.footer__socials .s-fb { background: #1b3d8f; }
.footer__socials .s-x { background: #111; }
.footer__socials .s-ig { background: #6d4c41; }
.footer__socials .s-yt { background: #e02f2f; }
.footer__socials .s-pt { background: #d5202f; }
.footer__bottom { border-top: 1px solid #e6e8ea; padding: 20px 0; text-align: center; font-size: 13px; color: #9aa3ad; }
.footer__bottom a { color: var(--gpt-primary); }
.footer__bottom a:hover { text-decoration: underline; }

/* Scroll-to-top (bottom-left) */
.to-top { position: fixed; left: 24px; bottom: 24px; width: 48px; height: 48px; border-radius: 50%; background: var(--gpt-primary); color: #fff; display: grid; place-items: center; font-size: 18px; box-shadow: var(--gpt-shadow); opacity: 0; visibility: hidden; transform: translateY(16px); transition: all var(--gpt-transition); z-index: 900; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ==========================================================================
   CHATY-STYLE CONTACT POPUP (bottom-right — like the live site)
   Toggle button expands WhatsApp + Email icons with tooltips.
   ========================================================================== */
.chaty { position: fixed; right: 24px; bottom: 24px; z-index: 950; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.chaty__item { position: relative; width: 52px; height: 52px; border-radius: 50%; color: #fff; display: grid; place-items: center; font-size: 22px; box-shadow: 0 6px 18px rgba(0,0,0,.18); opacity: 0; visibility: hidden; transform: translateY(14px) scale(.6); transition: all .28s cubic-bezier(.34,1.56,.64,1); }
.chaty.is-open .chaty__item { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chaty.is-open .chaty__item:nth-child(1) { transition-delay: .08s; }
.chaty.is-open .chaty__item:nth-child(2) { transition-delay: .02s; }
.chaty__item:hover { color: #fff; filter: brightness(1.06); }
.chaty__item--wa { background: #4dc862; }
.chaty__item--mail { background: #f5455c; font-size: 19px; }
.chaty__tip { position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%); background: #fff; color: #333; font-size: 13px; font-weight: 500; padding: 6px 13px; border-radius: 8px; box-shadow: 0 4px 14px rgba(0,0,0,.15); white-space: nowrap; opacity: 0; visibility: hidden; transition: opacity .2s ease; pointer-events: none; }
.chaty__tip::after { content: ""; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: #fff; }
.chaty__item:hover .chaty__tip { opacity: 1; visibility: visible; }
.chaty__toggle { width: 54px; height: 54px; border-radius: 50%; background: #a883e0; color: #fff; display: grid; place-items: center; font-size: 22px; box-shadow: 0 6px 18px rgba(0,0,0,.2); transition: all .3s ease; }
.chaty__toggle:hover { transform: scale(1.06); }
.chaty__toggle i { transition: transform .3s ease; }
.chaty.is-open .chaty__toggle i { transform: rotate(135deg); }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-in { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  /* Only neutralise decorative reveals — never functional transforms (carousels etc.) */
  [data-reveal] { transition: none !important; opacity: 1 !important; transform: none !important; }
  .scroll-track, .client-marquee__track { animation-duration: 60s; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
  .header__cta { display: none; }
  .nav { display: none; }
  .burger { display: grid; }
  .hero__slide { grid-template-columns: 1fr; text-align: center; min-height: auto; }
  .hero__content { margin: 0 auto; }
  .hero__media { display: none; }
  .hero__eyebrow, .hero__actions { justify-content: center; }
  .about, .why, .contact { grid-template-columns: 1fr; gap: 40px; }
  .trustbar__inner { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .cards, .cards--3, .testi { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .section { padding: 60px 0; }
  .topbar__socials, .topbar__item--email { display: none; }
  .cards, .cards--3, .testi, .about__list, .why__grid, .form__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .cta { padding: 36px 28px; text-align: center; justify-content: center; }
  .about__badge { position: static; display: inline-block; margin-top: 16px; }
}
