:root{
  --bg:#071a12;
  --bg2:#04100b;

  --card:#0b2a1b;
  --card2:#083d25;

  --text:#ecfff5;
  --muted:#a7e3c7;
  --muted2:#7fcaa7;

  --line:rgba(255,255,255,.14);

  --brand:#00e676;
  --brand2:#00c853;

  --good:#00e676;
  --warn:#ffd54f;
  --danger:#ef4444;

  --shadow:0 12px 32px rgba(0,0,0,.35);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 15% 0%, rgba(0,230,118,.22), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(0,200,83,.20), transparent 55%),
    linear-gradient(180deg,var(--bg),var(--bg2));
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1120px,92%);margin:0 auto}

/* SKIP LINK */
.skip{
  position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden
}
.skip:focus{
  left:16px;top:16px;width:auto;height:auto;
  background:#fff;color:#000;
  padding:10px 12px;border-radius:10px;z-index:9999
}

/* ================================
   HEADER / NAV (SINGLE CLEAN VERSION)
   ================================ */
.topbar{
  position:sticky;
  top:0;
  z-index:999;
  border-bottom:1px solid var(--line);
  background:rgba(7,26,18,.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
/* Brand logo replacement for PT badge */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brandLogo{
  width:56px;
  height:56px;
  object-fit:contain;     /* prevents stretching */
  display:block;
  flex:0 0 auto;
}

/* Slightly smaller on phones */
@media (max-width: 720px){
  .brandLogo{
    width:46px;
    height:46px;
  }
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex;
  gap:12px;
  align-items:center;
  font-weight:900;
  letter-spacing:.2px;
}
.brand .name{line-height:1.05}

.badge{
  width:40px;height:40px;border-radius:12px;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  display:grid;place-items:center;
  font-weight:1000;color:#032e1a;
  box-shadow: var(--shadow);
}

.navlinks{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}

.navlinks a{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:10px 14px;
  border-radius:999px;

  font-weight:900;
  color:rgba(236,255,245,.92);

  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.16);

  transition:transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
}

.navlinks a:hover{
  background:rgba(255,255,255,.12);
  color:var(--text);
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,.22);
}

/* underline glow on hover */
.navlinks a::after{
  content:"";
  position:absolute;
  left:18px; right:18px; bottom:6px;
  height:2px;
  background:linear-gradient(90deg, transparent, rgba(0,230,118,.85), transparent);
  opacity:0;
  transform: translateY(3px);
  transition:.18s ease;
  border-radius:999px;
}
.navlinks a:hover::after{
  opacity:.9;
  transform:translateY(0);
}

/* active */
.navlinks a.active{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#052013;
  border-color:rgba(0,230,118,.55);
  box-shadow:0 14px 30px rgba(0,230,118,.18);
}

/* CTA */
.navlinks a.cta{
  padding:11px 16px;
  font-weight:950;
  letter-spacing:.2px;

  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#052013;
  border:1px solid rgba(0,230,118,.60);
  box-shadow:0 16px 34px rgba(0,230,118,.22);
}

.navlinks a.cta:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(0,230,118,.24);
}

/* login button */
.navlinks a.login-btn{
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,230,118,.35);
  color: rgba(236,255,245,.95);
  font-weight: 950;
  background: rgba(0,230,118,.10);
}
.navlinks a.login-btn:hover{
  background: rgba(0,230,118,.16);
}

/* MOBILE MENU */
.hamburger{
  display:none;
  gap:6px;
  flex-direction:column;
  cursor:pointer;
  padding:10px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
}
.hamburger span{
  width:24px;height:2px;
  background:var(--text);
  border-radius:2px;
}

.mobilemenu{
  display:none;
  border-top:1px solid var(--line);
  background:rgba(7,26,18,.92);
}
.mobilemenu.open{display:block}

.mobilemenu a{
  display:flex;
  align-items:center;
  padding:12px 14px;
  margin:8px 0;
  border-radius:14px;

  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);

  color:rgba(236,255,245,.88);
  font-weight:900;
}
.mobilemenu a:hover{background:rgba(255,255,255,.10)}
.mobilemenu a.active{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#052013;
  border-color:rgba(0,230,118,.55);
}
.mobilemenu .ctaRow{
  display:flex;gap:10px;flex-wrap:wrap;
  padding:12px 0 18px;
}

/* ================================
   HERO (SINGLE PREMIUM VERSION)
   ================================ */
.hero{
  position:relative;
  min-height:82vh;
  display:flex;
  align-items:center;
  padding:80px 0 40px;
  isolation:isolate;

  background:
    radial-gradient(900px 420px at 20% 15%, rgba(0,230,118,.28), transparent 60%),
    radial-gradient(900px 420px at 80% 35%, rgba(0,200,83,.22), transparent 65%),
    linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.78)),
    url("hero.jpg") center/cover no-repeat;
}

/* cinematic contrast */
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.25), rgba(0,0,0,.70));
  pointer-events:none;
  z-index:-1;
}

/* soft haze glow */
.hero::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(600px 260px at 18% 30%, rgba(255,255,255,.06), transparent 65%),
    radial-gradient(600px 260px at 82% 55%, rgba(255,255,255,.04), transparent 70%);
  pointer-events:none;
  z-index:-1;
}

.heroGrid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}

.kicker{
  display:inline-flex;gap:8px;align-items:center;
  font-weight:900;
  padding:8px 12px;border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
}
.kicker .dot{
  width:8px;height:8px;border-radius:99px;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
}

.h1{
  font-size:clamp(34px,4.2vw,52px);
  line-height:1.04;
  margin:14px 0 12px;
  letter-spacing:-.6px;
  font-weight:950;
  text-shadow: 0 10px 34px rgba(0,0,0,.65), 0 0 22px rgba(0,230,118,.25);
}

.sub{
  color:rgba(236,255,245,.82);
  font-size:17.2px;
  line-height:1.65;
  max-width:58ch;
}

.actions{
  display:flex;gap:12px;flex-wrap:wrap;
  margin:18px 0 0;
}

.pill{
  padding:9px 12px;border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
}

/* CTA shimmer */
.cta{
  position:relative;
  overflow:hidden;
}
.cta::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.35),transparent);
  transform:translateX(-120%);
}
.cta:hover::after{
  transform:translateX(120%);
  transition:transform .6s ease;
}

/* TOOLTIP */
.tooltip{ position:relative; }
.tooltip::after{
  content:attr(data-tooltip);
  position:absolute;
  bottom:-38px; left:50%;
  transform:translateX(-50%);
  background:#032e1a;
  color:var(--text);
  padding:6px 10px;
  border-radius:8px;
  font-size:12px;
  font-weight:700;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
  box-shadow:var(--shadow);
  z-index:99;
}
.tooltip:hover::after{
  opacity:1;
  transform:translateX(-50%) translateY(4px);
}

/* ================================
   CARDS / SECTIONS
   ================================ */
.card{
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.02));
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 18px 44px rgba(0,0,0,.38);
  transform: translateZ(0);
}
.card:hover{
  transform: translateY(-3px);
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 22px 55px rgba(0,0,0,.45);
}
.card.soft{
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.015));
}

.cardTitle{
  display:flex;justify-content:space-between;
  align-items:center;gap:10px;
}

.tag{
  font-size:12px;font-weight:900;
  padding:6px 10px;border-radius:999px;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#032e1a;
}

/* SECTION contrast (avoid flat/dull page) */
.section{padding:28px 0}
.section:nth-of-type(even){
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.sectionHead{
  display:flex;justify-content:space-between;
  align-items:flex-end;gap:14px;
  flex-wrap:wrap;margin-bottom:14px;
}
.sectionHead h2{margin:0;font-size:26px}
.sectionHead p{margin:0;color:var(--muted);line-height:1.6;max-width:62ch}

/* GRIDS */
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}

/* FEATURES */
.feature h3{margin:10px 0 6px}
.feature p{color:var(--muted);margin:0;line-height:1.6}

.icon{
  width:42px;height:42px;border-radius:14px;
  display:grid;place-items:center;
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(0,230,118,.30),rgba(0,200,83,.18));
}

/* STATS */
.stats{
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:12px;margin-top:18px;
}
.stat{
  padding:14px;border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
}
.stat b{font-size:22px}
.stat span{display:block;color:var(--muted);margin-top:4px}

/* BANNER */
.banner{
  display:flex;justify-content:space-between;
  align-items:center;gap:14px;
  padding:18px;border-radius:var(--radius);
  border:1px solid var(--line);
  background:linear-gradient(135deg,rgba(0,230,118,.22),rgba(0,200,83,.18));
  box-shadow:var(--shadow);
}
.banner p{margin:0;color:var(--muted)}
.badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.badges span{
  font-size:12px;font-weight:850;
  color:var(--muted);
  border:1px solid var(--line);
  padding:7px 10px;border-radius:999px;
  background:rgba(255,255,255,.05);
}
.divider{height:1px;background:var(--line);margin:18px 0}

/* PAGE HEAD */
.pagehead{padding:22px 0 8px}
.pagehead h1{margin:0 0 8px;font-size:36px}
.pagehead .lead{color:var(--muted);line-height:1.7}

/* SERVICES PAGE: remove background image */
body.services-page .pagehead{
  background:none;
  min-height:auto;
  padding:22px 0 8px;
}

/* LISTS */
.list{
  margin:0;padding-left:18px;
  color:var(--muted);line-height:1.9;
}

/* FORMS */
.form{display:grid;gap:12px;margin-top:10px}
label{display:block}
input,textarea,select{
  width:100%;padding:12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  color:var(--text);
}
textarea{min-height:130px;resize:vertical}

/* TABLES */
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
}
.table th,.table td{padding:12px;text-align:left}
.table th{
  background:rgba(255,255,255,.06);
  font-size:12px;
  text-transform:uppercase;
}
.table td{
  color:var(--muted);
  border-top:1px solid var(--line);
}

/* FOOTER */
.footer{
  border-top:1px solid var(--line);
  padding:26px 0;margin-top:30px;
  color:var(--muted);
}
.footerGrid{
  display:grid;grid-template-columns:1.2fr .8fr;
  gap:18px;
}
.small{font-size:13px;color:var(--muted)}
.note{font-size:12.5px;color:var(--muted2);line-height:1.65}

/* ================================
   FULL-WIDTH PAGE BANNERS
   ================================ */
.page-banner{
  width:100%;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.page-banner img{
  width:100%;
  height:auto;
  display:block;
}

.about-banner,.contact-banner{
  width:100%;
  margin-top:0;
}
.about-banner img,.contact-banner img{
  width:100%;
  height:auto;
  display:block;
}

/* Fleet banner */
.fleet-banner{
  width:100%;
  height:420px;
  overflow:hidden;
}
.fleet-banner img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.galleryItem{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:0 14px 34px rgba(0,0,0,.22);
}
.galleryItem img{
  width:100%;
  height:220px;
  object-fit:cover;
}
.galleryItem figcaption{
  padding:12px 12px 14px;
  color:var(--muted);
  font-size:13.5px;
  font-weight:700;
}
.galleryItem:hover{
  transform: translateY(-2px);
  transition: transform .18s ease;
}

/* RESPONSIVE */
@media (max-width:980px){
  .heroGrid,.grid3,.grid2{grid-template-columns:1fr}
  .footerGrid{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:720px){
  .navlinks{display:none}
  .hamburger{display:flex}
  .stats{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .galleryItem img{height:240px}

  .fleet-banner{height:auto !important}
  .fleet-banner img{
    height:auto !important;
    object-fit:contain !important;
    background:#04100b;
  }
}
/* ================================
   PRIMARY ACTION BUTTON (PRO)
   ================================ */
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding:12px 18px;
  border-radius:14px;

  font-weight:950;
  font-size:14.5px;
  letter-spacing:.3px;

  color:#052013;
  background:linear-gradient(135deg, var(--brand), var(--brand2));

  border:1px solid rgba(0,230,118,.65);
  box-shadow:
    0 14px 30px rgba(0,230,118,.25),
    inset 0 1px 0 rgba(255,255,255,.25);

  cursor:pointer;
  transition:
    transform .15s ease,
    box-shadow .15s ease,
    filter .15s ease;
}

.btn-primary:hover{
  transform:translateY(-2px);
  filter:brightness(.98);
  box-shadow:
    0 18px 40px rgba(0,230,118,.32),
    inset 0 1px 0 rgba(255,255,255,.28);
}

.btn-primary:active{
  transform:translateY(0);
  box-shadow:
    0 10px 22px rgba(0,230,118,.22),
    inset 0 2px 6px rgba(0,0,0,.18);
}

/* arrow animation */
.btn-primary span{
  display:inline-block;
  transition:transform .18s ease;
}
.btn-primary:hover span{
  transform:translateX(4px);
}
/* ================================
   FORM SUBMIT BUTTON – PROFESSIONAL
   ================================ */
.btn-submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  width:100%;
  padding:14px 20px;
  margin-top:10px;

  border-radius:16px;
  border:1px solid rgba(0,230,118,.65);

  font-size:15px;
  font-weight:950;
  letter-spacing:.35px;

  color:#052013;
  background:linear-gradient(135deg,var(--brand),var(--brand2));

  box-shadow:
    0 16px 36px rgba(0,230,118,.28),
    inset 0 1px 0 rgba(255,255,255,.30);

  cursor:pointer;
  transition:
    transform .15s ease,
    box-shadow .15s ease,
    filter .15s ease;
}

.btn-submit:hover{
  transform:translateY(-2px);
  filter:brightness(.98);
  box-shadow:
    0 22px 46px rgba(0,230,118,.35),
    inset 0 1px 0 rgba(255,255,255,.35);
}

.btn-submit:active{
  transform:translateY(0);
  box-shadow:
    0 12px 26px rgba(0,230,118,.22),
    inset 0 2px 6px rgba(0,0,0,.18);
}

/* Arrow animation */
.btn-submit span{
  display:inline-block;
  transition:transform .18s ease;
}
.btn-submit:hover span{
  transform:translateX(5px);
}

/* Disabled / loading state */
.btn-submit[disabled]{
  opacity:.65;
  cursor:not-allowed;
  transform:none;
  box-shadow:none;
}
/* ================================
   SUCCESS CONFIRMATION PANEL
   ================================ */
.success-panel{
  margin: 20px 0;
  padding: 26px 22px;

  border-radius: 20px;
  border: 1px solid rgba(0,230,118,.45);

  background:
    linear-gradient(180deg, rgba(0,230,118,.18), rgba(0,200,83,.10)),
    rgba(7,26,18,.85);

  box-shadow:
    0 22px 48px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.12);

  text-align: center;
}

.success-icon{
  width:64px;
  height:64px;
  margin:0 auto 12px;

  border-radius:999px;
  display:grid;
  place-items:center;

  font-size:32px;
  font-weight:950;

  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#052013;

  box-shadow:0 14px 30px rgba(0,230,118,.35);
}

.success-panel h3{
  margin:10px 0 8px;
  font-size:22px;
}

.success-panel p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.success-actions{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:16px;
}
/* ================================
   GOOGLE MAP EMBED
   ================================ */
.mapWrap{
  width:100%;
  overflow:hidden;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  box-shadow:0 14px 34px rgba(0,0,0,.22);
}

.mapWrap iframe{
  width:100%;
  height:360px;
  border:0;
  display:block;
}

@media (max-width:720px){
  .mapWrap iframe{ height:300px; }
}
/* Auto-fit service grid so 3 or 4 cards still look perfect */
.grid3{
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
}
/* ==============================
   TICK BULLETS – DARK GREEN BG
   ============================== */
.tick-list{
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.tick-list li{
  position: relative;
  padding-left: 44px;
  margin-bottom: 16px;
  line-height: 1.7;
  color: #ecfff5;
  font-weight: 500;
}

.tick-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  background: #ffffff;
  color: #0b2a1b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
}

.tick-list li:hover::before{
  background: #00e676;
  color: #042f1a;
}
/* ================================
   PRIMARY BUTTON (PRO)
   ================================ */
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding:12px 16px;
  border-radius:999px;

  font-weight:950;
  letter-spacing:.2px;

  color:#052013;
  text-decoration:none;

  background:linear-gradient(135deg,var(--brand),var(--brand2));
  border:1px solid rgba(0,230,118,.55);
  box-shadow:0 16px 34px rgba(0,230,118,.18);

  transition:transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.btn-primary:hover{
  transform:translateY(-2px);
  filter:brightness(.98);
  box-shadow:0 18px 40px rgba(0,230,118,.22);
}

.btn-primary:active{
  transform:translateY(0px);
}

.btn-primary:focus{
  outline:2px solid rgba(0,230,118,.55);
  outline-offset:3px;
}
/* Hero logo (homepage main image) */
.heroLogo{
  display:block;
  margin:0 0 22px 0;
  max-width:260px;        /* ⬅️ INCREASED SIZE */
  height:auto;
  object-fit:contain;
}

/* Tablet & mobile */
@media (max-width: 900px){
  .heroLogo{
    margin:0 auto 18px auto;
    max-width:180px;      /* still strong on mobile */
  }
}


/* Mobile */
@media (max-width: 900px){
  .heroLogo{
    margin:0 auto 18px auto;
    max-width:180px;
  }
}


/* Center logo on mobile */
@media (max-width: 900px){
  .heroLogo{
    margin:0 auto 16px auto;
    max-width:140px;
  }
}
/* ================================
   HOMEPAGE LOGO EMPHASIS
   ================================ */

/* Bigger logo badge */
body.home .brand .badge{
  width:56px;
  height:56px;
  font-size:20px;
  border-radius:16px;
}

/* Bigger company name */
body.home .brand .name{
  font-size:18px;
  line-height:1.15;
}

/* Slightly larger subtitle */
body.home .brand .small{
  font-size:13px;
  opacity:.9;
}

/* Give header a bit more breathing room */
body.home .topbar .nav{
  padding:18px 0;
}

/* Mobile tuning */
@media (max-width:720px){
  body.home .brand .badge{
    width:52px;
    height:52px;
    font-size:18px;
  }
  body.home .brand .name{
    font-size:16px;
  }
}
/* Topbar logo */
.topbar .logo{
  height: 56px;          /* adjust if you want slightly bigger */
  width: auto;
  display: block;
  object-fit: contain;
}
/* Homepage logo position adjustment */
body.home .topbar .brand{
  align-items: flex-start;   /* push logo up */
}

body.home .topbar .logo{
  margin-top: -6px;          /* move logo closer to topbar */
}

/* Optional: tighten vertical padding on homepage header */
body.home .topbar{
  padding-top: 8px;
  padding-bottom: 8px;
}
/* === Homepage logo glow effect === */
body.home .topbar .logo{
  filter:
    drop-shadow(0 0 6px rgba(0, 230, 118, 0.55))
    drop-shadow(0 0 14px rgba(0, 230, 118, 0.35));
}

/* Optional: very gentle pulse animation */
@keyframes logoGlow {
  0% {
    filter:
      drop-shadow(0 0 6px rgba(0, 230, 118, 0.45))
      drop-shadow(0 0 12px rgba(0, 230, 118, 0.25));
  }
  100% {
    filter:
      drop-shadow(0 0 10px rgba(0, 230, 118, 0.7))
      drop-shadow(0 0 18px rgba(0, 230, 118, 0.4));
  }
}

body.home .topbar .logo{
  animation: logoGlow 2.5s ease-in-out infinite alternate;
}
