@charset "utf-8";
/* Enetgize CSS */

:root {
  --enet-orange: #F67323;
  --enet-blue: #3e8ed0;
  --enet-dark: #0D1E32;
  --enet-light-gray: #fdf9f6;
}

html {
  scroll-behavior: smooth;
}

.content {
  scroll-behavior: smooth;
}

/* Apply border-box sizing model across all elements */
*, *::before, *::after {
  box-sizing: border-box;
}
/* Enetgize Font - R&A */
.enetgizeFont {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
               Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #222;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.enetgizeFont-heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.3px;
  color: #000000;
}

.enetgizeFont-light {
  font-weight: 400;
  color: #333333;
}

.enetgizeFont-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
}

.enetgizeFont-subtitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #444444;
}

/* End Enetgize Font - R&A */
/* why-enetgize-cta - R&A */
.why-enetgize-cta {
  text-align: center;
  margin: 3rem auto 5rem auto; /* adds bottom margin below the CTA */
  padding: 2.5rem 1.5rem;
  background-color: #3e8ed0; /* Enetgize blue */
  border-radius: 12px;
  color: #ffffff;
  max-width: 1200px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* End why-enetgize-cta - R&A */

.outerColor,
.mainColor {
    background-color: #FFFFFF;
}

.copyright {
    font-size: 9pt;
    color: #0D1E32;
}

a:link,
a:visited {
    color: #F67323;
}

a:hover {
    color: #0D1E32;
}

/* Review */
a.topNav,
a.topNav:visited {
    text-decoration: none;
    color: #000000;
    font-variant: normal;
    font-weight: normal;
    font-size: 11pt;
    letter-spacing: 3px;
    padding: 5px;
    text-transform: uppercase;
}

a.topNav:hover {
    color: #F67323;
    text-decoration: none;
    white-space: nowrap;
}
/* End Review */

.mainSectionTitle {
    font-weight: bold;
    text-decoration: underline;
    text-align: center;
}

p.contentQuote {
    font-style: italic;
    text-align: right;
}

p.contentMainPhrase {
    font-style: italic;
    font-weight: 550;
    text-align: right;
}

em.content {
    color: #F67323;
    font-size: 21px;
}

.topNavSelected {
    color: #F67323;
}

div.contentMain {
    box-shadow: 5px -5px 5px #F67323;
}

.shadowBottom {
    box-shadow: 5px 5px 5px #F67323;
    padding: 20px 0;
}

ul.content {
    list-style-type: square;
}

.sectionMenuHeader {
    font-size: 12pt;
    font-weight: bold;
    color: #0D1E32;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    margin-bottom: 8px;
}

.sectionMenuCategory {
    font-size: 11pt;
    font-weight: bold;
    color: #0D1E32;
    margin-top: 10px;
    margin-bottom: 4px;
}

/* Make the header (hero section) a flex container */
.header {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: flex-start; /* Align items at the start */
    width: 100%;
    position: relative;
}

/* Responsive Hero Banner with Optimal Viewport Sizing */

/* Hero Banner Styling */
.hero-banner-wrapper {
    width: 100%;
    height: 100vh; /* Take full viewport height */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center; /* Horizontally center content */
}


/* === Text overlay within the hero banner (Updated for readability & polish) === */
.hero-text-overlay {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.96); /* Soft white to reduce glare */
    text-align: center;
    z-index: 2; /* Ensure the text is above the background & overlay */
}

.hero-text-overlay h1,
.hero-text-overlay h2,
.hero-text-overlay p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45); /* Elegant soft shadow for better contrast */
}

.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Optional: subtle dark overlay to enhance text visibility */
.hero-banner-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18); /* Slight dark overlay */
    z-index: 1;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-text-overlay p {
    font-size: 1.5rem;
    margin: 0;
}

.hero-logo {
    position: absolute;
    top: 30px;
    left: 100px;
    z-index: 1101;
    max-width: 220px;
}

@media (max-width: 768px) {
  .hero-logo {
    top: 15px;
    left: 20px;
    max-width: 160px;
  }
}



/* Content Grid */
.containerEnetgize {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    margin-bottom: 30px;
}

.leftContentEnetgize {
    flex: 1;
    padding-right: 20px;
}

.rightImageEnetgize {
    flex: 1;
    padding-left: 20px;
}

.rightContentEnetgize {
    flex: 1;
    padding-left: 20px;
}
/* R&A */
.what-we-do {
  position: relative;
  margin-top: 0; /* Keeps spacing fix */
  padding: 60px 40px;
  background: linear-gradient(135deg, #ffffff, #fdf9f6);
  border: none; /* Removed orange border */
  border-radius: 24px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  text-align: center;
  box-sizing: border-box;
}

/* Animated top accent bar */
.what-we-do::before {
  content: "";
  display: block;
  height: 4px;
  width: 80px;
  background: #f67323;
  margin: 0 auto 32px;
  border-radius: 4px;
  transform: translateX(-60px);
  opacity: 0;
  transition: all 0.8s ease;
}

/* Trigger animation */
.what-we-do.animate::before {
  transform: translateX(0);
  opacity: 1;
}
/* End R&A */
/*
.what-we-do {
  background: linear-gradient(135deg, #ffffff 0%, #fdf9f6 100%);
  border: 4px solid #F67323;
  border-radius: 16px;
  padding: 20px 0 50px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  text-align: center;
  position: relative;
  box-sizing: border-box;
  margin-top: 0;
}
*/
.what-we-do .section-title,
.what-we-do .section-intro,
.what-we-do .service-card h3,
.what-we-do .service-card p {
  color: #1a1a1a;
}

.what-we-do .service-card:hover {
  border-color: #F67323;
}


.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px 0 15px;  /* <--- Add 30px top padding */

}


.section-title {
    font-size: 2.2em;
    margin-top: 0;      /* <--- Add this */
    margin-bottom: 10px;
}


.section-intro {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #555;
}

/* Service Grid */
/* 5-19-25
.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    justify-content: center;
}*/
.service-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr); /* Default to 3 columns */
  justify-content: center;
}

/* Responsive Design: 1 column for small screens and 2 columns for medium screens */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr; /* Single column on smaller screens */
    }
    
    .hero-banner-wrapper {
        min-height: 50vh;  /* Adjust the height on smaller screens */
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
}

.service-card {
    flex: 1 1 220px; /* Flex-grow, flex-shrink, and min-width for responsive design */
    background: white;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:focus {
    outline: 2px solid #F67323;
    outline-offset: 4px;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    display: inline-block;
    color: #F67323;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.5;
}

a.service-card {
    text-decoration: none;
    color: inherit;
}

a.service-card:hover,
a.service-card:focus {
    text-decoration: none;
}
/* CTA links */
.cta-link {
  display: inline-block;
  font-weight: 700;
  color: var(--enet-blue, #0072CE);
  text-decoration: none;
  font-size: 1rem;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.cta-link sup {
  font-weight: 700;
  color: var(--enet-orange, #F67323);
}

.cta-link:hover,
.cta-link:focus {
  color: #004a99; /* darker blue for hover/focus */
  text-decoration: underline;
  outline-offset: 2px;
  outline: 2px solid #004a99;  /* accessible focus ring */
}

/* Call-to-action Button */
.cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

a.btn-primary {
    background-color: #ff6600; /* Example primary color */
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

a.btn-primary:hover {
    background-color: #e55c00; /* Darker shade on hover */
    color: white;
}


/* Footer */
footer {
    background-color: #0D1E32;
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
}

footer .footer-links {
    margin-top: 20px;
}

footer .footer-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 0 10px;
}

footer .footer-links a:hover {
    color: #F67323;
}

.solutions-capabilities {
    background-color: #0D1E32; /* Enetgize Blue */
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.solutions-capabilities .section-title,
.solutions-capabilities .section-intro,
.solutions-capabilities h3,
.solutions-capabilities p {
    color: #ffffff;
}

.solutions-capabilities .service-card {
    background-color: #112B45;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.solutions-capabilities .service-card:hover {
    background-color: #153654;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.solutions-capabilities .capability-list {
    text-align: left;
    padding-left: 40px;
    padding-right: 40px;
}

.solutions-capabilities .capability-list a {
    color: #FFFFFF;
    text-decoration: none;
}

.solutions-capabilities .capability-list a:hover {
    color: #F67323;
    /*text-decoration: underline; /* Optional: bring underline on hover */
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.category-header .icon {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #F67323;
}

/* Style for when there's no hero banner */
.top-header-wrapper {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.top-logo {
	position: absolute;
    top: 30px;
    left: 100px;
    z-index: 3;
    max-width: 220px;
/*  height: 50px; 
  width: auto; */
}

.top-nav-wrapper {
  /*background-color: rgba(0, 0, 0, 0.3);  Semi-transparent dark background */
  position: absolute;
  top: 30px;
  right: 30px; /* Distance from the right edge */
  left: auto; /* Cancel any previous left value */
  transform: none; /* Remove centering transform */
  z-index: 1600;
  /*backdrop-filter: blur(6px);*/
  /*border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);*/
  padding: 10px 20px;
}

.top-nav-wrapper .mainNav a {
  color: #0D1E32; /* Enetgize blue text color */
  font-size: 14px;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.top-nav-wrapper .mainNav a:hover {
  color: #F67323;  /* Hover effect color */
}

.mainNav {
  display: flex;
  gap: 15px;
  align-items: center;
}

.hero-nav-wrapper {
  background-color: rgba(0, 0, 0, 0.3);  /*Semi-transparent dark background */
  position: absolute;
  top: 30px;
  right: 30px; /* Distance from the right edge */
  left: auto; /* Cancel any previous left value */
  transform: none; /* Remove centering transform */
  z-index: 1600;
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 10px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-nav-wrapper .mainNav a {
  color: white;
  font-size: 14px;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.hero-nav-wrapper .mainNav a:hover {
  color: #F67323;
}

/* */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.category-group {
  background: transparent;
  border: 1px solid #ddd;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-group:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.category-header .icon {
  font-size: 28px;
  color: #999;
  transition: color 0.3s ease;
}

.category-group:hover .icon {
  color: #f67323; /* Your brand orange */
}

@media (max-width: 768px) {
  .capability-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-nav-wrapper {
    display: none;
  }
  .hero-nav-wrapper {
    display: none;
  }
}

@media (max-width: 1279px) {
  .hero-nav-wrapper {
    display: none;
  }
  .top-nav-wrapper {
    display: none;
  }
}

/* category-group */
.category-group h3,
.category-group p,
.category-group a {
  color: #ffffff; /* or #333 for slightly lighter */
}

/* capability-list */
.capability-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.capability-list li {
  margin-bottom: 8px;
}

.capability-list a {
  color: #F67323;
  text-decoration: none;
  font-size: 16px;
}

.capability-list a:hover {
  color: #f67323;
  text-decoration: underline;
}
/* labs-description */
.category-group .labs-description {
  margin-top: 0.75rem;
  font-size: 1rem;                    /* slightly larger for readability */
  line-height: 1.4;                   /* tighter, elegant spacing */
  color: var(--enet-dark, #0D1E32);
  background-color: #fafafa;          /* subtle lighter background */
  border-left: 4px solid var(--enet-orange, #F67323);
  padding: 0.75rem 1.25rem;           /* more horizontal padding */
  border-radius: 0.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07); /* gentle depth */
  font-style: italic;                 /* premium subtle italic */
  font-weight: 500;
  max-width: 360px;                   /* constrain width to keep layout balanced */
}

.category-group .labs-description sup {
  font-weight: 700;
  color: var(--enet-orange, #F67323);
}

/* R&A */
html, body {
    height: 100%;
    margin: 0;
    width: 100%;
    overflow-x: hidden; /* ✓ Keep this if you're trying to avoid horizontal scroll */
    padding: 0;
  	display: flex;
  	flex-direction: column;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* End R&A */
/* Prevent scrolling when menu is open */
.no-scroll {
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 874px) {
    .containerEnetgize {
        flex-direction: column;
        align-items: center;
    }

    .leftContentEnetgize,
    .rightImageEnetgize {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .hero-text-overlay h1 {
        font-size: 2.6rem;
    }

    .hero-text-overlay p {
        font-size: 1.3rem;
    }
    .hero-banner-wrapper {
	    height: 100vh; /* Take full viewport height */
/*    	justify-content: center;  Horizontally center content */
	}
	.what-we-do {
  		margin-top: 0;
	}
}

@media (max-width: 600px) {
  .hero-text-overlay h1 {
    font-size: 2.6rem; /* Slightly smaller, still readable */
  }

  .hero-text-overlay p {
    font-size: 1.3rem; /* Slight reduction for tighter space */
  }
}

/* New Rules for Content */
/* R&A */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 100%;
  padding: 0;
  background: transparent; /* Optional, for safety */
}
/* Adds space above footer when section background doesn't match footer */
.last-section {
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .last-section {
    padding-bottom: 60px;
  }
}


/* End R&A */

.hero-block {
  display: flex;
  justify-content: flex-end; /* Aligns content to the right */
  align-items: center; /* Vertically centers the content */
  width: 100%; /* Ensures the block spans the entire width */
  background-color: #0D1E32; /* Blue background */
  color: white;
  padding: 0 2rem; /* Optional: Padding to the sides of the content */
  margin: 0; /* Removes any default margins that might prevent full width */
  box-sizing: border-box; /* Includes padding in width calculation */
  min-height: 200px; /* Set a specific height for the block */
  margin-top: 30px;
  margin-bottom: 30px; 
}

.hero-block .content-wrapper {
  text-align: right;
  max-width: 1366px; /* Wider, still elegant */
  margin: 0 auto;
  padding: 0 2rem;
}


.hero-block h2 {
  margin: 0; /* Remove default margin for better alignment */
}


.contentMainPhrase {
  margin-bottom: 0;
  line-height: 1.4;
  text-align: center;
}

.main-tagline {
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0; /* Removes space below the main tagline */
}

.sub-tagline {
  font-size: 1.2rem;
  font-weight: normal;
  display: block;
  margin-top: 0; /* Removes space above the sub tagline */
}

.hero-block .main-tagline,
.hero-block .sub-tagline {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.2; /* tighter line height */
}

.hero-block .main-tagline {
  font-size: 3.75rem;
  font-weight: bold;
}

.hero-block .sub-tagline {
  font-size: 1.5rem;
  font-weight: normal;
  margin-top: 0.2rem; /* reduce top spacing */
}

.centered-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;

  /* Responsive padding */
  @media (min-width: 600px) {
    padding: 0 2rem;
  }

  @media (min-width: 900px) {
    padding: 0 3rem;
  }

  @media (min-width: 1200px) {
    padding: 0 4rem;
  }
}

/* Privacy Policy */
.privacy-policy-page .legal-hero {
  background: url("../images/legal-hero.jpg") no-repeat center center;
  background-size: cover;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 4rem 2rem;
  color: white;
  position: relative;
}

.privacy-policy-page .legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.privacy-policy-page .legal-header {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.privacy-policy-page .legal-header h1 {
  font-size: 2.5rem;
  margin: 0 0 0.5rem 0;
}

.privacy-policy-page .legal-header p {
  font-size: 1.125rem;
  margin: 0;
}

.privacy-policy-page .legal-section {
  max-width: 720px;
  margin: 4rem auto;
  padding: 0 1rem;
  font-size: 1.125rem;
  line-height: 1.75;
}

.privacy-policy-page .legal-section h2 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  color: #111;
}

.privacy-policy-page .legal-section a {
  color: var(--enet-orange, #f37021);
  font-weight: 600;
  text-decoration: none;
}

.privacy-policy-page {
  background-color: #f9f9f9;
}
/* End Privacy Policy */

/* Footer Wrapper */
.enetgize-footer {
  background-color: #0b1a33; /* Enetgize dark blue */
  color: #ffffff;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.875rem; /* 14px */
  line-height: 1.5;
  padding: 2.5rem 1rem;
}

/* Layout Container */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Branding Section */
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  max-width: 300px;
}

.footer-logo {
  width: 160px;
  height: auto;
  display: block;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.875rem;
  font-weight: 500;
  color: #f0f0f0;
  margin: 0 0 1rem 0;
  letter-spacing: 0.25px;
}

/* Navigation Links */
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.875rem;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}
/* Flip Image */
.flip-horizontal {
  transform: scaleX(-1);
}

.flip-vertical {
  transform: scaleY(-1);
}

/* Bottom Text */
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: #aaaaaa;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .footer-branding {
    align-items: center;
    text-align: center;
  }

  .footer-tagline {
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-block .main-tagline {
    font-size: 2.5rem;
  }

  .hero-block .sub-tagline {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-block .main-tagline {
    font-size: 1.75rem;
  }

  .hero-block .sub-tagline {
    font-size: 1rem;
  }
}

/* Used with EnetCloud and similar offerings */
.enetgize-link {
  color: var(--enet-orange);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid var(--enet-orange);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.enetgize-link:hover,
.enetgize-link:focus {
  color: var(--enet-dark);
  border-color: var(--enet-dark);
  outline: none;
}

.enetgize-link .trademark {
  font-size: 0.7em;
  vertical-align: super;
  margin-left: 2px;
  color: var(--enet-dark);
}

.enetgize-link .arrow {
  margin-left: 6px;
  font-size: 1em;
  transition: transform 0.3s ease;
}

.enetgize-link:hover .arrow,
.enetgize-link:focus .arrow {
  transform: translateX(3px);
}

/* Miscellaneous */
.section-spacer-lg {
  margin-bottom: 2.5rem; /* or adjust as needed */
}

.tm-mark {
  font-size: 0.5em;
  vertical-align: super;
  margin-left: 0.2em;
  opacity: 0.75;
}
