html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #0C2038;
  --accent-color: #f9c52c;
  --text-light: #ffffff;
  --text-muted: #cccccc;
}

body {
  margin: 0;
  background-color: #0d1b2a;
  color: var(--text-light);
  font-family: 'Open Sans', sans-serif;
}

h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
}

p, a {
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
}

.container-padding {
  padding: 0px 50px !important;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  font-family: 'Open Sans', sans-serif;
}

.logo a {
  color: white;
}

.logos {
  height: auto;
  width: 150px;
}

.hamburger {
  display: none;
}

#mobileNav {
  display: none;
  border-bottom: 1px solid white;
  background: var(--primary-color);
  flex-basis: 100%;
}

#mobileNav a {
  display: block;
  color: white;
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 5px;
}


#mobileNav a:hover {
  color: var(--accent-color);  
}

#mobileNav li {
  list-style-type: none;
}

#mobileNav ul {
  padding: 0;
}

#mobileNav ul ul {
  padding-left: 40px;
}

#mobileNav ul ul a {
  font-weight: normal;
}

.nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  background-color: var(--primary-color);
}

.nav a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
}

.nav a:hover {
  background-color: #f9c52c;
  color: #021e40;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  background-color: #021e40;
  min-width: 220px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
  flex-direction: column;
  border-radius: 4px;
  margin-top: 10px;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background-color: #f9c52c;
  color: #021e40 !important;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

/* Style the hamburger menu */
.hamburger a.icon {
  height: 3px;
  width: 25px;
  color: white;
  border-radius: 2px;
  transition: 0.3s;
  font-size: 1.5em;
}

/* Style the hamburger menu */
.hamburger a.icon:hover {
  color: var(--accent-color);
}

/* Hide nav on small screens */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--primary-color);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 1rem;
    border-radius: 8px;
    z-index: 1000;
  }

  .nav.show {
    display: flex;
  }

  .nav a {
    color: white;
    text-align: right;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  background: rgba(2, 30, 64, 0.7);
  padding: 30px 30px 40px 30px;
  max-height: 100%;
  max-width: 100%;
}

.hero-text h1 {
  color: white;
  font-size: 3rem;
  margin: 0;
}

.hero-text p {
  margin: 20px 0px 30px 0px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.cta-btn {
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  width: 300px;
  margin: 0 auto;
  border-radius: 9px;
}

.cta-btn:hover {
  background-color: #e6b626;
}

.product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 2rem;
}

.no-box img {
box-shadow: none !important;
}

.product-card {
  background-color: #fff;
  color: #000;
  padding: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.product-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.testimonial-wrapper {
  /*display: flex;*/
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

.testimonial-header {
  flex: 0 0 300px;
  padding: 10px;
}

.testimonial-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin: 1rem 0rem;
}

.testimonial-header .stars {
  margin: 1rem 0;
  color: #f9c52c;
  font-size: 1.3rem;
  text-align: center;
}

.testimonial-header p {
  color: #b0b8c1;
  text-align: center;
}

.testimonial-content {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 1rem;
}

.testimonial-slider {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  scroll-behavior: smooth;
  flex: 1;
}

.testimonial-card {
  flex: 0 0 calc(33.3333% - 0.666667rem);
  background: rgb(255, 255, 255);
  box-sizing: border-box;
  background-color: rgb(42, 59, 92);
  color: var(--text-light);
  border: 1px solid rgb(61, 78, 106);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.testimonial-card .stars {
  color: #f9c52c;
  font-size: 1.2rem;
}

.testimonial-card h3 {
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 1rem;
}

.testimonial-card p {
  margin: 0.5rem 0;
}

.testimonial-card .author {
  font-size: 0.9rem;
  font-weight: bold;
  margin-top: 1rem;
}

.testimonial-card .author span {
  font-weight: normal;
}

.testimonial-button {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  flex-shrink: 0;
}

.map {
  height: 500px;
}

.map iframe {
  width: 100%;
  height: 100% !important;
  border: none;
}

#testimonials::-webkit-scrollbar {
  display: none;
}
.testimonial-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Contact Form Styles (Updated for Professional Design) */

form {
  background-color: #1f2e4a;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  display: grid;
  gap: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

form input,
form textarea {
  background-color: #2a3b5c;
  color: var(--text-light);
  border: 1px solid #3d4e6a;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(249, 197, 44, 0.3);
  outline: none;
}

form button {
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

form button:hover {
  background-color: #e6b626;
  transform: translateY(-2px);
}

.contact-details {
  text-align: center;
  margin-top: 30px;
}

.contact-info {
  text-align: center;
  margin-top: 80px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.map iframe {
  border: 0;
  width: 100%;
  height: 600px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}


.hero-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.hero-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider img.active {
  opacity: 1;
}

.section-banner {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  display: block;
}

.lazy-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lazy-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.sign-nav {
  margin: 0 auto;
}

.sign-nav-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-anchor {
  position: relative;
  background-color: transparent;
  color: var(--accent-color);
  font-weight: bold;
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border: 2px solid var(--accent-color);
  border-radius: 6px;
  overflow: hidden;
  transition: color 0.3s ease;
}

.btn-anchor::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  z-index: 0;
  transition: left 0.4s ease;
}

.btn-anchor:hover::before {
  left: 0;
}

.btn-anchor:hover {
  color: #0d1b2a;
}

.btn-anchor span {
  position: relative;
  z-index: 1;
}

.testimonials,
.featured-products,
.featured,
.about,
.contact {
  padding: 3rem 0rem;
  text-align: center;
}

.featured-products h2,
.contact h2,
.testimonials h2,
.header-testimonial {
  text-align: center;
  color: white;
  font-size: 2rem;
  margin: 5rem 0rem 2.5rem 0rem;
}

.about {
  background-color: #0d1b2a;
  color: var(--text-light);
  padding: 4rem 2rem;
  margin-top: 40px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.about-content {
  flex: 1 1 55%;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #0d1b2a;
  background-color: var(--accent-color);
  border-radius: 9px;
  width: fit-content;
  margin: 0 auto;
  padding: 0px 20px 4px 20px;
}

.about-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
}

.about-content p {
  line-height: 1.6;
  margin-bottom: 1rem;
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.product-category {
  background-color: var(--primary-color);
  color: #fff;
  padding: 1rem;
  transition: transform 0.3s ease;
  cursor: pointer;
  height: fit-content;
}

.product-category:hover {
  transform: translateY(-5px);
  background-color: rgb(42, 59, 92);
}

.product-category h3 {
  font-size: 1.5rem;
  color: #e6b626;
  margin: 0;
}

.category-image {
  width: 100%;
  height: fit-content;
  object-fit: contain;
  margin-bottom: 0.75rem;
  border-radius: 0; /* sharp corners */
}

.contact-info {
  text-align: center;
}

.map iframe {
  border: 0;
  width: 100%;
  height: 200px;
}

.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  font-weight: bold;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border-radius: 9px;
}

.floating-cta:hover {
  transform: scale(1.05);
}

.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem 1rem 1rem;
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1;
  width: 250px;
  max-width: 250px; 
}

.footer-about p {
  margin-top: 0.5rem;
  line-height: 1.6;
  max-width: 350px;
}

.footer-heading {
  color: #f9c52c;
  text-decoration: underline;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  color: #f9c52c;
}

.label {
  color: #f9c52c;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid #ffffff22;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  font-size: 0.85rem;
}

.social-icons a {
  margin-left: 10px;
  display: inline-block;
}

.social-icons img {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.social-icons a {
  margin-left: 10px;
  display: inline-block;
}

.social-icons img {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.title-icons h1 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  text-align: center;
}

.feature {
  border: 2px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
  width: fit-content;
  font-family: 'Open Sans', sans-serif;
  width: fit-content;
  font-size: 1em; 
  font-weight:bold;
}

.feature span {
  font-size: 3em;
  margin-bottom: 3px;
}

.custom-design-box {
  border-left: 10px solid #ffac52;
  padding: 2rem 0rem 2rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.design-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffac52;
  padding: 0.5rem 1rem;
  color: #0d1b2a; /* color: white; */
  border-radius: 4px;
  margin-bottom: 1rem;
}

.price-tag {
  font-weight: bold;
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
  color: #0d1b2a !important;
}

.price-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.price-list li {
  margin-bottom: 0.5rem;
}

.price-list.horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.price-list.horizontal li {
  border: dashed 1px #f9c52c;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: bold;
}

.corrugated-list li {
  border: dashed 1px white !important;
  color: white !important;
}
.foamex-list li {
  border: dashed 1px #00bcd4 !important;
}

.price-button.foamex {
  background-color: #00bcd4;
}

.price-button.foamex a {
  color: #0d1b2a;
}

.price-button a {
  color: #0d1b2a;
}

.price-button {
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border-radius: 9px;
  max-width: 100px;
  text-align: center;
}

.price-button button {
  all: unset;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
  color: #0d1b2a; /* color: white; */
}

/* Orange Theme for Banner Signs */
.orange {
  color: #ff7e22;
}

.banner-style {
  border-left: 10px solid #ff7e22;
}

.orange-header {
  background-color: #ff7e22;
  color: #0d1b2a;
}

.banner-list li {
  border: dashed 1px #ff7e22 !important;
}

.price-button.banner {
  background-color: #ff7e22;
}

/* MDO Signs - Brown Theme */
.mdo-signs {
  background-color: #0d1b2a;
  color: white;
  padding: 4rem 2rem;
}

.highlight.brown {
  color: #a0522d;
}

.mdo-style {
  border-left: 10px solid #a0522d;
}

.brown-header {
  background-color: #a0522d;
}

.details-box.brown {
  background-color: #a0522d;
}

.brown-border {
  border: 2px dashed #a0522d !important;
}

.mdo-list li {
  border: dashed 1px #a0522d !important;
  color: white;
}

/* Beige Theme for Pop-Up Banners */
.popup-banners {
  background-color: #0d1b2a;
  color: white;
  padding: 4rem 2rem;
}

.beige {
  color: #e4b97f;
}

.popup-style {
  border-left: 10px solid #e4b97f;
}

.beige-header {
  background-color: #e4b97f;
  color: #0d1b2a;
}

.popup-list li {
  border: dashed 1px #e4b97f !important;
}

.price-button.popup {
  background-color: #e4b97f;
}

.price-button.mdo-button {
  background-color: #a0522d;
}

.price-button.cyan-button {
  background-color: #00e6f6;
}

.details-box.black {
  color: #333;
}

.beige-border {
  border: 2px dashed #e4b97f !important;
}

.orange-border {
  border: 2px dashed #ff7e22 !important;
}

.banner-signs {
  background-color: #0d1b2a;
  color: white;
  padding: 4rem 2rem;
}

.acrylic-list li {
  border: dashed 1px #ff5252 !important;
  color: white !important;
}

.price-button.acrylic {
  background-color: #ff5252;
}

.sandblasted-list li {
  border: dashed 1px #00c17b !important;
  color: #17243e;
}

.price-button.sandblasted {
  background-color: #00c17b;
}

/* Example for Corrugated */
.price-button.corrugated {
  background-color: #5271ff;
  color: white;
}

/* Foamex */
.price-button.foamex {
  background-color: #00bcd4;
}

/* Acrylic */
.price-button.acrylic {
  background-color: #ff5252;
}

/* Sandblasted */
.price-button.sandblasted {
  background-color: #00c17b;
}

.sign-diagram {
  text-align: center;
  margin-bottom: 3rem;
}

.sign-diagram img {
  width: 100%;
  max-width: 900px;
  height: auto;
}

.no-margin {
  margin: 0 !important;
}

.steel-frames-box {
  padding: 2rem;
  border: 2px dashed #f9c52c;
  margin-top: 2rem;
  border-radius: 8px;
  text-align: center;
}

.sample-signs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.sample-signs img {
  max-height: 100px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.sandblasted-signs,
.acrylic-signs,
.foamex-signs,
.corrugated-signs,
.aluminum-signs {
  background-color: #0d1b2a;
  color: #ffffff;
  padding: 4rem 2rem;
}

.aluminum-signs .highlight {
  color: #ffac52;
}

.aluminum {
  background-color: #ffac52;
}

.corrugated-style {
  border-left: 10px solid #5271ff; /* light blue */
}

.blue-header {
  background-color: #5271ff;
  color: #0d1b2a;
}

.sandblasted-signs p,
.acrylic-signs p,
.foamex-signs p,
.corrugated-signs p,
.aluminum-signs p {
  color: white;
}

.corrugated-signs .steel-frames-box {
  border: 2px dashed #5271ff;
  margin-top: 2rem;
}

.corrugated-signs .highlight {
  color: #5271ff;
}

.custom-design-box,
.steel-frames-box,
.feature {
  color: white;
}

.white {
  color: white;
}

.custom-flex {
  display: flex;
  gap: 20px;
  margin: 0 auto;
}

.max-width {
  max-width: 1000px;
  margin: 0 auto;
}

.foamex-style {
  border-left: 10px solid #00bcd4;
}

.light-blue-header {
  background-color: #00bcd4;
  color: #17243e;
}

.foamex-signs .highlight {
  color: #00bcd4;
}

.foamex-signs .steel-frames-box {
  border: 2px dashed #00bcd4;
  margin-top: 2rem;
  border-radius: 8px;
  text-align: center;
}

.foamex-signs .note {
  font-size: 0.85rem;
  color: hwb(0 82% 18% / 0.76);
  margin-top: 0.5rem;
}

.acrylic-style {
  border-left: 10px solid #ff5252; /* red accent */
}

.red-header {
  background-color: #ff5252;
  color: #0d1b2a;
}

.acrylic-signs .steel-frames-box {
  border: 2px dashed #ff5252;
  margin-top: 2rem;
}

.acrylic-signs .highlight {
  color: #ff5252;
}

.sandblasted-style {
  border-left: 10px solid #00c17b; /* soft green accent */
}

.green-header {
  background-color: #00c17b;
  color: #0d1b2a;
}

.sandblasted-signs .highlight {
  color: #00c17b;
}

.details-box {
  background-color: #00c17b;
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  margin-top: 2rem;
  text-align: center;
}

.details-box .brown {
  background-color: #a0522d !important;
}

.details-box h3 {
  margin-top: 0;
  font-size: 1.6rem;
  font-weight: bold;
}

.details-box p {
  margin: 0.75rem 0;
}

/* Max-Metal Signs - Cyan Theme */
.maxmetal-signs {
  background-color: #0d1b2a;
  color: white;
  padding: 4rem 2rem;
}

.highlight.cyan {
  color: #00e6f6;
}

.maxmetal-style {
  border-left: 10px solid #00e6f6;
}

.cyan-header {
  background-color: #00e6f6;
  color: #0d1b2a;
}

.details-box.cyan {
  background-color: #00e6f6 !important;
}

.cyan-border {
  border: 2px dashed #00e6f6 !important;
}

.maxmetal-list li {
  border: dashed 1px #00e6f6 !important;
  color: white;
}

/* Flag Signs - Red Theme */
.flag-signs {
  background-color: #0d1b2a;
  color: white;
  padding: 4rem 2rem;
}

.red {
  color: #ff5252;
}

.flag-style {
  border-left: 10px solid #ff5252;
}

.red-header {
  background-color: #ff5252;
  color: #0d1b2a;
}

.flag-list li {
  border: dashed 1px #ff5252 !important;
  color: #ffffff;
}

.price-button.flag {
  background-color: #ff5252;
}

.red-border {
  border: 2px dashed #ff5252;
}

/* Business Cards - Teal Theme */
.business-cards {
  background-color: #0d1b2a;
  color: white;
  padding: 4rem 2rem;
}

.teal {
  color: #8c52ff;
}

.card-style {
  border-left: 10px solid #8c52ff;
}

.teal-header {
  background-color: #8c52ff;
  color: #0d1b2a;
}

.card-list li {
  border: dashed 1px #8c52ff !important;
  color: #ffffff;
}

.price-button.card {
  background-color: #8c52ff;
}

.teal-border {
  border: 2px dashed #8c52ff;
}

/* --- Magnet Theme Color (Gray) --- */
.highlight.magnet {
  color: #9e9e9e;
}

.magnet-style {
  border-left: 10px solid #9e9e9e;
}

.magnet-header {
  background-color: #9e9e9e;
  color: #0d1b2a;
}

.price-button.magnet {
  background-color: #9e9e9e;
}

.magnet-list li {
  border: dashed 1px #9e9e9e !important;
  color: #17243e;
}

.magnet-border {
  border: 2px dashed #9e9e9e;
}

/* Vinyl Theme */
.vinyl-style {
  border-left: 10px solid #2196f3;
}

.vinyl-header {
  background-color: #2196f3;
  color: #0d1b2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.vinyl-lead {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.permits-section {
  background-color: #0f1522;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
}

.permits-container {
  max-width: 600px;
  margin: 0 auto;
}

.permits-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f9c52c;
  margin-bottom: 20px;
}

.permits-container p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 20px 0;
}

.permits-container a {
  color: #f9c52c;
  text-decoration: underline;
}

.qr-box {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-image {
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  background-color: white;
  padding: 8px;
}

.logo-badge {
  margin-top: 10px;
  width: 120px;
  height: auto;
}

.vinyl-services {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.vinyl-services li {
  margin-bottom: 0.5rem;
}

/* Vinyl Callouts Layout */
.vinyl-callouts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}

.vinyl-callouts .quote-box,
.vinyl-callouts .perforated-note {
  flex: 1 1 48%;
  box-sizing: border-box;
}

.vinyl-callouts .quote-box {
  border: 2px dashed #2196f3;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: white;
}

.highlight.vinyl {
  color: #2196f3
}

.about-block p {
  text-align: center;
}

.vinylbutton {
  background-color: #2196f3;
  color: white;
}

.column {
  flex-direction: column;
}

.vinyl-callouts .quote-box h3 {
  color: #2196f3;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.vinyl-callouts .perforated-note img {
  max-width: 100%;
  height: auto;
  display: block;
}

.centered {
  text-align: center;
}


.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--accent-color);
  margin-top: 75px;
}

.history-mission,
.widdop-section,
.team-facility,
.call-to-action {
  margin-bottom: 3rem;
}

.reasons-list {
  list-style: none;
  padding: 0;
  text-align: center;
  line-height: 2;
  font-weight: 500;
}

.reasons-list li {
  margin-bottom: 0.5rem;
}

.about-image img {
  max-width: 100%;
  border-radius: 8px;
  margin-top: 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.size img {
  width: 50%;
  margin: 1rem 0rem;
}

.standout-box {
  background-color: #0f1522;
  border-left: 8px solid #785dc8;
  padding: 1rem 2rem 3rem 2rem;
  margin: 3rem 0;
  border-radius: 8px;
}

.about-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.lead-text {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.about-block {
  flex: 1 1 45%;
  background-color: #112240;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-heading {
  font-size: 1.6rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  text-align: center;
}

.why-choose-section {
  text-align: center;
  margin: 4rem 0;
}

.why-box {
  background-color: rgba(33, 150, 243, 0.1);
  border-left: 6px solid #785dc8;
  padding: 2rem;
  border-radius: 8px;
  max-width: 800px;
  text-align:left;
  margin: 0 auto;
}

.why-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
  line-height: 2;
  color: white;
}

.widdop-section {
  margin: 4rem 0;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box {
  background-color: var(--accent-color);
  color: var(--primary-color);
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 10px;
  margin: 0 auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
  max-width: 1000px;
}

.cta-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-box p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
  }

  .size img {
    width: 100%;
  }

  .about-block {
    flex: 1 1 100%;
  }
}

.vinyl-signs, .magnet-signs {
  background-color: #0d1b2a;
  color: white;
  padding: 4rem 2rem;
}

/* LIGHTBOX SECTION STYLES */
.lightbox-signs {
  background-color: #0d1b2a;
  color: white;
  padding: 4rem 2rem;
}

.highlight.lightbox {
  color: #64b5f6;
}

.lightbox-style {
  border-left: 10px solid #64b5f6;
}

.lightbox-header {
  background-color: #64b5f6;
  color: #0d1b2a;
}

.lightbox-list li {
  border: dashed 1px #64b5f6 !important;
  color: white;
}

.price-button.lightbox {
  background-color: #64b5f6;
}

.lightbox-border {
  border: 2px dashed #64b5f6;
}

/* CUT LETTERS SECTION */
.cutletters-signs {
  color: #fff;
  padding: 4rem 2rem;
}

.highlight.cutletters {
  color: #ffa000;
}

.cutletters-style {
  border-left: 10px solid #ffa000;
}

.cutletters-header {
  background-color: #ffa000;
  color: #17243e;
}

.cutletters-list li {
  border: dashed 1px #ffa000 !important;
  color: #17243e;
}

.price-button.cutletters {
  background-color: #ffa000;
}

.litletters-signs {
  background-color: #0d1b2a;
  color: #ffffff;
  padding: 4rem 2rem;
}

.highlight.litletters {
  color: #fdd835;
}

.litletters-style {
  border-left: 10px solid #fdd835;
}

.litletters-header {
  background-color: #fdd835;
  color: #0d1b2a;
}

.litletters-header h2 {
  color: #0d1b2a;
}

.litletters-list li {
  border: dashed 1px #fdd835 !important;
  color: #0d1b2a;
}

.price-button.litletters {
  background-color: #fdd835;
}

.price-button.litletters button {
  color: #0d1b2a;
}

.litletters-style {
  border-left: 10px solid #fdd835;
}

.litletters-header {
  background-color: #fdd835;
  color: #0d1b2a;
}

.litletters-header h2 {
  color: #0d1b2a;
}

.price-button.litletters {
  background-color: #fdd835;
}
.price-button.litletters button {
  color: #0d1b2a;
}

.light-style-banner {
  background-color: #fdd835;
  text-align: center;
  padding: 0.75rem;
  margin: 1rem 0;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.1rem;
  width: fit-content;
  margin: 0 auto;
}

.light-style-banner h3 {
  margin: 0;
  color: #0d1b2a;
}

.freestanding-style {
  border-left: 10px solid #ffac52;
}

.freestanding-signs {
  padding: 4rem 2rem;
}

.highlight.freestanding {
  color: #ffac52;
}

.freestanding-header {
  background-color: #ffac52;
  color: white;
}

.freestanding h2 {
  color: #f9c52c;
}

.freestanding-list li {
  border: dashed 1px #ffac52 !important;
  color: white;
}

.price-button.freestanding {
  background-color: #ffac52;
}

.freestanding-border {
  border: 2px dashed #ffac52;
}

.light-options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.light-option {
  flex: 1 1 45%;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border-left: 5px solid #fdd835;
}

.light-option img {
  width: 100%;
  height: auto;
  margin-top: 1rem;
  border-radius: 6px;
}

.note.centered {
  text-align: center;
  margin: 1rem auto;
  font-size: 0.9rem;
  color: #ccc;
}

.extras-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.extras-item {
  text-align: center;
  max-width: 180px;
}

.extras-item img {
  width: 100%;
  max-width: 100px;
  margin-bottom: 0.5rem;
}

.light-options-grid-v2 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.light-option-row {
  display: flex;
  background-color: #fff;
  color: #17243e;
  border-radius: 10px;
  padding: 1.5rem;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.option-label {
  flex: 0 0 90px;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
}

.option-text {
  flex: 1;
}

.option-text h4 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.option-text p {
  margin: 0.25rem 0;
}

.option-img img {
  width: 80px;
  height: auto;
  border-radius: 6px;
}

.about-page {
  padding-top: 4rem;
  color: var(--text-light);
}

.history-mission,
.why-choose-us,
.widdop-section,
.team-facility,
.call-to-action {
  margin-bottom: 3rem;
}

.reasons-list {
  list-style: none;
  padding-left: 0;
  line-height: 2;
  font-weight: 500;
}

.about-image img {
  max-width: 100%;
  border-radius: 8px;
  margin-top: 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.call-to-action {
  text-align: center;
}

.call-to-action .cta-btn {
  margin-top: 1rem;
}

.trusted-partner-section {
  background-color: #021e40;
  color: white;
  padding: 4rem 1rem;
  text-align: center;
}

.trusted-partner-section p {
  max-width: 800px;
  margin: 1.5rem auto;
  font-size: 1rem;
  line-height: 1.6;
}

.highlight-header {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.highlight-header.yellow {
  color: #f9c52c;
}

.trusted-partner-section strong {
  color: #f9c52c;
}

.trusted-partner-section .quote {
  font-style: italic;
  font-weight: 600;
  margin-top: 3rem;
  color: #ffffff;
}

/* Branded Merch Section Styling */
#merch {
  padding: 4rem 2rem;  
}

.highlight.merch {
  color: #00bcd4; 
}

.merch-style {
  border-left: 6px solid #00bcd4;
  padding: 20px;
  background-color: #0d1e32;
}

.merch-header {
  background-color: #00bcd4;
}

.merch-list li {
  border: dashed 1px #00bcd4 !important;
  color: #17243e;
}

.merch-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0rem;
}

.merch-column {
  flex: 1 1 300px;
  background-color: #17243e;
  padding: 1rem;
  border-radius: 6px;
  position: relative;
}

.merch-column img {
  width: 150px;
  padding-top: 10px;
}

.merch-column .side-price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #00bcd4;
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-weight: bold;
}

.price-button.merch button {
  color: white;
  transition: 0.3s ease;
}

.price-button.merch button:hover {
  background-color: #019cb2;
}

.merchbutton {
  background-color: #019cb2;
}

/* Embroidered Apparel Theme */
#embroidered {

  padding: 4rem 2rem;
}

.highlight.embroidered {
  color: #da4b49; 
}

.apparel-header {
  background-color: #da4b49;
}

.apparel-style {
  border-left: 6px solid #da4b49;
}

.apparel-callout {
  background-color: #1a1f2e;
  border: 1px dashed #da4b49;
  padding: 1.2rem;
  margin-top: 2rem;
  border-radius: 5px;
  color: #fff;
}

.apparel-callout p {
  margin: 0.5rem 0;
}

/* Highlight color for DTF Print Apparel */
#dtf {
  padding: 4rem 2rem;
}

.highlight.dtf {
  color: #f0ff97;
}

/* DTF color theme styles */
.dtf-style {
  border-left: 6px solid #f0ff97;
  color: #ffffff;
}

.dtf-header {
  background-color: #f0ff97;
  color: #0f1522;
}

.dtfbutton {
  background-color: #f0ff97;
}

.dtfbutton button {
  color: #0f1522;
}

.dtfbutton button:hover {
  background-color: #e5e986;
}

/* Optional: subtle banner style */
.highlight-bar {
  background-color: rgba(240, 255, 151, 0.15);
  border-left: 4px solid #f0ff97;
  padding: 0.75rem 1rem;
  margin: 1rem 0 2rem;
  font-weight: bold;
}



/* Optional button override */
.merchredbutton {
  background-color: #da4b49 !important;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .light-option-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .option-label {
    text-align: left;
  }

  .option-img img {
    width: 100%;
    max-width: 200px;
  }
}

.light-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.light-option {
  background-color: #fff;
  color: #17243e;
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.light-option img {
  width: 80px;
  height: auto;
  margin-top: 1rem;
  border-radius: 6px;
}

/* Tablet */
@media (max-width: 1024px) {
  .light-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .light-options-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .light-option {
    padding: 1rem;
  }

  .light-option img {
    width: 100%;
    max-width: 120px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .light-option {
    flex: 1 1 100%;
  }

  .extras-grid {
    flex-direction: column;
    align-items: center;
  }
}


@media (max-width: 768px) {
  .vinyl-callouts {
    flex-direction: column;
  }

  .vinyl-callouts .quote-box,
  .vinyl-callouts .perforated-note {
    flex: 1 1 100%;
  }
}


/* Responsive Container Padding */
@media (max-width: 1024px) {
  .container-padding {
    padding: 0 30px !important;
  }
}

@media (max-width: 768px) {
  .container-padding {
    padding: 0 20px !important;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content h3 {
    font-size: 1.25rem;
  }

  .features {
    gap: 1rem;
  }

  .title-icons h1 {
    font-size: 2rem;
  }

  .design-header h2 {
    font-size: 1.2rem;
    color: #0d1b2a;
  }

  .price-tag {
    font-size: 1rem;
  }

  .steel-frames-box {
    padding: 1rem;
  }

  .sign-diagram img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {

  .qr-image {
    max-width: 90%;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    width: 100%;
    max-width: revert;
    flex: revert;
  }

  .sandblasted-signs,
  .acrylic-signs,
  .foamex-signs,
  .corrugated-signs,
  .aluminum-signs {
    padding: 4rem 1rem;
  }

  .side-price {
    display: none;
  }

  .feature {
    width: 100%;
  }

  .testimonial-card {
    flex: 0 0 100% !important;
  }

  .hero-text {
    padding: 20px;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .cta-btn {
    max-width: 90%;
    font-size: 1rem;
  }
}

.checklist {
  list-style-type: none !important;
  padding-left: 0;
}

.checklist li {
  font-size: 1.3em;
}

.trusttitle {
  color: #f9c52c;
  font-weight: bold;
}