#Steve-roberts-footer-heading{
    color: #046eba;
    font-weight: bold;
    font-size: 1.5rem;
    border: 2px dotted #efe919;
    text-decoration: underline;
}

/* experience landing page */
.experience-landing{
    color: #efe919 !important;
    animation: automate 1s forwards 1s linear;
}
@keyframes automate {
    0%{
        font-size:0.9rem;
    }
    100%{
        text-decoration: underline;
    }
    
}


/* BRANDS STYLING */
 /* Section Styles */
  .brands-section {
    background-color: #046eba; /* Deep blue background */
    padding: 60px 20px;
    text-align: center;
    color: #efe919; /* Bright yellow header */
  }

  .brands-section h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    position: relative;
  }

  /* Optional accent line below the header */
  .brands-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #efe919;
    margin: 10px auto 0;
    border-radius: 2px;
  }

  /* Container for logos */
  .brands-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }

  /* Individual brand cards */
  .brand-card {
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
  }

  .brand-card img {
    max-height: 80px;
    max-width: 150px;
    object-fit: contain;
    display: block;
  }

  /* Hover effect */
  .brand-card:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(239, 233, 25, 0.5); /* subtle yellow glow */
  }

  /* Responsive adjustments */
  @media (max-width: 1024px) {
    .brands-container {
      gap: 30px;
    }
  }

  @media (max-width: 768px) {
    .brands-container {
      gap: 20px;
    }
    .brand-card {
      padding: 15px 30px;
    }
  }

  @media (max-width: 480px) {
    .brands-container {
      flex-direction: column;
      gap: 20px;
    }
    .brand-card {
      width: 80%;
      margin: 0 auto;
    }
  }

  /* Request brand styling  */
  .cta-container {
    text-align: center;
    margin-top: 40px;
  }

  .brand-cta-button {
    background-color: #efe919;
    color: #046eba;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .brand-cta-button:hover {
    background-color: #d9d510;
    box-shadow: 0 8px 20px rgba(239, 233, 25, 0.5);
    transform: translateY(-2px);
  }

  @media (max-width: 480px) {
    .brand-cta-button {
      font-size: 1em;
      padding: 12px 20px;
    }
  }

/* -------------------------------
   45kVA Perkins Generator Video Section
   ------------------------------- */
.perkins-video-section {
  text-align: center;
  margin: 60px 20px;
  font-family: Arial, sans-serif;
}

.perkins-video-section h2 {
  font-size: 2em;
  color: #046eba; /* Blue accent */
  margin-bottom: 25px;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
}

.video-container video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.video-caption {
  font-size: 1.2em;
  color: #046eba;
  max-width: 700px;
  margin: 20px auto;
}

.video-cta {
  display: inline-block;
  margin-top: 15px;
  background-color: #efe919; /* Yellow accent */
  color: #046eba;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  transition: all 0.3s ease;
}

.video-cta:hover {
  background-color: #d9d510;
  box-shadow: 0 8px 20px rgba(239,233,25,0.5);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .perkins-video-section h2 {
    font-size: 1.6em;
  }
  .video-caption {
    font-size: 1.1em;
  }
  .video-cta {
    font-size: 1em;
    padding: 12px 25px;
  }
}
/* -------------------------------
   ATS Installation Section
   ------------------------------- */
.ats-installation-section {
  text-align: center;
  margin: 60px 20px;
  font-family: Arial, sans-serif;
}

.ats-installation-section h2 {
  font-size: 2em;
  color: #046eba; /* Blue accent */
  margin-bottom: 30px;
}

/* Container for both images */
.ats-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}

/* Individual image card */
.ats-image-card {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
}

.ats-image-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.ats-image-card p {
  margin-top: 10px;
  font-size: 1.1em;
  color: #efe919; /* Yellow accent for captions */
}

/* Caption below images */
.ats-caption {
  font-size: 1.2em;
  color: #046eba;
  max-width: 700px;
  margin: 20px auto;
}

/* CTA Button */
.ats-cta {
  display: inline-block;
  margin-top: 15px;
  background-color: #efe919; /* Yellow accent */
  color: #046eba;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  transition: all 0.3s ease;
}

.ats-cta:hover {
  background-color: #d9d510;
  box-shadow: 0 8px 20px rgba(239,233,25,0.5);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ats-installation-section h2 {
    font-size: 1.6em;
  }
  .ats-caption {
    font-size: 1.1em;
  }
  .ats-cta {
    font-size: 1em;
    padding: 12px 25px;
  }
}



/* -------------------------------
   Generator Testing & Programming Section
   ------------------------------- */
.generator-commissioning-section {
  text-align: center;
  margin: 60px 20px;
  font-family: Arial, sans-serif;
}

.generator-commissioning-section h2 {
  font-size: 2em;
  color: #046eba;
  margin-bottom: 40px;
}

/* Cards container */
.generator-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}

/* Individual card */
.generator-card {
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
}

.generator-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.generator-card h3 {
  margin-top: 15px;
  font-size: 1.3em;
  color: #efe919;
}

.generator-card p {
  font-size: 1.1em;
  color: #046eba;
  margin-top: 8px;
}

/* CTA Button */
.generator-cta {
  display: inline-block;
  margin-top: 20px;
  background-color: #efe919;
  color: #046eba;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  transition: all 0.3s ease;
}

.generator-cta:hover {
  background-color: #d9d510;
  box-shadow: 0 8px 20px rgba(239,233,25,0.5);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .generator-commissioning-section h2 {
    font-size: 1.6em;
  }
  .generator-card h3 {
    font-size: 1.2em;
  }
  .generator-card p {
    font-size: 1em;
  }
  .generator-cta {
    font-size: 1em;
    padding: 12px 25px;
  }
}

/* -------------------------------
   Power Services Section
   ------------------------------- */
.power-services-section {
  text-align: center;
  margin: 60px 20px;
  font-family: Arial, sans-serif;
}

.power-services-section h2 {
  font-size: 2em;
  color: #046eba;
  margin-bottom: 40px;
}

/* Cards container */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}

/* Individual service card */
.service-card {
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
}

.service-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.service-card h3 {
  margin-top: 15px;
  font-size: 1.3em;
  color: #efe919;
}

.service-card p {
  font-size: 1.1em;
  color: #046eba;
  margin-top: 8px;
}

/* CTA Button */
.power-services-cta {
  display: inline-block;
  margin-top: 20px;
  background-color: #efe919;
  color: #046eba;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  transition: all 0.3s ease;
}

.power-services-cta:hover {
  background-color: #d9d510;
  box-shadow: 0 8px 20px rgba(239,233,25,0.5);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .power-services-section h2 {
    font-size: 1.6em;
  }
  .service-card h3 {
    font-size: 1.2em;
  }
  .service-card p {
    font-size: 1em;
  }
  .power-services-cta {
    font-size: 1em;
    padding: 12px 25px;
  }
}

/* -------------------------------
   Company Poster Section
   ------------------------------- */
.company-poster-section {
  text-align: center;
  margin: 60px 20px;
  font-family: Arial, sans-serif;
}

.company-poster-section h2 {
  font-size: 2em;
  color: #046eba;
  margin-bottom: 30px;
}

.poster-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.company-poster {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.poster-caption {
  font-size: 1.2em;
  color: #046eba;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .company-poster-section h2 {
    font-size: 1.6em;
  }
  .poster-caption {
    font-size: 1.1em;
  }
}
/* -------------------------------
   27kVA Cummins Generator Video Section
   ------------------------------- */
.generator-video-section {
  text-align: center;
  margin: 60px 20px;
  font-family: Arial, sans-serif;
}

.generator-video-section h2 {
  font-size: 2em;
  color: #046eba; /* Blue accent */
  margin-bottom: 25px;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
}

.video-container video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.video-caption {
  font-size: 1.2em;
  color: #046eba;
  max-width: 700px;
  margin: 20px auto;
}

.video-cta {
  display: inline-block;
  margin-top: 15px;
  background-color: #efe919; /* Yellow accent */
  color: #046eba;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  transition: all 0.3s ease;
}

.video-cta:hover {
  background-color: #d9d510;
  box-shadow: 0 8px 20px rgba(239,233,25,0.5);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .generator-video-section h2 {
    font-size: 1.6em;
  }
  .video-caption {
    font-size: 1.1em;
  }
  .video-cta {
    font-size: 1em;
    padding: 12px 25px;
  }
}
/* -------------------------------
   Generator Services & Repairs Section
   ------------------------------- */
.generator-services-section {
  text-align: center;
  margin: 60px 20px;
  font-family: Arial, sans-serif;
}

.generator-services-section h2 {
  font-size: 2em;
  color: #046eba; /* Brand blue */
  margin-bottom: 40px;
}

/* Cards container */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
}

/* Individual service card */
.service-card {
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
  width: 100%;
  height: auto;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.service-card h3 {
  margin-top: 12px;
  font-size: 1.3em;
  color: #efe919; /* Brand yellow */
}

.service-card p {
  font-size: 1.1em;
  color: #046eba; /* Brand blue */
  margin: 8px 12px 15px;
}

/* Card hover effect */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* CTA Button */
.generator-services-cta {
  display: inline-block;
  margin-top: 20px;
  background-color: #efe919; /* Brand yellow */
  color: #046eba; /* Brand blue */
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  transition: all 0.3s ease;
}

.generator-services-cta:hover {
  background-color: #d9d510;
  box-shadow: 0 8px 20px rgba(239,233,25,0.5);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .generator-services-section h2 {
    font-size: 1.6em;
  }
  .service-card h3 {
    font-size: 1.2em;
  }
  .service-card p {
    font-size: 1em;
  }
  .generator-services-cta {
    font-size: 1em;
    padding: 12px 25px;
  }
}
/* -------------------------------
   Post-Footer SEO Tags Section
   ------------------------------- */
.generators-seo-section {
  background-color: #046eba; /* Brand blue */
  color: #efe919; /* Brand yellow text */
  text-align: center;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.generators-seo-section h2 {
  font-size: 1.8em;
  margin-bottom: 25px;
}

.generators-seo-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.generators-seo-tags span {
  display: inline-block;
  background-color: rgba(255,255,255,0.05);
  color: #efe919;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 0.95em;
  line-height: 1.4;
}

/* Hover effect just for visual appeal */
.generators-seo-tags span:hover {
  background-color: #efe919;
  color: #046eba;
  cursor: default;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .generators-seo-section h2 {
    font-size: 1.5em;
  }
  .generators-seo-tags span {
    font-size: 0.85em;
    padding: 6px 10px;
  }
}
/* -------------------------------
   Back to Top Button
   ------------------------------- */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #efe919; /* Brand yellow */
  color: #046eba; /* Brand blue */
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 1em;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 9999;
  display: none; /* Hidden by default */
}

#backToTop:hover {
  background-color: #d9d510;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(239,233,25,0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #backToTop {
    padding: 10px 16px;
    font-size: 0.9em;
    bottom: 20px;
    right: 20px;
  }
}
/* -------------------------------
   Flyer Section
   ------------------------------- */
.flyer-section {
  background: linear-gradient(135deg, #046eba, #023e6b);
  padding: 60px 20px;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* Container layout */
.flyer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

/* Flyer image */
.flyer-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Content */
.flyer-content {
  max-width: 500px;
}

.flyer-content h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #efe919; /* Brand yellow */
}

.flyer-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* CTA Button */
.flyer-cta {
  display: inline-block;
  background-color: #efe919;
  color: #046eba;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  transition: all 0.3s ease;
}

.flyer-cta:hover {
  background-color: #d9d510;
  box-shadow: 0 10px 25px rgba(239,233,25,0.5);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .flyer-container {
    flex-direction: column;
    text-align: center;
  }

  .flyer-content h2 {
    font-size: 1.6em;
  }

  .flyer-content p {
    font-size: 1.1em;
  }
}
  /* Generator Overhaul Process */
 
/* ============================= */
/* MOBILE-ONLY FIXED TOP BAR     */
/* ============================= */

/* Default: hidden on large screens */
@media screen and (min-width:768px) {
.mobile-topbar {
  display: none;
}
    
}

/* Mobile screens: show the bar */
@media (max-width: 768px) {
  /* Top bar container */
  .mobile-topbar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #046eba; /* primary color */
    color: #efe919; /* accent color */
    z-index: 9999;
    font-size: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  /* Inner wrapper for padding & layout */
  .mobile-topbar__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 10px;
    text-align: center;
    gap: 4px;
  }

  /* Individual item styling */
  .mobile-topbar__item {
    margin: 0;
    line-height: 1.4;
  }

  /* Links inside the bar */
  .mobile-topbar a {
    color: #efe919;
    text-decoration: none;
    font-weight: 500;
  }

  .mobile-topbar a:hover {
    text-decoration: underline;
  }

  /* Push page content down so it doesn't overlap the fixed bar */
  body {
    padding-top: 100px; /* adjust according to bar height */
  }
}