/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/*-- -------------------------- -->
<---    Elastomeric Coatings   -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-563 {
        padding: var(--sectionPadding);
    }
    #services-563 .cs-container {
        width: 100%;
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(2.5rem, 5vw, 4rem);
    }
    #services-563 .cs-content {
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    #services-563 .cs-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        line-height: 1.2em;
        font-weight: 900;
        text-align: center;
        margin: 0 0 1.25rem 0;
        color: var(--headerColor);
        width: 100%;
    }
    
    #services-563 .cs-columns {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    #services-563 .cs-column {
        flex: 1;
        min-width: 0;
    }
    
    #services-563 .cs-column-title {
        font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
        line-height: 1.2em;
        font-weight: 700;
        text-align: left;
        margin: 0 0 0.625rem 0;
        color: var(--headerColor);
    }
    
    #services-563 .cs-ul {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.625rem;
    }
    
    #services-563 .cs-li {
        font-size: clamp(0.8125rem, 1.6vw, 0.9375rem);
        list-style: none;
        line-height: 1.55em;
        width: 100%;
        color: var(--bodyTextColor);
        position: relative;
        padding-left: 1.125rem;
    }
    
    #services-563 .cs-li:before {
        content: "•";
        font-size: 1rem;
        color: var(--primary);
        position: absolute;
        left: 0;
        top: 0;
    }
    
    #services-563 .cs-button-solid {
        font-size: 1rem;
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0 auto;
        color: white;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
    }
    
    #services-563 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    
    #services-563 .cs-button-solid:hover:before {
        width: 100%;
    }
    
    #services-563 .cs-picture {
        width: 100%;
        max-width: 39.375rem;
        height: 24.75rem;
        display: block;
        position: relative;
    }
    
    #services-563 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 5%;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services-563 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: clamp(2rem, 3.5vw, 3rem);
    }
    
    #services-563 .cs-picture {
        width: 46%;
        max-width: 35rem;
        height: clamp(25.9375rem, 45vw, 33rem);
        order: 2;
        flex-shrink: 0;
    }
    
    #services-563 .cs-content {
        width: 50%;
        max-width: 42.5rem;
        order: 1;
    }
    
    #services-563 .cs-title {
        text-align: left;
        font-size: clamp(1.875rem, 2.8vw, 2.5rem);
        line-height: 1.2em;
        margin-bottom: 1.5rem;
    }
    
    #services-563 .cs-columns {
        flex-direction: row;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    #services-563 .cs-column-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    #services-563 .cs-ul {
        gap: 0.7rem;
    }
    
    #services-563 .cs-li {
        font-size: 0.9375rem;
        line-height: 1.6em;
    }
    
    #services-563 .cs-column {
        flex: 1;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #services-563 .cs-content {
        width: 48%;
    }
    
    #services-563 .cs-picture {
        width: 44%;
    }
    
    #services-563 .cs-title {
        font-size: 2.5rem;
    }
    
    #services-563 .cs-column-title {
        font-size: 1.3125rem;
        margin-bottom: 0.875rem;
    }
    
    #services-563 .cs-ul {
        gap: 0.75rem;
    }
    
    #services-563 .cs-li {
        font-size: 1rem;
        line-height: 1.65em;
    }
}

/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #services-563 .cs-title,
    body.dark-mode #services-563 .cs-column-title,
    body.dark-mode #services-563 .cs-li {
        color: var(--bodyTextColorWhite);
    }
}

/*-- -------------------------- -->
<---    Benefits Section        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-benefits {
        padding: var(--sectionPadding);
        background-color: #f8f8f8;
    }
    #services-benefits .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #services-benefits .cs-content {
        text-align: center;
        width: 100%;
        max-width: 46.875rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: clamp(2rem, 4vw, 3rem);
    }
    #services-benefits .cs-topper {
        font-size: var(--topperFontSize);
        line-height: 1.2em;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 1rem;
        display: block;
    }
    #services-benefits .cs-title {
        font-size: clamp(1.9375rem, 3.9vw, 3.0625rem);
        font-weight: 900;
        line-height: 1.2em;
        text-align: center;
        max-width: 43.75rem;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
    }
    #services-benefits .cs-text {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: center;
        width: 100%;
        max-width: 40.625rem;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #services-benefits .cs-color {
        color: var(--primary);
    }
    #services-benefits .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: clamp(1rem, 2.3vw, 1.75rem);
    }
    #services-benefits .cs-item {
        list-style: none;
        width: 100%;
        margin: 0;
        padding: clamp(2rem, 3vw, 2.5rem);
        background-color: #fff;
        border-radius: 1rem;
        border: 1px solid #e8e8e8;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    #services-benefits .cs-item:hover {
        transform: translateY(-0.5rem);
        box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.1);
    }
    #services-benefits .cs-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1.5rem;
    }
    #services-benefits .cs-h3 {
        font-size: clamp(1.25rem, 2vw, 1.5625rem);
        line-height: 1.2em;
        font-weight: 700;
        text-align: center;
        margin: 0 0 0.75rem 0;
        color: var(--headerColor);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    #services-benefits .cs-item-text {
        font-size: 1rem;
        line-height: 1.5em;
        text-align: center;
        margin: 0;
        color: var(--bodyTextColor);
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services-benefits .cs-card-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #services-benefits .cs-card-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop - 1280px */
@media only screen and (min-width: 80rem) {
    #services-benefits .cs-card-group {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #services-benefits {
        background-color: rgba(0, 0, 0, 0.2);
    }
    body.dark-mode #services-benefits .cs-topper {
        color: var(--primaryLight);
    }
    body.dark-mode #services-benefits .cs-title,
    body.dark-mode #services-benefits .cs-text {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #services-benefits .cs-color {
        color: var(--primaryLight);
    }
    body.dark-mode #services-benefits .cs-item {
        background-color: var(--medium);
        border-color: rgba(255, 255, 255, 0.1);
    }
    body.dark-mode #services-benefits .cs-h3,
    body.dark-mode #services-benefits .cs-item-text {
        color: var(--bodyTextColorWhite);
    }
}

/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #hero-2042 {
    position: relative;
    overflow: hidden;
  }

  #hero-2042 .cs-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  #hero-2042 .cs-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: csHeroFade 15s infinite ease-in-out;
    transform: translateZ(0);
    will-change: opacity;
  }

  #hero-2042 .cs-hero-slide-1 { background-image: url('/images/hero_img_1.png'); animation-delay: 0s; }
  #hero-2042 .cs-hero-slide-2 { background-image: url('/images/hero_img_2.png'); animation-delay: 5s; }
  #hero-2042 .cs-hero-slide-3 { background-image: url('/images/hero_img_3.png'); animation-delay: 10s; }

  /* Keep foreground content above background slides */
  #hero-2042 .cs-container,
  #hero-2042 .cs-content {
    position: relative;
    z-index: 2;
  }

  /* Overlay to improve text contrast */
  #hero-2042 .cs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.35));
    z-index: 1;
    pointer-events: none;
  }
}

@keyframes csHeroFade {
  0% { opacity: 0; }
  6% { opacity: 1; }
  27% { opacity: 1; }
  33% { opacity: 0; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  #hero-2042 .cs-hero-slide { animation: none; opacity: 0; }
  #hero-2042 .cs-hero-slide-1 { opacity: 1; }
}

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-1206 {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  #sbs-1206 .cs-container,
  #sbs-1206 .cs-container-reverse {
    width: 100%;
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }

  #sbs-1206 .cs-content {
    text-align: left;
    width: 100%;
    max-width: 33.875rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 10;
    margin: 0 auto;
  }

  #sbs-1206 .cs-text {
    margin-bottom: 1rem;
  }

  #sbs-1206 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }

  #sbs-1206 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--headerColor);
  }

  #sbs-1206 .cs-content-flair {
    width: 100%;
    margin: 0 0 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 1rem;
    column-gap: 1.25rem;
  }

  #sbs-1206 .cs-ul {
    width: 100%;
    margin: 0;
    padding-left: 1.25rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  #sbs-1206 .cs-li {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    list-style: none;
    text-align: left;
    width: 100%;
    max-width: 25rem;
    margin: 0;
    color: var(--bodyTextColor);
    position: relative;
  }

  #sbs-1206 .cs-li:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0.625rem;
    left: -0.9375rem;
  }

  #sbs-1206 .cs-video-link {
    width: 100%;
    height: 12.5rem;
    background-color: #000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  #sbs-1206 .cs-video-link:hover .cs-video-bg {
    transform: scale(1.2);
    opacity: 0.5;
  }

  #sbs-1206 .cs-video-link:hover .cs-wrapper {
    transform: scale(1.2);
  }

  #sbs-1206 .cs-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: transform 0.6s, opacity 0.3s;
  }

  #sbs-1206 .cs-wrapper {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    border: 2px solid #e8e8e8;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.75s;
  }


  #sbs-1206 .cs-image-group {
    width: 100%;
    max-width: 49.5625rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    overflow: hidden;
  }

  #sbs-1206 .cs-picture {
    width: 100%;
    max-width: 28.75rem;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  #sbs-1206 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
  }

  #sbs-1206 .cs-graphic {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }

  #sbs-1206 .cs-box {
    padding: clamp(1rem, 2.9vw, 2rem) clamp(1rem, 2.7vw, 1.5rem);
    background-color: #fff;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: clamp(5.3125rem, 12vw, 12.5rem);
    right: 0;
  }

  #sbs-1206 .cs-box-icon {
    width: clamp(1.5rem, 4vw, 2.5rem);
    height: auto;
    margin: 0 0 0.75rem;
    display: block;
  }

  #sbs-1206 .cs-box-header {
    font-size: clamp(0.875rem, 3vw, 1.25rem);
    font-weight: 700;
    line-height: 1.2em;
    margin: 0 0 0.75rem;
    color: var(--primary);
  }

  #sbs-1206 .cs-box-ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }

  #sbs-1206 .cs-box-li {
    list-style: none;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }

  #sbs-1206 .cs-stat {
    padding: clamp(1.25rem, 3vw, 2rem) clamp(0.75rem, 3vw, 1.5rem);
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: clamp(2.5rem, 7vw, 6.25rem);
  }

  #sbs-1206 .cs-ring-wrapper {
    width: clamp(5rem, 10vw, 6.25rem);
    position: relative;
    margin: 0 0 clamp(1.25rem, 2vw, 1.5rem) 0;
  }

  #sbs-1206 .cs-number {
    font-size: clamp(1.25rem, 3vw, 1.5625rem);
    font-weight: 900;
    pointer-events: none;
    line-height: 1.2em;
    color: var(--bodyTextColorWhite);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
  }

  #sbs-1206 .cs-header {
    font-size: clamp(1rem, 2.1vw, 1.25rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--bodyTextColorWhite);
  }

  #sbs-1206 .cs-desc {
    font-size: clamp(0.75rem, 1.4vw, 0.875rem);
    line-height: 1.5em;
    text-align: center;
    width: 100%;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }

  #sbs-1206 .cs-ring {
    --ring-width: 3px;
    width: calc(100% - var(--ring-width));
    aspect-ratio: 1;
    overflow: visible;
    pointer-events: none;
    rotate: -90deg;
    scale: 1 -1;
  }

  #sbs-1206 .cs-ring circle {
    fill: none;
    stroke: #f7f7f7;
    stroke-width: var(--ring-width);
  }

  #sbs-1206 .cs-ring circle {
    stroke: var(--secondaryLight);
    stroke-linecap: round;
    stroke-dasharray: calc(var(--ratio) * 314%) 314%;
    transition: stroke-dasharray 1s;
  }

  #sbs-1206 .cs-stat:hover .cs-ring {
    --ratio: 0 !important;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-1206 .cs-container,
  #sbs-1206 .cs-container-reverse {
    max-width: 60rem;
  }

  #sbs-1206 .cs-container-reverse {
    flex-direction: column !important;
  }

  #sbs-1206 .cs-content {
    max-width: 40rem;
    justify-content: center;
  }

  #sbs-1206 .cs-image-group {
    max-width: 40rem;
    overflow: hidden;
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-1206 .cs-container,
  #sbs-1206 .cs-container-reverse {
    max-width: 80rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
  }

  #sbs-1206 .cs-container-reverse {
    flex-direction: row-reverse !important;
  }

  #sbs-1206 .cs-content {
    width: 50%;
    margin: 0;
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #sbs-1206 .cs-ul {
    width: 45%;
    max-width: 15.125rem;
  }

  #sbs-1206 .cs-video-link {
    width: 50%;
    max-width: 17.5rem;
    height: 10rem;
  }

  #sbs-1206 .cs-image-group {
    width: 50%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  #sbs-1206 .cs-picture {
    width: 90%;
    max-width: 32.625rem;
  }
}

/* Large Desktop - 1500px */
@media only screen and (min-width: 93.75rem) {
  #sbs-1206 .cs-image-group {
    width: 50%;
    left: 0;
    max-width: 40rem;
  }

  #sbs-1206 .cs-picture {
    width: 100%;
    max-width: 35rem;
    height: auto;
  }

  #sbs-1206 .cs-picture img {
    width: 100%;
    height: auto;
    position: relative;
    object-fit: contain;
  }

  #sbs-1206 .cs-graphic {
    width: 59.375rem;
    top: -6.25rem;
  }
}

/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #sbs-1206 .cs-title,
  body.dark-mode #sbs-1206 .cs-text,
  body.dark-mode #sbs-1206 .cs-li,
  body.dark-mode #sbs-1206 .cs-h3,
  body.dark-mode #sbs-1206 .cs-box-li {
    color: var(--bodyTextColorWhite);
  }

  body.dark-mode #sbs-1206 .cs-box {
    background-color: var(--medium);
    border-color: rgba(255, 255, 255, 0.2);
  }

  body.dark-mode #sbs-1206 .cs-graphic {
    opacity: 0.2;
  }
}

/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-1329 {
    padding: var(--sectionPadding);
    position: relative;
  }

  #services-1329 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }

  #services-1329 .cs-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  #services-1329 .cs-title {
    max-width: 20ch;
  }

  #services-1329 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(1rem, 2.5vw, 1.25rem);
  }

  #services-1329 .cs-item {
    list-style: none;
    width: 100%;
    height: clamp(20rem, 55vw, 30rem);
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    text-align: left;
    box-shadow: 0px 12px 80px 0px rgba(26, 26, 26, 0.08);
    grid-column: span 12;
    z-index: 1;
    border-radius: 1rem;
    overflow: hidden;
  }

  #services-1329 .cs-item:hover .cs-picture img {
    transform: scale(1.2);
  }

  #services-1329 .cs-item:hover .cs-picture:after {
    opacity: 1;
  }

  #services-1329 .cs-item:hover .cs-h3 {
    color: var(--primary);
  }

  #services-1329 .cs-item:hover .cs-number {
    opacity: 1;
    top: clamp(1.25rem, 2.3vw, 2rem);
  }


  #services-1329 .cs-link {
  text-decoration:none;

    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: clamp(1.25rem, 2.3vw, 2rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
  }


  #services-1329 .cs-number {
    font-size: clamp(1.5625rem, 2.7vw, 2.4375rem);
    font-weight: bold;
    color: var(--bodyTextColorWhite);
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity 0.4s ease-out, top 0.4s ease-out;
  }

  #services-1329 .cs-h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: bold;
    margin: 0 0 0.25rem 0;
    color: var(--bodyTextColorWhite);
    transition: color 0.3s;
    text-align: inherit;
  }

  #services-1329 .cs-item-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    margin: 0;
    padding: 0;
    color: var(--bodyTextColorWhite);
  }

  #services-1329 .cs-picture {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 1rem;
  }

  #services-1329 .cs-picture:before {
    content: "";
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(top, rgba(26, 26, 26, 0) 0%, rgba(0, 0, 0, 0.76) 100%);
    background: -webkit-linear-gradient(top, rgba(26, 26, 26, 0) 0%, rgba(0, 0, 0, 0.76) 100%);
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0) 0%, rgba(0, 0, 0, 0.76) 100%);
    opacity: 1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 1rem;
  }

  #services-1329 .cs-picture:after {
    content: "";
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(top, rgba(26, 26, 26, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-linear-gradient(top, rgba(26, 26, 26, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: opacity 0.3s;
    border-radius: 1rem;
  }

  #services-1329 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: transform 0.7s;
    border-radius: 1rem;
  }

}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-1329 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 2.5rem;
  }

  #services-1329 .cs-text {
    width: 50%;
  }

  #services-1329 .cs-title {
    margin: 0;
  }

  #services-1329 .cs-card-group {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 1.5rem;
  }

  #services-1329 .cs-item {
    flex: 1;
    grid-column: span 4;
  }
}

/* Desktop - 900px */
@media only screen and (min-width: 56.25rem) {
  #services-1329 .cs-container {
    max-width: 80rem;
  }
}

/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #services-1329 .cs-title,
  body.dark-mode #services-1329 .cs-text {
    color: var(--bodyTextColorWhite);
  }

  body.dark-mode #services-1329 .cs-text,
  body.dark-mode #services-1329 .cs-item-text {
    opacity: 0.8;
  }
}

/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #reviews {
    text-align: center;
    padding: var(--sectionPadding);
  }

  #reviews .cs-container {
    width: 100%;
    max-width: 69rem;
    margin: auto;
  }

  #reviews .cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
  }

  #reviews .cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: center;
    max-width: 50rem;
    margin: 0 auto 1rem;
    color: var(--headerColor);
    position: relative;
  }

  #reviews .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: center;
    width: 100%;
    max-width: 46.875rem;
    margin: 0 auto 3rem;
    color: var(--bodyTextColor);
  }

  #reviews .cs-card-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 2rem;
    max-width: 60rem;
    margin: 0 auto;
  }

  #reviews .cs-item {
    text-align: left;
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 2.5rem 2rem;
    background-color: #fff;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #reviews .cs-item:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.12);
  }

  #reviews .cs-item:last-of-type {
    margin-bottom: 0;
  }

  #reviews .cs-item-img {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 0 1.5rem;
    border-radius: 50%;
    display: block;
    object-fit: cover;
  }

  #reviews .cs-item-p {
    font-size: 1.125rem;
    line-height: 1.6em;
    text-align: left;
    width: 100%;
    margin: 0 0 1.5rem;
    color: #4a4a4a;
    font-style: italic;
    position: relative;
  }

  #reviews .cs-item-p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary);
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    font-family: serif;
    opacity: 0.3;
  }

  #reviews .cs-reviewer {
    font-size: 1.125rem;
    line-height: 1.2em;
    font-weight: 700;
    text-align: left;
    margin: 0 0 0.25rem;
    color: var(--headerColor);
  }

  #reviews .cs-desc {
    font-size: 0.875rem;
    line-height: 1.5em;
    text-align: left;
    color: #767676;
    margin-bottom: 1rem;
  }

  #reviews .cs-item-stars {
    width: 6rem;
    height: auto;
    margin: 0;
    display: block;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #reviews .cs-card-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 70rem;
  }

  #reviews .cs-item {
    padding: 3rem 2.5rem;
  }
}

/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #reviews {
    background-color: var(--dark);
  }

  body.dark-mode #reviews .cs-title,
  body.dark-mode #reviews .cs-text,
  body.dark-mode #reviews .cs-item-p,
  body.dark-mode #reviews .cs-reviewer {
    color: var(--bodyTextColorWhite);
  }

  body.dark-mode #reviews .cs-item {
    background-color: var(--medium);
    border-color: rgba(255, 255, 255, 0.1);
  }

  body.dark-mode #reviews .cs-desc {
    color: rgba(255, 255, 255, 0.7);
  }
}

/*-- -------------------------- -->
<---    Final Call To Action    -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta {
    position: relative;
    padding: 3.125rem 0;
  }

  #cta .container {
    text-align: center;
    position: relative;
    z-index: 2;
  }

  #cta picture {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
  }

  #cta picture::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    pointer-events: none;
  }

  #cta picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 0;
  }

  #cta .title {
    font-weight: 900;
    font-size: min(9vw, 3rem);
    line-height: 1.20833333;
    color: #fff;
    position: relative;
    margin-bottom: 2.25rem;
  }

  #cta p {
    color: #fff;
    text-align: center;
    opacity: 1;
    margin: auto;
    margin-bottom: 2.25rem;
    width: 96%;
    max-width: 37.375rem;
  }
}

/* Small Desktop */
@media only screen and (min-width: 64em) {
  #cta {
    padding: 10.5rem 0;
  }
}

/* Large Desktop */
@media only screen and (min-width: 1300px) {
  #cta {
    position: relative;
    margin-top: 6.25rem;
  }

  #cta:before {
    display: none;
  }

  #cta:after {
    content: '';
    position: absolute;
    display: block;
    height: 69.25rem;
    width: 125rem;
    background: url("/assets/svgs/cta-squares.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -3;
  }

  #cta .container {
    width: 90.0625%;
    margin: auto;
  }

  #cta picture {
    width: 90.0625%;
    left: 50%;
    transform: translateX(-50%);
  }

  #cta picture:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: .7;
    top: 0;
    left: 0;
  }
}

/*-- -------------------------- -->
<---   Product Announcement    -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #product-announcement {
    padding: var(--sectionPadding);
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  /* Decorative background elements - clearly purple */
  #product-announcement::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40rem;
    height: 40rem;
    background: var(--primary);
    opacity: 0.08;
    border-radius: 50%;
    z-index: 0;
  }

  #product-announcement::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 30rem;
    height: 30rem;
    background: var(--primaryShade);
    opacity: 0.06;
    border-radius: 50%;
    z-index: 0;
  }

  #product-announcement .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
  }

  #product-announcement .cs-content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    background: white;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(106, 27, 154, 0.1);
  }

  #product-announcement .cs-product-picture {
    width: 100%;
    max-width: 35rem;
    height: auto;
    display: block;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--primary);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  #product-announcement .cs-product-picture:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
  }

  #product-announcement .cs-product-picture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
  }

  #product-announcement .cs-product-picture img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  #product-announcement .cs-product-content {
    text-align: center;
    width: 100%;
    max-width: 35rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  #product-announcement .cs-product-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.2em;
    font-weight: 900;
    margin: 0;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: fadeInUp 0.6s ease-out;
  }

  #product-announcement .cs-product-availability {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.4em;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.5rem;
    background: var(--primaryLight);
    border-radius: 0.5rem;
    border: 2px solid var(--primary);
    color: white;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
  }

  #product-announcement .cs-product-cta {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.5em;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
  }

  #product-announcement .cs-button-solid {
    font-size: 1rem;
    line-height: 3.5rem;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: white;
    background-color: var(--primary);
    min-width: 12.5rem;
    padding: 0 2rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 27, 154, 0.3);
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
    overflow: hidden;
  }

  #product-announcement .cs-button-solid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }

  #product-announcement .cs-button-solid:hover {
    background-color: var(--primaryShade);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 27, 154, 0.4);
  }

  #product-announcement .cs-button-solid:hover::before {
    left: 100%;
  }

  #product-announcement .cs-button-solid:active {
    transform: translateY(0);
  }

  /* Fade in animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #product-announcement .cs-content-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    padding: clamp(2.5rem, 5vw, 4rem);
  }

  #product-announcement .cs-product-picture {
    flex: 1;
    max-width: 50%;
  }

  #product-announcement .cs-product-content {
    flex: 1;
    text-align: left;
    align-items: flex-start;
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #product-announcement .cs-content-wrapper {
    gap: 4rem;
  }

  #product-announcement .cs-product-title {
    font-size: 2.5rem;
  }

  #product-announcement .cs-product-availability {
    font-size: 1.75rem;
  }

  #product-announcement .cs-product-cta {
    font-size: 1.25rem;
  }
}

/*-- -------------------------- -->
<---    Industries Served       -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #industries-served {
    padding: var(--sectionPadding);
    background-color: #f7f7f7;
  }

  #industries-served .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2.5rem, 6vw, 4rem);
  }

  #industries-served .cs-content {
    text-align: center;
    width: 100%;
    max-width: 50rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #industries-served .cs-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: center;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }

  #industries-served .cs-intro-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6em;
    text-align: center;
    width: 100%;
    margin: 0;
    color: var(--bodyTextColor);
  }

  #industries-served .cs-industries-grid {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  #industries-served .cs-industry-item {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 2rem;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  #industries-served .cs-industry-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  #industries-served .cs-industry-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: var(--primary);
  }

  #industries-served .cs-industry-text {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }

  #industries-served .cs-additional-industries {
    width: 100%;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border: 2px solid var(--primary);
    border-radius: 0.5rem;
  }

  #industries-served .cs-plus-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    color: var(--headerColor);
  }

  #industries-served .cs-more-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    list-style: none;
  }

  #industries-served .cs-more-list li {
    font-size: 1rem;
    line-height: 1.5em;
    padding: 0.5rem 1.25rem;
    background-color: var(--primaryLight);
    color: white;
    border-radius: 2rem;
    font-weight: 500;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #industries-served .cs-industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  #industries-served .cs-more-list {
    gap: 1.25rem;
  }

  #industries-served .cs-more-list li {
    font-size: 1.0625rem;
    padding: 0.625rem 1.5rem;
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #industries-served .cs-industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  #industries-served .cs-industry-item {
    padding: 2.5rem;
  }
}

/* Dark Mode */
@media only screen and (min-width: 0em) {
  body.dark-mode #cta:after {
    display: none;
  }
  
  body.dark-mode #product-announcement {
    background: linear-gradient(135deg, var(--dark) 0%, var(--medium) 100%);
  }

  body.dark-mode #product-announcement::before {
    background: var(--primaryLight);
    opacity: 0.12;
  }

  body.dark-mode #product-announcement::after {
    background: var(--primary);
    opacity: 0.1;
  }

  body.dark-mode #product-announcement .cs-content-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(171, 71, 188, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }

  body.dark-mode #product-announcement .cs-product-picture {
    border: 3px solid var(--primaryLight);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  }

  body.dark-mode #product-announcement .cs-product-title {
    color: white;
  }

  body.dark-mode #product-announcement .cs-product-availability {
    background: var(--primary);
    border-color: var(--primaryLight);
    color: white;
  }

  body.dark-mode #product-announcement .cs-product-cta {
    color: rgba(255, 255, 255, 0.9);
  }

  body.dark-mode #product-announcement .cs-button-solid {
    background-color: var(--primaryLight);
    box-shadow: 0 4px 15px rgba(171, 71, 188, 0.4);
  }

  body.dark-mode #product-announcement .cs-button-solid:hover {
    background-color: var(--primaryShade);
    box-shadow: 0 8px 25px rgba(171, 71, 188, 0.5);
  }

  body.dark-mode #industries-served {
    background-color: var(--dark);
  }

  body.dark-mode #industries-served .cs-title {
    color: var(--bodyTextColorWhite);
  }

  body.dark-mode #industries-served .cs-intro-text {
    color: var(--bodyTextColorWhite);
  }

  body.dark-mode #industries-served .cs-industry-item {
    background-color: var(--medium);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  body.dark-mode #industries-served .cs-industry-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  }

  body.dark-mode #industries-served .cs-industry-title {
    color: var(--primaryLight);
  }

  body.dark-mode #industries-served .cs-industry-text {
    color: var(--bodyTextColorWhite);
  }

  body.dark-mode #industries-served .cs-additional-industries {
    background-color: var(--medium);
    border-color: var(--primaryLight);
  }

  body.dark-mode #industries-served .cs-plus-title {
    color: var(--bodyTextColorWhite);
  }

  body.dark-mode #industries-served .cs-more-list li {
    background-color: var(--primary);
  }
}
