@charset "UTF-8";

/* ------------------- Base Styles ------------------- */
body {
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
    margin: 0;
}

section {
    margin-bottom: 60px;
}

.column_half {
    float: left;
    margin-top: 0;
    width: 50%;
}

.column_title {
    padding: 25px 0;
}

.columns {
    color: #a5a5a5;
    float: left;
    line-height: 24px;
    margin: 15px 0 15px 0;
    padding: 10px 0;
    text-align: justify;
    width: 25%;
}

.contact-link {
    color: #2aa52a;
    display: inline;
    font-weight: bold;
    text-decoration: none;
}
.contact-link:hover {
    color: #1679de;
}

.contact_form {
    background-color: #f6f6f6;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    flex: 1 1 300px;
    font-family: inherit;
    margin: 0 auto;
    max-width: 90vw;
    padding: 20px;
}
.contact_form form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
    box-sizing: border-box;
}
.contact_form input, .contact_form textarea {
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 16px;
    margin-top: 4px;
    padding: 8px;
}
.contact_form input[type="email"], .contact_form input[type="tel"], .contact_form input[type="text"], .contact_form textarea {
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 1rem;
    margin-bottom: 15px;
    padding: 10px;
    width: 100%;
}
.contact_form input[type="reset"], .contact_form input[type="submit"] {
    background-color: #1679de;
    border-radius: 6px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    margin-right: 10px;
    margin-top: 15px;
    padding: 10px 20px;
    width: fit-content;
    transition: background-color 0.3s ease;
}
.contact_form input[type="reset"]:hover, .contact_form input[type="submit"]:hover {
    background-color: #125fad;
}
.contact_form label {
    color: #333;
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
    margin-top: 12px;
}
.contact_form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact_image {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
}
.contact_image img {
    border-radius: 8px;
    height: auto;
    max-width: 100%;
}

.contact_section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    max-width: 900px;
    padding: 20px;
}

.container {
    background-color: #fff;
    margin: 0 auto;
    padding: 0;
    width: 90%;
    max-width: 1000px;
    box-sizing: border-box;
}

.container .column_half.left_half h2,
.container .columns h4 {
    color: #01b2d1;
    text-align: center;
}

.container .left_article h3 {
    color: #717070;
    font-weight: bold;
    margin-top: 5%;
    padding: 0 5%;
    text-transform: uppercase;
}
.container .left_article p {
    color: #000;
    font-family: inherit;
    line-height: 24px;
    margin: 30px 0 15px 0;
    padding: 0 5%;
    text-align: left;
}
.container .right_article ul {
    margin: 0;
    padding: 0;
}

.footer {
    background-color: #ccffcc;
    border-radius: 8px;
    border-top: 2px transparent;
    clear: both;
    color: white;
    font-size: 14px;
    max-width: 1000px;
    padding: 6px 10px;
    text-align: center;
    width: 100%;
}
.footer .copyright {
    background-color: #1679de;
    border-radius: 8px;
    color: #ccffcc;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0 auto;
    max-width: 300px;
    padding: 4px 10px;
    text-align: center;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    height: 40px;
    justify-content: space-around;
    margin-left: auto;
    margin-right: 20px;
    padding: 0;
    width: 45px;
    z-index: 10;
}
.hamburger .bar {
    background-color: white;
    border-radius: 2px;
    height: 6px;
    transition: all 0.3s ease;
    width: 100%;
}
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px);
}

.header_container {
    align-items: center;
    background: linear-gradient(to right,white 5%,#ccffcc 25%);
    border-radius: 8px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    max-width: 1000px;
    padding: 10px;
}
.header_container img {
    flex-shrink: 0;
    height: 75px;
    object-fit: contain;
    width: 330px;
}

.left_article {
    background-color: #fff;
    color: #343434;
    padding-bottom: 15px;
    width: 60%;
}
.left_half {
    background-color: #52bad5;
}

.main-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}
.main-content-left {
    flex: 2 1 0;
    text-align: left;
}
.main-content-right {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-content-right img {
    max-width: 100%;
    height: auto;
    display: block;
}

.middle-column {
    align-items: center;
    display: flex;
    flex: 1;
    justify-content: center;
    max-width: 500px;
    padding: 10px;
}
.middle-column img.fixed-tech-image {
    height: auto;
    max-width: 500px;
    width: 300px;
}

.noDisplay {
    display: none;
}

.placeholder {
    height: 100%;
    padding: 30px 0;
    width: 100%;
}

.primary_header {
    background-color: #fff;
    border-bottom: 2px solid #2c9ab7;
    clear: left;
    max-width: 1000px;
    padding: 10px 0;
    width: 100%;
}

/* Product grid */
.product-cell {
    align-items: center;
    aspect-ratio: 1 / 1;
    background-color: #d7fefe;
    border-radius: 12px;
    border: 2px solid #ccffcc;
    box-sizing: border-box;
    display: flex;
    flex: 1 1 0;
    justify-content: center;
    max-width: 200px;
    min-width: 100px;
    padding: 1em;
    width: 140px;
    height: 140px;
    margin-bottom: 16px;
}
.product-cell img {
    display: block;
    height: 128px;
    object-fit: contain;
    width: 145px;
    width: 100%;
    height: 100%;
}
.product-center-text {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: 17px;
    justify-content: left;
    padding: 8px 20px 0 12px;
    text-align: left;
    line-height: 1.4;
}
.product-center-text p {
    margin: 4px 0;
}
.product-grid-container {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 20px auto;
}
.product-row {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.product-spacer {
    height: 20px;
    width: 20px;
}
.product-spacer-horizontal {
    height: 20px;
}
.product-spacer-vertical {
    width: 20px;
}

.required {
    color: red;
}

.right_article {
    width: 40%;
}
.right_article ul li {
    border-left: 5px solid #717070;
    color: #fff;
    font-family: "Source Sans Pro";
    font-weight: bold;
    list-style: none;
    margin: 10px auto 10px auto;
    padding: 15px 0;
    text-align: center;
    transition: all 0.3s linear;
    width: 90%;
}
.right_article ul li:hover {
    cursor: pointer;
}
.right_half {
    background-color: #01b2d1;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.row {
    display: inline-block;
    width: 100%;
}
.row .columns p {
    padding: 0 10%;
}
.row.blockDisplay {
    display: block;
}

.secondary_header {
    background: #1679de;
    border-radius: 8px;
    display: flex;
    justify-content: left;
    margin: 0 auto;
    padding: 10px;
    width: 75vw;
}
.secondary_header li a {
    color: #ccffcc;
    font-size: 18px;
    font-weight: 600;
    padding: 4px 8px;
    text-decoration: none;
}
.secondary_header li a:hover {
    color: #50bdb7;
}
.secondary_header ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.service-spacer-horizontal {
    flex-shrink: 0;
    width: 20px;
}

.services-grid {
    margin: 0;
    max-width: 1000px;
    width: 100%;
}
.services-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    max-width: 100%;
}
.services-image-container img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100vw;
    margin: 0;
}
.services-row {
    align-items: stretch;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.table-subtext {
    color: #4a4a4a;
    font-size: 1.1em;
    line-height: 1.6;
    margin: 0 0 30px 0;
    max-width: 1000px;
    padding: 0;
    text-align: left;
}
.table-subtext p {
    line-height: 1.3;
    margin-bottom: 5px;
}
.table-title,
.table-title-left,
.table-title-index {
    color: #717070;
    font-size: 1.3em;
    letter-spacing: 1px;
}
.table-title {
    margin: 0 0 20px 0;
}
.table-title-left {
    margin-bottom: 20px;
    text-align: left;
}
.table-title-index {
    margin-bottom: 0;
}

.tech-block {
    background-color: #d7fefe;
    border-radius: 12px;
    border: 2px solid #ccffcc;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    gap: 10px;
    margin: 0 auto;
    max-width: 600px;
    padding: 12px 10px;
    width: 100%;
}
.tech-cell {
    display: block;
    font-size: 15px;
    padding: 6px;
    text-align: center;
}
.tech-cell img {
    display: block;
    height: 128px;
    margin: 0 auto;
    object-fit: contain;
    width: 128px;
}
.tech-column {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
    max-width: 250px;
    width: 100%;
}
.tech-column:last-child {
    margin-bottom: 40px;
    flex: 1 1 300px;
    max-width: 300px;
}
.tech-spacer {
    height: 20px;
}
.tech-spacer-horizontal {
    width: 40px;
    height: auto;
}
.technology-container {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    max-width: 1000px;
    width: 100%;
}

.thankyou-message {
    background-color: #e8fff0;
    border-radius: 10px;
    border: 2px solid #ccffcc;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 100px auto;
    max-width: 600px;
    padding: 30px;
    text-align: center;
}

.title {
    color: #1679de;
    font-style: normal;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: left;
}

/* ------------------- Media Queries ------------------- */
@media only screen and (max-width: 1000px) {
    a, li, p, .footer-text, .product-center-text, .secondary_header li a {
        font-size: 16px;
    }
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }

    .column_half.left_half, .column_half.right_half {
        width: 100%;
    }
    .columns {
        margin: 6px 0;
        padding: 0;
        width: 100%;
    }
    .columns p {
        padding: 0 14px;
    }

    .contact_form {
        width: 100%;
        max-width: 95vw;
        padding: 15px;
        font-size: 18px;
    }
    .contact_form h3.table-title-left { font-size: 24px; }
    .contact_form form { width: 100%; }
    .contact_form label { font-size: 18px; }
    .contact_form input,
    .contact_form textarea { font-size: 18px; }
    .contact_form input[type="submit"],
    .contact_form input[type="reset"] { font-size: 18px; }

    .contact_section {
        align-items: center;
        flex-direction: column;
        font-size: 18px;
    }

    .container {
        width: 100%;
        max-width: 100vw;
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
        margin: 0 auto;
    }

    .container .left_article h3 { margin-top: 30px; }
    .footer { display: block; width: 100%; }

    .hamburger { display: flex; }
    .hamburger .bar { background-color: #1679de; }
    .header_container { flex-wrap: wrap; }
    .header_container img {
        width: 230px !important;
        height: auto !important;
        max-width: 80vw;
    }

    .left_article, .right_article {
        height: auto;
        width: 100%;
    }

    .main-content-wrapper,
    .singlecol-mobile {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        max-width: 600px;
        margin: 0 auto;
    }
    .main-image-mobile {
        display: flex;
        justify-content: center;
        margin: 18px 0;
    }
    .main-content-wrapper h3,
    .main-content-wrapper p {
        text-align: left;
    }

    .placeholder {
        height: auto;
        margin: 22px 0;
        max-height: 100%;
        max-width: 100%;
        padding: 0;
        width: 100%;
    }

    .product-cell {
        width: 140px;
        max-width: 140px;
        min-width: 140px;
        flex: 0 0 140px;
        height: 140px;
        margin-bottom: 16px;
        box-sizing: border-box;
    }
    .product-cell img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .product-grid-container {
        align-items: center;
        padding: 0 10px;
    }
    .product-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    .product-spacer-horizontal { height: 15px; }
    .product-spacer-vertical { display: none; }
    .product-table { flex-direction: column; gap: 20px; }

    .right_article { padding-bottom: 25px; }
    .right_article img {
        background-color: white;
        display: block;
        margin: 0 auto;
    }

    .secondary_header {
        align-items: center;
        display: none;
        flex-direction: column;
        opacity: 0;
        padding: 15px 0 20px;
        position: absolute;
        right: 30px;
        top: 90px;
        transform: translateY(-100%);
        transition: transform 1.5s ease, opacity 0.3s ease;
        width: 40%;
        z-index: 999;
    }
    .secondary_header li {
        width: 100%;
        padding: 3px 0;
    }
    .secondary_header li a {
        font-size: 20px;
        display: block;
        line-height: 1.2;
        text-decoration: none;
        color: #ccffcc;
        font-weight: 600;
        padding: 5px 0;
    }
    .secondary_header ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        text-align: center;
    }
    .secondary_header.show {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
    .service-spacer-horizontal { display: none; }

    .services-grid p,
    .services-grid a {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }
    .services-row {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .services-row,
    .services-row *,
    .services-grid,
    .services-grid *,
    .services-image-container,
    .services-image-container * {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    .social .social_icon img { width: 80%; }
    .table-subtext { font-size: 16px; }

    .tech-block {
        max-width: 90vw;
        padding: 16px 14px;
        align-items: center;
    }
    .tech-cell {
        text-align: center;
        padding: 10px;
        font-size: 16px !important;
    }
    .tech-cell * {
        font-size: inherit !important;
        line-height: inherit !important;
    }
    .tech-cell img {
        width: 100%;
        max-width: 660px;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
    .technology-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .technology-container .tech-cell,
    .technology-container .tech-cell * {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
    .tech-column {
        width: 32%;
        max-width: 300px;
        min-width: 200px;
    }
    .tech-spacer-horizontal { display: none; }
    .thankyou-message {
        max-width: 100%;
        margin: 40px 0;
        padding: 18px 8px;
        box-sizing: border-box;
    }
}