/* ═══════════════════════════════════════════════════════
   Batsons Industries — Common Styles
   Shared: Reset · Tokens · Buttons · Navbar · Footer
═══════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #364153;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button, input, select, textarea { font-family: inherit; outline: none; }

/* ── Design Tokens ────────────────────────────────── */
:root {
  --teal:        #006466;
  --teal-sec:    #14A098;
  --teal-ops:    #005D5F;
  --yellow:      #F9B100;
  --navy:        #1A1B26;
  --navy-2:      #111125;
  --dark-card:   #1d2233;
  --light-bg:    #F8F8FC;
  --body:        #364153;
  --body-2:      #4A5565;
  --border-card: #F2F4FC;
  --gray-header: #DFDFDF;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --container:   1248px;
  --pad-x:       96px;
  --pad-y:       96px;
}

/* ── Container ────────────────────────────────────── */
.container {
  max-width: calc(var(--container) + var(--pad-x) * 2);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── Caption / Section Labels ────────────────────── */
.s-label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: var(--teal-sec);
  line-height: 1.5;
}
.s-label--yellow {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: var(--yellow);
  line-height: 1.5;
}

/* ── Buttons ──────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #111;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .2s;
}
.btn-primary:hover { opacity: .88; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 2px solid #fff;
  cursor: pointer;
  transition: background .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy-2);
  font-weight: 600;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  border: 2px solid var(--navy-2);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-outline-dark:hover { background: var(--navy-2); color: #fff; }

.btn-outline-white-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,.7);
  cursor: pointer;
  transition: background .2s;
}
.btn-outline-white-sm:hover { background: rgba(255,255,255,.12); }

.btn-learn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--navy-2);
  font-weight: 600;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.btn-learn:hover { color: var(--teal-sec); }

/* ── Subtitle label ───────────────────────────────── */
.subtitle-label {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: var(--teal-sec);
  margin-bottom: 16px;
}
.subtitle-label--yellow { color: var(--yellow); }
.subtitle-label--white  { color: #fff; }

/* ── Section header ───────────────────────────────── */
.text-center{text-align: center;}
.section-header { margin-bottom: 48px; }
.section-header.text-center { text-align: center; }
.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy-2);
  letter-spacing: -.5px;
}
.section-header h2.white { color: #fff; }
.section-header p {
  margin-top: 12px;
  color: var(--body-2);
  font-size: 16px;
  max-width: 640px;
}
.section-header.text-center p { margin-left: auto; margin-right: auto; }


/* ════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 80px;
  background: var(--teal);
  display: flex;
  align-items: center;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.navbar__logo img {
  height: 66px;
  width: 76px;
  object-fit: contain;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar__nav a {
  color: rgba(255,255,255,.85);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.32px;
  transition: color .2s;
  white-space: nowrap;
}
.navbar__nav a:hover,
.navbar__nav a.active { color: var(--yellow); }
.navbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: #111 !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  height: 40px;
  white-space: nowrap;
  letter-spacing: -0.3px;
  transition: opacity .2s;
}
.navbar__cta:hover { opacity: .9; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile menu */
.navbar__mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--teal);
  padding: 20px var(--pad-x);
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,.15);
}
.navbar__mobile-menu.open { display: flex; }
.navbar__mobile-menu a {
  color: rgba(255,255,255,.85);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.navbar__mobile-menu a:last-child { border-bottom: none; }
.navbar__mobile-menu a.active { color: var(--yellow); }
.navbar__mobile-menu .navbar__cta {
  text-align: center;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  height: auto;
}


/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.footer { background: var(--navy); }
.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.footer__grid {
  display: grid;
  grid-template-columns: 244px 244px 244px 244px;
  gap: 0 48px;
  padding: 40px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo img {
  height: 86px;
  width: 100px;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer__desc {
  font-size: 14px;
  color: #99a1af;
  line-height: 1.55;
  margin-bottom: 16px;
}
.footer__location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #d1d5dc;
}
.footer__col-heading {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  line-height: 24px;
}
.footer__col-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #d1d5dc;
  line-height: 20px;
}
.footer__col-list li a { color: #d1d5dc; transition: color .2s; }
.footer__col-list li a:hover { color: #fff; }
.footer__col-list .icon { display: flex; align-items: center; flex-shrink: 0; }
.footer__col-list .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #f4a261;
  flex-shrink: 0;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__copy {
  font-size: 13px;
  color: #6a7282;
  line-height: 20px;
}
.footer__socials { display: flex; gap: 16px; }
.footer__social {
  width: 20px; height: 20px;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer__social:hover { color: #fff; }
.footer__social svg { width: 20px; height: 20px; display: block; }


/* ════════════════════════════════════════════════════
   RESPONSIVE — Navbar & Footer
════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  :root { --pad-x: 48px; }
}
@media (max-width: 900px) {
  :root { --pad-x: 32px; }
  .section-header h2 { font-size: 36px; }
}
@media (max-width: 768px) {
  .navbar__nav        { display: none; }
  .navbar__hamburger  { display: flex; background: #026366;
    border: none;}
  .navbar__logo img   { height: 52px;}
  .footer__grid       { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  :root { --pad-x: 20px; }
  .section-header h2  { font-size: 28px; }
  .footer__grid       { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Form Status Banner ───────────────────────────────── */
.form-status-banner {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}
.form-status-banner--success {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}
.form-status-banner--error {
  background: #fdecea;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}

.custpadding{padding:37px !important;}
.video-avi{width: inherit;
  position: relative;
  top: -100%;}
