/* =========================================================
   POWERTECH SSD SOLUTION LABS
   MAIN FRONTEND STYLESHEET
========================================================= */

:root {
    --navy: #061d45;
    --navy-light: #0b2c5c;
    --orange: #f4511e;
    --orange-dark: #df3f0d;
    --white: #ffffff;
    --black: #17243a;
    --text: #24324a;
    --muted: #687386;
    --border: #e5e8ed;
    --light: #f8f9fb;
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    color: var(--text);
    background: #fff;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 15px;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all .25s ease;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea {
    font-family: inherit;
}

.container {
    max-width: 1170px;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    background: var(--navy);
    color: #fff;
    min-height: 29px;
    font-size: 12px;
}

.top-bar-inner {
    min-height: 29px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 35px;
}

.top-contact a {
    color: #fff;
    white-space: nowrap;
}

.top-contact i {
    margin-right: 7px;
    font-size: 11px;
}


/* =========================================================
   HEADER
========================================================= */

.main-header {
    background: #fff;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 1000;
}

.header-inner {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    width: 185px;
    display: block;
}

.main-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-navigation ul li {
    margin: 0;
}

.main-navigation ul li a {
    display: block;
    color: #111827;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    position: relative;
    padding: 23px 0;
}

.main-navigation ul li a:hover,
.main-navigation ul li a.active {
    color: var(--orange);
}

.main-navigation ul li a.active:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 13px;
    width: 23px;
    height: 2px;
    background: var(--orange);
    transform: translateX(-50%);
}

.main-navigation .nav-cta a {
    background: var(--orange);
    color: #fff !important;
    padding: 10px 19px;
    border-radius: 3px;
}

.main-navigation .nav-cta a:hover {
    background: var(--orange-dark);
}

.main-navigation .nav-cta a:after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--navy);
    display: block;
    margin: 4px 0;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    min-height: 270px;
    height: 270px;
    position: relative;
    background:
        url("../images/banner.jpg")
        center center / cover
        no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 25, 59, .98) 0%,
            rgba(3, 25, 59, .91) 31%,
            rgba(3, 25, 59, .35) 57%,
            rgba(3, 25, 59, .08) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 31px;
    max-width: 560px;
    color: #fff;
}

.hero-label {
    color: var(--orange);
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .5px;
    margin-bottom: 5px;
}

.hero-content h1 {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 800;
    margin: 0 0 11px;
}

.hero-content p {
    max-width: 430px;
    color: #fff;
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.btn-primary-custom,
.btn-outline-custom {
    min-width: 117px;
    height: 34px;
    padding: 6px 17px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    border-radius: 2px;
}

.btn-primary-custom {
    color: #fff;
    background: var(--orange);
}

.btn-primary-custom:hover {
    color: #fff;
    background: var(--orange-dark);
}

.btn-outline-custom {
    color: #fff;
    border: 1px solid #fff;
}

.btn-outline-custom:hover {
    color: var(--navy);
    background: #fff;
}

.btn-outline-custom i {
    margin-right: 7px;
}


/* =========================================================
   FEATURES
========================================================= */

.feature-section {
    background: #fff;
    border-bottom: 1px solid #eeeeee;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-box {
    min-height: 145px;
    padding: 21px 20px;
    display: flex;
    gap: 13px;
    border-right: 1px solid #e7e7e7;
}

.feature-box:first-child {
    padding-left: 15px;
}

.feature-box:last-child {
    border-right: 0;
}

.feature-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--navy);
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.feature-box h4 {
    margin: 3px 0 8px;
    color: var(--navy);
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.feature-box p {
    margin: 0;
    color: #596274;
    font-size: 11px;
    line-height: 1.75;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    margin-bottom: 25px;
}

.section-heading > span,
.section-label {
    display: block;
    color: var(--orange);
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .3px;
}

.section-heading h2 {
    color: var(--navy);
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin: 3px 0 7px;
}

.heading-line {
    width: 21px;
    height: 2px;
    background: var(--orange);
    margin: 0 auto;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    padding: 27px 0 28px;
    background: #fff;
}

.product-column {
    padding-left: 7px;
    padding-right: 7px;
}

.product-box {
    height: 100%;
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .04);
    transition: all .25s ease;
}

.product-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .09);
}

.product-image {
    height: 101px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    background: #f8f8f8;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: 9px 8px 11px;
    text-align: center;
}

.product-content h3 {
    min-height: 33px;
    margin: 0 0 8px;
    color: var(--navy);
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
}

.product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 91px;
    height: 24px;
    background: var(--orange);
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    border-radius: 2px;
}

.product-button:hover {
    color: #fff;
    background: var(--orange-dark);
}

.products-more {
    text-align: center;
    margin-top: 14px;
}

.products-more a {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: var(--navy);
    color: #fff;
    padding: 8px 21px;
    border-radius: 2px;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.products-more a:hover {
    background: var(--orange);
}

.products-more i {
    font-size: 9px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 22px 0 10px;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr .9fr 1fr;
    min-height: 235px;
}

.about-content {
    padding: 15px 25px 10px 16px;
}

.about-content h2 {
    margin: 4px 0 10px;
    color: var(--navy);
    font-family: Arial, sans-serif;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
}

.about-content p {
    margin: 0 0 10px;
    color: #5c6675;
    font-size: 10px;
    line-height: 1.65;
}

.about-list {
    margin: 0 0 11px;
    padding: 0;
    list-style: none;
}

.about-list li {
    margin: 3px 0;
    color: #4d586a;
    font-size: 10px;
}

.about-list i {
    color: var(--orange);
    margin-right: 6px;
}

.orange-button {
    display: inline-block;
    padding: 7px 13px;
    background: var(--orange);
    color: #fff;
    border-radius: 2px;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
}

.orange-button:hover {
    color: #fff;
    background: var(--orange-dark);
}

.about-image {
    height: 235px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-us {
    padding: 15px 20px;
}

.why-item {
    display: flex;
    gap: 11px;
    margin-top: 10px;
}

.why-icon {
    width: 31px;
    height: 31px;
    min-width: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
}

.why-item h4 {
    margin: 0 0 1px;
    color: var(--navy);
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
}

.why-item p {
    margin: 0;
    color: #606b7b;
    font-size: 9px;
    line-height: 1.5;
}


/* =========================================================
   TESTIMONIAL + INQUIRY
========================================================= */

.testimonial-inquiry-section {
    background: #fff;
}

.testimonial-box {
    min-height: 190px;
    padding: 20px 70px 18px;
    background: #fff;
}

.testimonial-box h2 {
    margin: 2px 0 6px;
    color: var(--navy);
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.quote-mark {
    color: #777;
    font-family: Georgia, serif;
    font-size: 46px;
    height: 29px;
    line-height: 1;
}

.testimonial-box p {
    max-width: 390px;
    margin: 3px 0 8px;
    color: #4d586a;
    font-size: 12px;
    line-height: 1.65;
}

.testimonial-box strong {
    color: var(--orange);
    font-family: Arial, sans-serif;
    font-size: 11px;
}

.testimonial-dots {
    display: flex;
    gap: 5px;
    margin-top: 17px;
}

.testimonial-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c9ced5;
}

.testimonial-dots span.active {
    background: var(--orange);
}

.inquiry-section {
    min-height: 190px;
    padding: 20px 45px;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 35px;
}

.inquiry-intro {
    width: 38%;
}

.inquiry-intro > span {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
}

.inquiry-intro h2 {
    margin: 1px 0 5px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.inquiry-intro p {
    margin: 0;
    color: #fff;
    font-size: 9px;
    line-height: 1.65;
}

.inquiry-form {
    flex: 1;
}

.inquiry-form .form-row {
    margin-left: -4px;
    margin-right: -4px;
}

.inquiry-form [class*="col-"] {
    padding-left: 4px;
    padding-right: 4px;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 2px;
    outline: none;
    padding: 6px 9px;
    margin-bottom: 7px;
    font-family: Arial, sans-serif;
    font-size: 10px;
}

.inquiry-form input {
    height: 29px;
}

.inquiry-form textarea {
    height: 55px;
    resize: vertical;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: rgba(255, 255, 255, .85);
}

.inquiry-form button {
    height: 27px;
    padding: 4px 17px;
    border: 0;
    border-radius: 2px;
    background: var(--orange);
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
}

.inquiry-form button:hover {
    background: var(--orange-dark);
}


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.trust-item {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 8px;
    border-right: 1px solid #e7e7e7;
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    width: 27px;
    height: 27px;
    min-width: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 16px;
}

.trust-item strong,
.trust-item span {
    display: block;
    font-family: Arial, sans-serif;
}

.trust-item strong {
    color: var(--navy);
    font-size: 9px;
    line-height: 1.3;
}

.trust-item span {
    color: #5f6978;
    font-size: 8px;
    line-height: 1.3;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: var(--navy);
    color: #fff;
    padding-top: 24px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.35fr .85fr 1.2fr 1.25fr 1.2fr;
    gap: 25px;
    padding-bottom: 22px;
}

.footer-column {
    min-width: 0;
}

.footer-column:not(:first-child) {
    border-left: 1px solid rgba(255,255,255,.15);
    padding-left: 22px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 8px;
}

.footer-logo img {
    width: 160px;
    max-height: 54px;
    object-fit: contain;
}

.footer-company p {
    max-width: 240px;
    color: #d9e1ec;
    font-size: 9px;
    line-height: 1.7;
    margin: 0;
}

.footer-column h4 {
    color: var(--orange);
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
    margin: 2px 0 10px;
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li {
    margin-bottom: 4px;
}

.footer-column li a,
.footer-column li,
.footer-column span {
    color: #dce4ef;
    font-size: 9px;
    line-height: 1.55;
}

.footer-column li a:hover {
    color: var(--orange);
}

.footer-contact-list li,
.footer-address-list li {
    display: flex;
    gap: 8px;
}

.footer-contact-list i,
.footer-address-list i {
    width: 13px;
    min-width: 13px;
    color: #fff;
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 7px;
    margin-top: 12px;
}

.footer-social a {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 10px;
}

.footer-social a:hover {
    color: #fff;
    background: var(--orange);
    border-color: var(--orange);
}

.footer-bottom {
    min-height: 31px;
    border-top: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #cfd8e4;
    font-family: Arial, sans-serif;
    font-size: 8px;
}

.footer-bottom a {
    color: #cfd8e4;
}

.footer-bottom a:hover {
    color: var(--orange);
}

.footer-bottom span {
    margin: 0 6px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1199px) {

    .main-navigation ul {
        gap: 20px;
    }

    .main-navigation ul li a {
        font-size: 11px;
    }

    .container {
        max-width: 960px;
    }

}

@media (max-width: 991px) {

    .top-contact {
        gap: 12px;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }

    .main-navigation.open {
        display: block;
    }

    .main-navigation ul {
        display: block;
        padding: 10px 20px;
    }

    .main-navigation ul li a {
        padding: 10px 0;
    }

    .main-navigation ul li a.active:after {
        display: none;
    }

    .main-navigation .nav-cta a {
        display: inline-block;
        padding: 9px 15px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-box:nth-child(2) {
        border-right: 0;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-us {
        grid-column: span 2;
    }

    .inquiry-section {
        display: block;
    }

    .inquiry-intro {
        width: 100%;
        margin-bottom: 15px;
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-item:nth-child(3) {
        border-right: 0;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-column:not(:first-child) {
        border-left: 0;
        padding-left: 0;
    }

}

@media (max-width: 767px) {

    .top-bar {
        display: none;
    }

    .header-inner {
        min-height: 68px;
    }

    .site-logo img {
        width: 155px;
    }

    .hero-section {
        height: auto;
        min-height: 360px;
    }

    .hero-content {
        padding: 55px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-box {
        border-right: 0;
        border-bottom: 1px solid #eee;
    }

    .feature-box:last-child {
        border-bottom: 0;
    }

    .product-column {
        margin-bottom: 15px;
    }

    .product-image {
        height: 180px;
    }

    .about-grid {
        display: block;
    }

    .about-content {
        padding: 25px 15px;
    }

    .about-image {
        height: 250px;
    }

    .why-us {
        padding: 25px 15px;
    }

    .testimonial-box {
        padding: 30px 20px;
    }

    .inquiry-section {
        padding: 30px 20px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item {
        border-right: 1px solid #e7e7e7;
        border-bottom: 1px solid #e7e7e7;
    }

    .trust-item:nth-child(2n) {
        border-right: 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-column {
        border-left: 0 !important;
        padding-left: 0 !important;
    }

    .footer-bottom {
        display: block;
        padding: 12px 0;
        line-height: 2;
    }

}

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 145px;
    }

}