/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 18 2026 | 23:06:43 */
/* =========================
   PARAMOUNT HEADER STYLE
   ========================= */

/* Main header background */
#masthead .ast-primary-header-bar,
#masthead .ast-main-header-wrap {
    background: #fff;
}

/* Header container spacing */
#masthead .site-primary-header-wrap.ast-container {
    max-width: 1240px;
    padding-left: 20px;
    padding-right: 20px;
}

/* Desktop header height + alignment */
#masthead .ast-builder-grid-row {
    min-height: 96px;
    align-items: center;
}

/* Logo sizing */
#masthead .custom-logo-link img.custom-logo {
    max-height: 52px;
    width: auto;
}

/* Left and right sections */
#masthead .site-header-primary-section-left,
#masthead .site-header-primary-section-right {
    align-items: center;
}

/* Push menu/button area to right */
#masthead .site-header-primary-section-right {
    gap: 28px;
}

/* Desktop navigation */
#primary-site-navigation-desktop .main-header-menu {
    gap: 42px;
}

#primary-site-navigation-desktop .menu-link {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 0;
    transition: all 0.25s ease;
}

#primary-site-navigation-desktop .menu-item.current-menu-item > .menu-link,
#primary-site-navigation-desktop .menu-link:hover,
#primary-site-navigation-desktop .menu-link:focus {
    color: #000;
}

/* Remove default Astra menu extras */
#primary-site-navigation-desktop .menu-item {
    margin: 0;
}

/* CTA button wrapper */
#masthead .ast-header-button-1 .ast-builder-button-wrap {
    display: flex;
    align-items: center;
}

/* Hide duplicate fallback link Astra outputs */
#masthead .ast-header-button-1 .ast-builder-button-wrap > .menu-link {
    display: none !important;
}

/* CTA button */
#masthead .ast-header-button-1 .ast-custom-button-link {
    text-decoration: none;
}

#masthead .ast-header-button-1 .ast-custom-button {
    background: linear-gradient(135deg, #f7931e 0%, #ffb347 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 30px;
    border-radius: 10px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

/* Icon */
#masthead .ast-header-button-1 .ast-custom-button::before {
    content: "\260E";
    margin-right: 10px;
    font-size: 14px;
}

/* Hover (slightly brighter + lift) */
#masthead .ast-header-button-1 .ast-custom-button:hover {
    background: linear-gradient(135deg, #ffa733 0%, #ffc266 100%);
    transform: translateY(-2px);
}

/* Optional: subtle glow like screenshot */
#masthead .ast-header-button-1 .ast-custom-button {
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.25);
}

/* Improve overall header layering */
#masthead {
    position: relative;
    z-index: 999;
    box-shadow: none;
}

/* Remove any borders/extra lines */
#masthead .ast-primary-header-bar,
#masthead .main-header-bar {
    border: none !important;
}

/* Mobile header */
#ast-mobile-header .ast-primary-header-bar {
    background: #162b57;
    min-height: 82px;
    padding-left: 16px;
    padding-right: 16px;
}

#ast-mobile-header .custom-logo-link img.custom-logo {
    max-height: 42px;
    width: auto;
}

#ast-mobile-header .menu-toggle {
    color: #ffffff;
    border: none;
    background: transparent;
    box-shadow: none;
}

/* Mobile dropdown */
#ast-mobile-site-navigation,
#ast-mobile-header .ast-mobile-header-content {
    background: #162b57;
}

#ast-mobile-site-navigation .menu-link {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

#ast-mobile-site-navigation .menu-link:hover,
#ast-mobile-site-navigation .current-menu-item > .menu-link {
    color: #ffffff;
}

/* Optional: tighter logo area if needed */
#masthead .site-branding {
    margin: 0;
}








/* =========================
   HERO SECTION
   ========================= */

.tq-hero {
    max-width: 1100px;
    padding: 80px 20px;
    color: #ffffff !important;
}

/* Badge */
.tq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 140, 0, 0.6);
    color: #ff9a2f;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 25px;
}

.tq-badge::before {
    content: "🛡";
    font-size: 14px;
}

/* Heading */
.tq-hero h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 20px;
		color:#fff;}

.tq-hero h1 span.orange {
    color: #ff8c1a;
}

/* Paragraph */
.tq-hero p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    max-width: 700px;
    margin-bottom: 35px;
}

/* Buttons */
.tq-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Orange button */
.tq-btn-primary {
    background: linear-gradient(135deg, #f58220 0%, #ffb347 100%);
    color: #fff;
    padding: 16px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
}

.tq-btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff9a2f 0%, #ffc266 100%);
}

/* White button */
.tq-btn-secondary {
    background: #ffffff;
    color: #000000;
    padding: 16px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease;
}

.tq-btn-secondary:hover {
    transform: translateY(-2px);
    background: #f2f2f2;
}

/* Responsive */
@media (max-width: 768px) {
    .tq-hero h1 {
        font-size: 40px;
    }
}





/* =========================
   PRODUCT CATEGORY CARDS
   ========================= */

.tq-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.tq-product-card {
    background: #f7f8fa;
    border: 1px solid #d9dee7;
    border-radius: 14px;
    padding: 34px 40px 38px;
    min-height: 275px;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.tq-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(14, 31, 53, 0.08);
    border-color: #cfd6e2;
}

.tq-product-icon {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 28px;
}

.tq-product-title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: #071a3d;
    margin: 0 0 14px;
}

.tq-product-text {
    font-size: 15px;
    line-height: 1.6;
    color: #556b8a;
    margin: 0 0 22px;
}

.tq-product-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #ff6a00;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tq-product-link:hover {
    color: #e55e00;
    transform: translateX(3px);
}

.tq-product-link span {
    font-size: 22px;
    line-height: 1;
}

/* Tablet */
@media (max-width: 1024px) {
    .tq-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .tq-product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tq-product-card {
        padding: 28px 24px 30px;
        min-height: auto;
    }

    .tq-product-title {
        font-size: 24px;
    }

    .tq-product-text {
        font-size: 17px;
    }
}







/* =========================
   WHY CHOOSE PARAMOUNT
   ========================= */

.tq-why-section {
    padding: 70px 20px;
}

.tq-why-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.tq-why-label {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff7a1a;
    margin-bottom: 18px;
}

.tq-why-heading {
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    color: #e9edf4;
    margin: 0 0 48px;
    max-width: 760px;
}

.tq-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 80px;
}

.tq-why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.tq-why-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f68a1f 0%, #ffac33 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.tq-why-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

.tq-why-content h3 {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px;
}

.tq-why-content p {
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255,255,255,0.65);
    margin: 0;
    max-width: 360px;
}

/* Tablet */
@media (max-width: 1024px) {
    .tq-why-heading {
        font-size: 52px;
    }

    .tq-why-grid {
        gap: 28px 40px;
    }

    .tq-why-content h3 {
        font-size: 22px;
    }

    .tq-why-content p {
        font-size: 17px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .tq-why-section {
        padding: 55px 20px;
    }

    .tq-why-heading {
        font-size: 40px;
        line-height: 1.05;
        margin-bottom: 36px;
    }

    .tq-why-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .tq-why-item {
        gap: 16px;
    }

    .tq-why-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
    }

    .tq-why-content h3 {
        font-size: 21px;
    }

    .tq-why-content p {
        font-size: 16px;
        max-width: 100%;
    }
}
	
	
/* =========================
   MATERIALS WE STOCK
   ========================= */

.tq-materials-section {
    background: #fff;
    padding: 90px 0 80px;
}

.tq-materials-wrap {
    width: 100%;
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

.tq-materials-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 70px;
}

.tq-materials-label {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6a00;
    margin-bottom: 18px;
}

.tq-materials-title {
    font-size: 40px !important;
    line-height: 1.05;
    font-weight: 800;
    color: #0b1526;
    margin: 0 0 24px;
}

.tq-materials-text {
    font-size: 15px;
    line-height: 1.5;
    color: #58708f;
    margin: 0 auto;
    max-width: 780px;
}

.tq-materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tq-material-card {
    background: #ffffff;
    border: 1px solid #d9e0ea;
    border-radius: 12px;
    padding: 22px 26px 24px;
    min-height: 102px;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

.tq-material-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(11, 21, 38, 0.06);
    border-color: #cfd8e4;
}

.tq-material-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
    color: #071a3d;
}

.tq-material-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    color: #5f7693;
}

/* Large tablet */
@media (max-width: 1200px) {
    .tq-materials-title {
        font-size: 54px;
    }

    .tq-materials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet */
@media (max-width: 991px) {
    .tq-materials-section {
        padding: 75px 0 65px;
    }

    .tq-materials-head {
        margin-bottom: 50px;
    }

    .tq-materials-title {
        font-size: 46px;
    }

    .tq-materials-text {
        font-size: 18px;
    }

    .tq-materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .tq-materials-section {
        padding: 60px 0 55px;
    }

    .tq-materials-wrap {
        padding: 0 16px;
    }

    .tq-materials-head {
        margin-bottom: 36px;
    }

    .tq-materials-title {
        font-size: 36px;
    }

    .tq-materials-text {
        font-size: 17px;
    }

    .tq-materials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tq-material-card {
        padding: 20px 20px 22px;
        min-height: auto;
    }

    .tq-material-card h3 {
        font-size: 19px;
    }

    .tq-material-card p {
        font-size: 16px;
    }
}


/* =========================
   COATINGS & FINISHES
   ========================= */

.tq-finishes-section {
    padding: 90px 20px 80px;
}

.tq-finishes-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.tq-finishes-head {
    text-align: center;
    margin-bottom: 60px;
}

.tq-finishes-label {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff7a1a;
    margin-bottom: 16px;
}

.tq-finishes-title {
    font-size: 40px !important;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 18px;
}

.tq-finishes-text {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    max-width: 640px;
    margin: 0 auto;
}

/* Grid */
.tq-finishes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

/* Card */
.tq-finish-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.25s ease;
}

.tq-finish-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
}

/* Color circle */
.tq-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Text */
.tq-finish-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .tq-finishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tq-finishes-title {
        font-size: 36px;
    }

    .tq-finishes-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}




/* =========================
   INDUSTRIES SECTION
   ========================= */

.tq-industries-section {
    background: #f5f7fa;
    padding: 90px 20px 80px;
}

.tq-industries-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.tq-industries-head {
    text-align: center;
    margin-bottom: 60px;
}

.tq-industries-label {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6a00;
    margin-bottom: 16px;
}

.tq-industries-title {
    font-size: 44px;
    font-weight: 800;
    color: #0b1526;
    margin: 0;
}

/* Grid */
.tq-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Card */
.tq-industry-card {
    background: #ffffff;
    border: 1px solid #d9e0ea;
    border-radius: 14px;
    padding: 36px 20px 34px;
    text-align: center;
    transition: all 0.25s ease;
}

.tq-industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

/* Icon circle */
.tq-industry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tq-industry-icon i {
    font-size: 28px;
    color: #6b7c93;
}

/* Title */
.tq-industry-title {
    font-size: 16px;
    font-weight: 700;
    color: #0b1526;
}

/* Responsive */
@media (max-width: 1024px) {
    .tq-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tq-industries-title {
        font-size: 36px;
    }

    .tq-industries-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   PROCESS SECTION
   ========================= */

.tq-process-section {
    padding: 90px 20px 80px;
}

.tq-process-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.tq-process-head {
    text-align: center;
    margin-bottom: 70px;
}

.tq-process-label {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6a00;
    margin-bottom: 16px;
}

.tq-process-title {
    font-size: 44px;
    font-weight: 800;
    color: #0b1526;
    margin: 0;
}

/* Grid */
.tq-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

/* Step */
.tq-process-step {
    position: relative;
    text-align: center;
}

/* Big faded number */
.tq-process-step::before {
    content: attr(data-step);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 110px;
    font-weight: 800;
    color: rgba(255, 140, 0, 0.12);
    z-index: 0;
}

/* Divider line */
.tq-process-step::after {
    content: "";
    position: absolute;
    top: 25px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: rgba(255, 140, 0, 0.3);
}

.tq-process-step:last-child::after {
    display: none;
}

/* Title */
.tq-process-step h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0b1526;
    margin: 30px 0 12px;
    position: relative;
    z-index: 1;
}

/* Text */
.tq-process-step p {
    font-size: 17px;
    line-height: 1.5;
    color: #5f7693;
    max-width: 260px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .tq-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .tq-process-step::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .tq-process-title {
        font-size: 36px;
    }

    .tq-process-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tq-process-step::before {
        font-size: 80px;
        top: -30px;
    }
}







/* =========================
   STANDARDS SECTION (FIXED)
   ========================= */

.tq-standards-section {
    padding: 90px 20px 80px;
}

/* Wrapper */
.tq-standards-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.tq-standards-head {
    text-align: center;
    margin-bottom: 70px;
}

.tq-standards-label {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff7a1a;
    margin-bottom: 16px;
}

.tq-standards-title {
    font-size: 44px !important;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

/* Grid */
.tq-standards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Card */
.tq-standard-card {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    background: transparent; /* important */
    transition: all 0.25s ease;
}

.tq-standard-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.3);
}

/* Icon */
.tq-standard-icon i {
    font-size: 34px;
    color: #ff7a1a;
    margin-bottom: 22px;
}

/* Title */
.tq-standard-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

/* Text */
.tq-standard-text {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .tq-standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tq-standards-title {
        font-size: 36px;
    }

    .tq-standards-grid {
        grid-template-columns: 1fr;
    }
}




/* =========================
   HARD TO FIND FASTENERS
   ========================= */

.tq-inventory-section {
    padding: 90px 20px 80px;
}

.tq-inventory-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.tq-inventory-label {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6a00;
    margin-bottom: 18px;
}

.tq-inventory-title {
    font-size: 44px;
    line-height: 0.95;
    font-weight: 800;
    color: #0b1526;
    margin: 0 0 32px;
    max-width: 760px;
}

.tq-inventory-text {
    font-size: 15px;
    line-height: 1.8;
    color: #5f7693;
    margin: 0 0 32px;
    max-width: 900px;
}

.tq-inventory-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tq-inventory-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.5;
    color: #0b1526;
    font-weight: 500;
}

.tq-inventory-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f57c1f;
}

.tq-inventory-list li:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .tq-inventory-title {
        font-size: 52px;
        line-height: 1;
    }
}

@media (max-width: 767px) {
    .tq-inventory-section {
        padding: 60px 20px 55px;
    }

    .tq-inventory-title {
        font-size: 38px;
        margin-bottom: 24px;
    }

    .tq-inventory-text {
        font-size: 17px;
        line-height: 1.7;
    }

    .tq-inventory-list li {
        font-size: 17px;
        margin-bottom: 18px;
    }
}









/* =========================
   TESTIMONIALS SECTION
   ========================= */

.tq-testimonials-section {
    padding: 90px 20px 80px;
}

.tq-testimonials-wrap {
    max-width: 1660px;
    margin: 0 auto;
}

/* Header */
.tq-testimonials-head {
    text-align: center;
    margin-bottom: 60px;
}

.tq-testimonials-label {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6a00;
    margin-bottom: 16px;
}

.tq-testimonials-title {
    font-size: 44px;
    line-height: 1.05;
    font-weight: 800;
    color: #0b1526;
    margin: 0;
}

/* Grid */
.tq-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Card */
.tq-testimonial-card {
    background: #ffffff;
    border: 1px solid #d9e0ea;
    border-radius: 16px;
    padding: 38px 40px 34px;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

.tq-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(11, 21, 38, 0.05);
    border-color: #cfd8e4;
}

/* Stars */
.tq-testimonial-stars {
    color: #f57c1f;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 4px;
    margin-bottom: 26px;
}

/* Quote */
.tq-testimonial-text {
    font-size: 15px;
    line-height: 1.75;
    color: #324766;
    margin: 0 0 30px;
    min-height: 165px;
}

/* Name */
.tq-testimonial-name {
    font-size: 18px;
    font-weight: 800;
    color: #0b1526;
    margin: 0 0 8px;
}

/* Role */
.tq-testimonial-role {
    font-size: 16px;
    line-height: 1.4;
    color: #5f7693;
    margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .tq-testimonials-title {
        font-size: 52px;
    }

    .tq-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .tq-testimonial-text {
        min-height: auto;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .tq-testimonials-section {
        padding: 60px 20px 55px;
    }

    .tq-testimonials-head {
        margin-bottom: 38px;
    }

    .tq-testimonials-title {
        font-size: 38px;
    }

    .tq-testimonial-card {
        padding: 28px 24px 26px;
    }

    .tq-testimonial-stars {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .tq-testimonial-text {
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .tq-testimonial-name {
        font-size: 17px;
    }

    .tq-testimonial-role {
        font-size: 15px;
    }
}

/* =========================
   FAQ CLEAN (DIV VERSION)
   ========================= */

.tq-faq-section {
    padding: 90px 20px 80px;
}

.tq-faq-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.tq-faq-head {
    text-align: center;
    margin-bottom: 50px;
}

.tq-faq-label {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6a00;
    margin-bottom: 16px;
}

.tq-faq-title {
    font-size: 44px;
    font-weight: 800;
    color: #0b1526;
}

/* LIST */
.tq-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ITEM */
.tq-faq-item {
    background: #ffffff;
    border: 1px solid #d9e0ea;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

/* QUESTION */
.tq-faq-question {
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #0b1526;
}

/* CHEVRON */
.tq-faq-chevron {
    width: 18px;
    height: 18px;
    position: relative;
    transition: transform 0.25s ease;
}

.tq-faq-chevron::before,
.tq-faq-chevron::after {
    content: "";
    position: absolute;
    top: 8px;
    width: 10px;
    height: 2px;
    background: #0b1526;
}

.tq-faq-chevron::before {
    left: 2px;
    transform: rotate(45deg);
}

.tq-faq-chevron::after {
    right: 2px;
    transform: rotate(-45deg);
}

/* OPEN STATE */
.tq-faq-item.active .tq-faq-chevron {
    transform: rotate(180deg);
}

/* ANSWER */
.tq-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.tq-faq-answer-inner {
    padding: 0 26px 22px;
    font-size: 15px;
    color: #5f7693;
}

/* MOBILE */
@media (max-width: 767px) {
    .tq-faq-title {
        font-size: 36px;
    }

    .tq-faq-question {
        font-size: 18px;
        padding: 18px 20px;
    }
}


/* =========================
   READY CTA (CLEAN)
   ========================= */

.tq-ready-section {
    background: linear-gradient(90deg, #ff6f0f 0%, #ffa62b 100%);
    padding: 110px 20px 120px;
}

.tq-ready-wrap {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* Title */
.tq-ready-title {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
}

/* Text */
.tq-ready-text {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Buttons */
.tq-ready-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tq-ready-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Primary */
.tq-ready-btn-primary {
    background: #0d234d;
    color: #ffffff;
}

.tq-ready-btn-primary:hover {
    transform: translateY(-2px);
    background: #112b5f;
}

/* Secondary (FIXED TEXT COLOR) */
.tq-ready-btn-secondary {
    background: #eaeaea;
    color: #000000; /* FIX */
}

.tq-ready-btn-secondary:hover {
    background: #dddddd;
    transform: translateY(-2px);
}

/* Icons */
.tq-ready-btn i {
    font-size: 16px;
}

/* Contact Row */
.tq-ready-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tq-ready-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

.tq-ready-contact-item i {
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .tq-ready-title {
        font-size: 40px;
    }

    .tq-ready-text {
        font-size: 18px;
    }

    .tq-ready-btn {
        width: 100%;
        justify-content: center;
    }

    .tq-ready-contact {
        flex-direction: column;
        gap: 12px;
    }
}


:root {
    --e-global-color-astglobalcolor0: #ff7010 !important;
	--e-global-color-astglobalcolor1: #ff7010 !important;}

footer a {
    color: #000 !important;
}