/* ===== Traction Battery Specific Styles ===== */

/* ===== Product Spotlight Section ===== */
.tb-spotlight-section {
    padding: 40px 0 30px;
    background: #f4f6fb;
}
.tb-spotlight-header {
    margin-bottom: 30px;
}
.tb-spotlight-header .tb-section-kicker {
    display: inline-block;
    color: #ef0f29;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: none;
    margin-bottom: 10px;
}
.tb-spotlight-header .tb-section-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

/* Row layout */
.tb-spotlight-row {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.tb-spotlight-row-reverse {
    flex-direction: row-reverse;
}
.tb-spotlight-img-col {
    flex: 0 0 33%;
    min-width: 240px;
}
.tb-spotlight-content-col {
    flex: 1;
    min-width: 260px;
}

/* Image wrapper */
.tb-spotlight-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 12px 40px rgba(30,30,80,0.10);
    padding: 16px;
    border: 1px solid #e8eaf6;
}
.tb-spotlight-img-wrap img {
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.35s ease;
}
.tb-spotlight-img-wrap:hover img {
    transform: scale(1.03);
}
.tb-spotlight-img-badge {
    position: absolute;
    bottom: -14px;
    left: 24px;
    background: linear-gradient(135deg, #ef0f29, #c0050f);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(239,15,41,0.35);
}
.tb-badge-alt {
    background: linear-gradient(135deg, #1a1a2e, #2d2d5e);
    box-shadow: 0 4px 14px rgba(30,30,80,0.30);
}

/* Content col */
.tb-spotlight-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: #e8eaf6;
    line-height: 1;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
}
.tb-spotlight-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 14px;
    line-height: 1.3;
}
.tb-spotlight-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 14px;
}
.tb-spotlight-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.tb-spotlight-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}
.tb-spotlight-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #ef0f29;
    font-size: 14px;
}

/* Pill tags */
.tb-spotlight-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.tb-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #e0e4f5;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
}
.tb-pill .fa {
    color: #ef0f29;
    font-size: 13px;
}

/* Action buttons */
.tb-spotlight-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.tb-spotlight-actions .btn {
    padding: 10px 20px !important;
    font-size: 14px;
    height: auto;
}
.tb-spotlight-actions .btn-info {
    background-color: #ef0f29 !important;
    border-color: #ef0f29 !important;
    color: #fff !important;
}
.tb-spotlight-actions .btn-info:hover,
.tb-spotlight-actions .btn-info:focus {
    background-color: #c0050f !important;
    border-color: #c0050f !important;
    color: #fff !important;
}
.tb-btn-outline {
    border: 2px solid #ef0f29 !important;
    color: #ef0f29 !important;
    background: transparent !important;
    font-weight: 600;
}
.tb-btn-outline:hover {
    background: #ef0f29 !important;
    color: #fff !important;
}

/* ===== Features Section ===== */
.tb-features-section {
    padding: 40px 0 30px;
    background: #fff;
}
.tb-section-header {
    margin-bottom: 20px;
}
.tb-section-kicker {
    display: inline-block;
    color: #ef0f29;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: none;
    margin-bottom: 12px;
}
.tb-section-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 0;
    margin-bottom: 20px;
}
.tb-section-intro {
    font-size: 15px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.tb-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.tb-feature-card {
    background: #f8f9ff;
    border: 1px solid #e8eaf6;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tb-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30,30,80,0.08);
    border-color: #ef0f29;
}
.tb-feature-icon {
        width: 49px;
    height: 45px;
    background: linear-gradient(135deg, #ef0f29, #c0050f);
    color: #fff;
    font-size: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 20px rgba(239,15,41,0.2);
}
.tb-feature-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}
.tb-feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}
.tb-features-footer {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

/* ===== Apps & Specs Section ===== */
.tb-specs-apps-section {
    padding: 50px 0;
    background: #f4f6fb;
}
.tb-apps-content {
    padding-right: 30px;
}
.tb-apps-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}
.tb-apps-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}
.tb-apps-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #ef0f29;
    font-size: 18px;
}
.tb-apps-callout {
    background: #fff;
    border-left: 4px solid #ef0f29;
    padding: 20px 25px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 30px;
}
.tb-apps-callout p {
    margin: 0;
    font-style: italic;
    color: #555;
    font-size: 15px;
}

.tb-specs-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(30,30,80,0.1);
    overflow: hidden;
    border: 1px solid #e8eaf6;
}
.tb-specs-header {
    background: #1a1a2e;
    padding: 30px;
    color: #fff;
}
.tb-specs-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
}
.tb-specs-header p {
    margin: 0;
    opacity: 0.8;
    font-size: 15px;
}
.tb-specs-body {
    padding: 10px 30px 30px;
}
.tb-spec-item {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}
.tb-spec-item:last-child {
    border-bottom: none;
}
.tb-spec-label {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 15px;
}
.tb-spec-value {
    color: #666;
    font-weight: 500;
    text-align: right;
        font-size: 15px;
}

.tb-help-block {
    margin-top: 80px;
    background: linear-gradient(135deg, #ef0f29, #c0050f);
    border-radius: 20px;
    padding: 50px 30px;
    color: #fff;
    box-shadow: 0 15px 45px rgba(239,15,41,0.3);
}
.tb-help-block h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}
.tb-help-block p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 25px;
}
.tb-cta-btn-large {
    background: #fff !important;
    color: #ef0f29 !important;
    border: none !important;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.tb-cta-btn-large:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    background: #f8f8f8 !important;
}

/* ===== Why Choose Section Styles ===== */
.tb-why-choose-section {
    padding: 50px 0;
    background: #fff;
}
.tb-premium-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
}
.tb-premium-list li {
    position: relative;
    padding: 0 0 0px 48px;
}
.tb-premium-list li::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 20px;
    width: 2px;
    height: 100%;
    background: #f0f0f0;
}
.tb-premium-list li:last-child::before {
    display: none;
}
.tb-list-dots {
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 5px solid #ef0f29;
    border-radius: 50%;
    z-index: 1;
}
.tb-premium-list h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    text-transform: none;
}
.tb-premium-list p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ===== Why Choose Visuals ===== */
.tb-why-choose-visual {
    position: relative;
    padding: 20px;
}
.tb-premium-img {
    max-width: 80%;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
}
.tb-visual-accent {
    position: absolute;
    right: 51px;
    bottom: 25px;
    width: 67%;
    height: 94%;
    background: #f8f9ff;
    border-radius: 12px;
    z-index: 1;
    border: 1px solid #e8eaf6;
}

/* ===== Traction Battery Supplier Section ===== */
.tb-supplier-section {
    padding: 60px 0 50px;
    background: #fff;
}

/* Intro block */
.tb-intro-block {
    text-align: left;
/*    max-width: 1100px;*/
    margin: 0 auto 50px;
}
.tb-intro-badge {
    display: inline-block;
    background: #ef0f29;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.tb-main-heading {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 18px;
    line-height: 1.3;
}
.tb-lead-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* Feature cards */
.tb-cards-row {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.tb-card {
    flex: 1;
    min-width: 220px;
    background: #f8f9ff;
    border: 1px solid #e8eaf6;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(239,15,41,0.12);
    border-color: #ef0f29;
}
.tb-card-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #ef0f29, #c0050f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.tb-card-icon .fa {
    color: #fff;
    font-size: 22px;
}
.tb-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.tb-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Highlight strip */
.tb-highlight-strip {
    background: linear-gradient(135deg, #1a1a2e, #2d2d5e);
    border-left: 5px solid #ef0f29;
    border-radius: 10px;
    padding: 30px 40px;
    margin-bottom: 52px;
    position: relative;
}
.tb-quote-icon {
    color: #ef0f29;
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}
.tb-highlight-strip p {
    color: #e8e8f0;
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

/* Explainer split block */
.tb-explainer-block {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.tb-explainer-text {
    flex: 1;
    min-width: 280px;
}
.tb-section-heading {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 18px;
    line-height: 1.3;
}
.tb-explainer-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 16px;
}
.tb-cta-btn {
    margin-top: 10px;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 6px;
    background-color: #ef0f29 !important;
    border: none;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}
.tb-cta-btn:hover {
    background-color: #c0050f !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239,15,41,0.3);
    text-decoration: none;
    color: #fff !important;
}

/* Use-cases grid */
.tb-explainer-visual {
    flex: 0 0 320px;
    min-width: 260px;
}
.tb-use-cases {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.tb-use-case-item {
    background: #fff;
    border: 1px solid #e8eaf6;
    border-radius: 10px;
    padding: 20px 14px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.tb-use-case-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(239,15,41,0.10);
    border-color: #ef0f29;
}
.tb-use-case-item .fa {
    font-size: 26px;
    color: #ef0f29;
    display: block;
    margin-bottom: 8px;
}
.tb-use-case-item span {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* ===== CTA Section Styles ===== */
.tb-cta-inline-section {
    padding: 22px 0;
    background: linear-gradient(135deg, #1c2459, #c0050f);
}
.tb-cta-card {
    color: #fff;
}

/* ===== FAQ Accordion Styles ===== */
.tb-faq-modern-section {
    padding: 50px 0;
    background: #fcfcfc;
}
.tb-accordion-wrapper {
    max-width: 900px;
    margin: 0 auto;
}
.tb-accordion-item {
    background: #fff !important;
    border: 1px solid #eee !important;
    border-radius: 8px !important;
    margin-bottom: 15px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
    overflow: hidden;
    transition: all 0.3s ease;
}
.tb-accordion-item:hover {
    border-color: #ef0f29 !important;
    box-shadow: 0 8px 25px rgba(239,15,41,0.08) !important;
}
.tb-accordion-item .panel-heading {
    background: #fff !important;
    padding: 0 !important;
    border: none !important;
}
.tb-accordion-item .panel-title a {
    display: block;
    padding: 18px 50px 18px 25px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
    text-transform: none !important;
}
.tb-accordion-item .panel-title a i {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
    font-size: 14px;
    color: #ef0f29;
}
.tb-accordion-item .panel-title a[aria-expanded="true"] {
    color: #ef0f29;
}
.tb-accordion-item .panel-title a[aria-expanded="true"] i {
    transform: translateY(-50%) rotate(180deg);
}
.tb-accordion-item .panel-body {
    padding: 0 30px 25px;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    border-top: none !important;
}
.tb-apps-content p{
    font-size: 15px;
}

/* Mobile Responsive Overrides */
@media (max-width: 991px) {
    .tb-apps-content { padding-right: 0; margin-bottom: 40px; }
}

@media (max-width: 767px) {
    /* Section Padding */
    .tb-spotlight-section,
    .tb-supplier-section, 
    .tb-features-section, 
    .tb-specs-apps-section, 
    .tb-why-choose-section, 
    .tb-faq-modern-section { 
        padding: 25px 0 !important; 
    }

    /* Headlines */
    .tb-main-heading { font-size: 18px; }
    .tb-section-heading { font-size: 17px !important; margin-bottom: 12px; }
    .tb-section-intro { font-size: 13px; }
    h1.title { font-size: 20px !important; }
    .h2 { font-size: 18px !important; }
    .h3 { font-size: 16px !important; }
    p { font-size: 13px !important; line-height: 1.5 !important; }

    /* Spotlight */
    .tb-spotlight-row,
    .tb-spotlight-row-reverse {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 25px;
    }
    .tb-spotlight-img-col,
    .tb-spotlight-content-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .tb-spotlight-number { font-size: 28px; }
    .tb-spotlight-title { font-size: 16px; margin-bottom: 8px; }
    .tb-spotlight-list li { font-size: 12px; line-height: 1.5; margin-bottom: 6px; }
    .tb-spotlight-desc { font-size: 13px; line-height: 1.5; }
    .tb-spotlight-actions { flex-direction: column; gap: 6px; }
    .tb-spotlight-actions .btn { width: 100%; text-align: center; font-size: 12px; padding: 8px 12px !important; }
    .tb-spotlight-header { margin-bottom: 20px; }

    /* Features */
    .tb-feature-card { padding: 20px 15px; }
    .tb-feature-icon { width: 45px; height: 45px; font-size: 18px; margin-bottom: 12px; }
    .tb-feature-card h4 { font-size: 15px; }
    .tb-feature-card p { font-size: 12px; }

    /* Specs & Apps */
    .tb-spec-item { flex-direction: column; text-align: left; padding: 12px 0; }
    .tb-spec-value { text-align: left; margin-top: 5px; font-size: 13px; }
    .tb-spec-label { font-size: 13px; }
    .tb-specs-header { padding: 20px 15px; }
    .tb-specs-title { font-size: 16px; margin-bottom: 5px; }
    .tb-specs-header p { font-size: 13px; }
    .tb-specs-body { padding: 10px 15px 20px; }
    .tb-apps-list li { font-size: 12px; }

    /* Why Choose */
    .tb-premium-list h4 { font-size: 13px; margin-bottom: 6px; }
    .tb-premium-list p { font-size: 12px; }
    .tb-premium-list li { padding-left: 30px; }
    .tb-list-dots { width: 14px; height: 14px; border-width: 2px; }

    /* Intro */
    .tb-cards-row { flex-direction: column; gap: 12px; }
    .tb-highlight-strip { padding: 15px; margin-bottom: 25px; }
    .tb-highlight-strip p { font-size: 13px; }
    .tb-explainer-block { flex-direction: column; gap: 15px; }
    .tb-explainer-visual { flex: auto; width: 100%; }
    .tb-use-cases { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .tb-use-case-item { padding: 12px 8px; }
    .tb-use-case-item .fa { font-size: 18px; }
    .tb-use-case-item span { font-size: 10px; }

    /* Help Block */
    .tb-help-block { padding: 40px 20px; }
    .tb-help-block h3 { font-size: 22px; }
    .tb-help-block p { font-size: 16px; }

    /* FAQ */
    .tb-faq-modern-section .tb-section-header { margin-bottom: 30px !important; }
    .tb-accordion-item .panel-title a { font-size: 12px; padding: 12px 50px 12px 20px; }
    .tb-accordion-item .panel-body { padding: 0 20px 20px; font-size: 12px; }
    
    /* CTA */
    .tb-cta-actions .btn { width: 100%; margin: 10px 0 !important; padding: 10px 20px !important; font-size: 14px; }
}

@media (max-width: 480px) {
    .tb-use-cases { grid-template-columns: repeat(2, 1fr); }
    .tb-main-heading { font-size: 17px; }
}



/* ===== Applications Section ===== */

.tb-applications-section {
    padding: 50px 0;
    background: #f4f6fb;
}

.tb-applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.tb-application-card {
    background: #fff;
    border: 1px solid #e8eaf6;
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30,30,80,0.04);
}

.tb-application-card:hover {
    transform: translateY(-6px);
    border-color: #ef0f29;
    box-shadow: 0 18px 40px rgba(239,15,41,0.08);
}

.tb-application-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ef0f29, #c0050f);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(239,15,41,0.18);
}

.tb-application-icon i {
    color: #fff;
    font-size: 24px;
}

.tb-application-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    margin-top: 0;
}

.tb-application-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.tb-applications-footer {
    margin-top: 35px;
}

.tb-applications-footer p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}

/* ===== Responsive ===== */

@media (max-width: 767px) {

    .tb-applications-section {
        padding: 30px 0;
    }

    .tb-applications-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 25px;
    }

    .tb-application-card {
        padding: 20px 16px;
        gap: 14px;
    }

    .tb-application-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .tb-application-icon i {
        font-size: 18px;
    }

    .tb-application-content h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .tb-application-content p {
        font-size: 12px;
        line-height: 1.6;
    }

    .tb-applications-footer p {
        font-size: 13px;
    }
}


/* ===== Technical Highlights Section ===== */

.tb-tech-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.tb-tech-layout {
    display: grid;
    grid-template-columns: 1fr 340px 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 50px;
}

/* ===== Cards ===== */

.tb-tech-card {
    background: #f8f9ff;
    border: 1px solid #e8eaf6;
    border-radius: 18px;
    padding: 28px 24px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    position: relative;
}

.tb-tech-card:hover {
    transform: translateY(-6px);
    border-color: #ef0f29;
    box-shadow: 0 18px 40px rgba(239,15,41,0.08);
}

.tb-tech-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.tb-tech-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ef0f29, #c0050f);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(239,15,41,0.2);
}

.tb-tech-icon i {
    color: #fff;
    font-size: 22px;
}

.tb-tech-number {
    font-size: 34px;
    font-weight: 800;
    color: #e6e8f2;
    line-height: 1;
}

.tb-tech-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.4;
}

.tb-tech-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* ===== Center Core ===== */

.tb-tech-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tb-tech-core {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tb-tech-core-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(239,15,41,0.25);
    animation: tbRotate 20s linear infinite;
}

.tb-tech-core::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef0f29, #c0050f);
    box-shadow: 0 25px 60px rgba(239,15,41,0.25);
}

.tb-tech-core-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.tb-tech-core-content i {
    font-size: 48px;
    margin-bottom: 15px;
}

.tb-tech-core-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.tb-tech-core-content span {
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ===== Highlight Card ===== */

.tb-tech-card-highlight {
    background: linear-gradient(135deg, #1a1a2e, #2d2d5e);
    border: none;
}

.tb-tech-card-highlight h4,
.tb-tech-card-highlight p {
    color: #fff;
}

.tb-tech-card-highlight .btn {
    margin-top: 20px;
    background: #ef0f29 !important;
    border-color: #ef0f29 !important;
    color: #fff !important;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 24px;
}

/* ===== Animation ===== */

@keyframes tbRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== Responsive ===== */

@media (max-width: 1100px) {

    .tb-tech-layout {
        grid-template-columns: 1fr;
    }

    .tb-tech-center {
        order: -1;
        margin-bottom: 10px;
    }

    .tb-tech-core {
        width: 260px;
        height: 260px;
    }

    .tb-tech-core::before {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 767px) {

    .tb-tech-section {
        padding: 35px 0;
    }

    .tb-tech-layout {
        margin-top: 30px;
        gap: 10px;
    }

    .tb-tech-card {
        padding: 22px 18px;
        margin-bottom: 16px;
    }

    .tb-tech-icon {
        width: 48px;
        height: 48px;
    }

    .tb-tech-icon i {
        font-size: 18px;
    }

    .tb-tech-number {
        font-size: 26px;
    }

    .tb-tech-card h4 {
        font-size: 16px;
    }

    .tb-tech-card p {
        font-size: 13px;
        line-height: 1.7;
    }

    .tb-tech-core {
        width: 220px;
        height: 220px;
    }

    .tb-tech-core::before {
        width: 170px;
        height: 170px;
    }

    .tb-tech-core-content i {
        font-size: 34px;
    }

    .tb-tech-core-content h3 {
        font-size: 24px;
    }

    .tb-tech-core-content span {
        font-size: 11px;
    }
}

/* ===== Service Support Section ===== */

.tb-support-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #fff 0%, #f8f9ff 100%);
    overflow: hidden;
}

.tb-support-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* ===== Left Content ===== */

.tb-support-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239,15,41,0.08);
    color: #ef0f29;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
}

.tb-support-heading {
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 22px;
}

.tb-support-lead {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
}

.tb-support-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 16px;
}

/* ===== Points ===== */

.tb-support-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 35px;
}

.tb-support-point {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e8eaf6;
    border-radius: 12px;
    padding: 14px 16px;
    transition: all 0.3s ease;
}

.tb-support-point:hover {
    border-color: #ef0f29;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(239,15,41,0.08);
}

.tb-support-point i {
    color: #ef0f29;
    font-size: 18px;
}

.tb-support-point span {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

/* ===== Right Visual ===== */

.tb-support-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.tb-support-card-main {
    width: 100%;
    max-width: 420px;
    background: #1a1a2e;
    border-radius: 28px;
    padding: 55px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(30,30,80,0.18);
}

.tb-support-card-main::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    top: -60px;
    right: -60px;
}

.tb-support-icon-main {
    width: 95px;
    height: 95px;
    margin: 0 auto 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ef0f29, #c0050f);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(239,15,41,0.3);
}

.tb-support-icon-main i {
    color: #fff;
    font-size: 42px;
}

.tb-support-card-main h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.tb-support-card-main p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    margin: 0;
}

/* ===== Floating Cards ===== */

.tb-floating-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(30,30,80,0.1);
    border: 1px solid #edf0f8;
    animation: tbFloat 4s ease-in-out infinite;
}

.tb-floating-card i {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #ef0f29, #c0050f);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tb-floating-card span {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}

.tb-float-top {
    top: 40px;
    left: -20px;
}

.tb-float-bottom {
    bottom: 45px;
    right: -10px;
    animation-delay: 2s;
}

/* ===== Animation ===== */

@keyframes tbFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ===== Responsive ===== */

@media (max-width: 1100px) {

    .tb-support-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tb-support-visual {
        min-height: auto;
    }

    .tb-float-top {
        left: 10px;
    }

    .tb-float-bottom {
        right: 10px;
    }
}

@media (max-width: 767px) {

    .tb-support-section {
        padding: 35px 0;
    }

    .tb-support-heading {
        font-size: 24px;
    }

    .tb-support-lead {
        font-size: 14px;
        line-height: 1.8;
    }

    .tb-support-text {
        font-size: 13px;
    }

    .tb-support-points {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
    }

    .tb-support-point {
        padding: 12px 14px;
    }

    .tb-support-point span {
        font-size: 13px;
    }

    .tb-support-card-main {
        padding: 40px 24px;
        border-radius: 22px;
    }

    .tb-support-icon-main {
        width: 72px;
        height: 72px;
    }



/* ===== Contact CTA Section ===== */

.tb-contact-cta-section {
    padding: 55px 0;
    background: #f4f6fb;
}

.tb-contact-cta-card {
    background: linear-gradient(135deg, #1a1a2e, #2d2d5e);
    border-radius: 24px;
    padding: 55px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.tb-contact-cta-card::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    right: -120px;
    top: -120px;
}

.tb-contact-content {
    max-width: 760px;
    position: relative;
    z-index: 2;
}

.tb-contact-kicker {
    display: inline-block;
    color: #ef0f29;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.tb-contact-heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 20px;
}

.tb-contact-text {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.82);
    margin-bottom: 14px;
}

.tb-contact-action {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 220px;
    position: relative;
    z-index: 2;
}

.tb-contact-action .btn {
    padding: 14px 22px !important;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.tb-contact-action .btn-info {
    background: #ef0f29 !important;
    border-color: #ef0f29 !important;
    color: #fff !important;
}

.tb-contact-action .btn-info:hover {
    background: #c0050f !important;
    border-color: #c0050f !important;
}

.tb-contact-outline {
    background: transparent !important;
    border: 2px solid rgba(255,255,255,0.15) !important;
    color: #fff !important;
}

.tb-contact-outline:hover {
    background: #fff !important;
    color: #1a1a2e !important;
}

/* ===== Responsive ===== */

@media (max-width: 991px) {

    .tb-contact-cta-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
    }

    .tb-contact-action {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {

    .tb-contact-cta-section {
        padding: 35px 0;
    }

    .tb-contact-cta-card {
        padding: 30px 20px;
        border-radius: 18px;
        gap: 25px;
    }

    .tb-contact-heading {
        font-size: 24px;
    }

    .tb-contact-text {
        font-size: 13px;
        line-height: 1.8;
    }

    .tb-contact-action {
        flex-direction: column;
    }

    .tb-contact-action .btn {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 12px 18px !important;
    }
}

/* ===== Related Products Section ===== */

.tb-related-products-section {
    padding: 55px 0;
    background: #fff;
}

.tb-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.tb-related-card {
    background: #f8f9ff;
    border: 1px solid #e8eaf6;
    border-radius: 18px;
    padding: 35px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.tb-related-card:hover {
    transform: translateY(-6px);
    border-color: #ef0f29;
    box-shadow: 0 18px 40px rgba(239,15,41,0.08);
}

.tb-related-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ef0f29, #c0050f);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(239,15,41,0.2);
}

.tb-related-icon i {
    color: #fff;
    font-size: 30px;
}

.tb-related-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
    line-height: 1.4;
}

.tb-related-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* ===== Responsive ===== */

@media (max-width: 991px) {

    .tb-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .tb-related-products-section {
        padding: 35px 0;
    }

    .tb-related-grid {
        gap: 16px;
        margin-top: 25px;
    }

    .tb-related-card {
        padding: 24px 18px;
        border-radius: 14px;
    }

    .tb-related-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin-bottom: 16px;
    }

    .tb-related-icon i {
        font-size: 22px;
    }

    .tb-related-card h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .tb-related-card p {
        font-size: 13px;
        line-height: 1.7;
    }
}
    .tb-support-icon-main i {
        font-size: 30px;
    }

    .tb-support-card-main h3 {
        font-size: 21px;
    }

    .tb-support-card-main p {
        font-size: 13px;
    }

    .tb-floating-card {
        position: static;
        margin-top: 15px;
        justify-content: center;
        animation: none;
    }

    .tb-support-visual {
        flex-direction: column;
        gap: 12px;
    }
}


/* ===== Contact CTA Section ===== */

.tb-contact-cta-section {
    padding: 55px 0;
    background: #f4f6fb;
}

.tb-contact-cta-card {
    background: #1a1a2e;
    border-radius: 24px;
    padding: 55px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.tb-contact-cta-card::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    right: -120px;
    top: -120px;
}

.tb-contact-content {
    max-width: 760px;
    position: relative;
    z-index: 2;
}

.tb-contact-kicker {
    display: inline-block;
    color: #ef0f29;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.tb-contact-heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 20px;
}

.tb-contact-text {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.82);
    margin-bottom: 14px;
}

.tb-contact-action {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 220px;
    position: relative;
    z-index: 2;
}

.tb-contact-action .btn {
    padding: 14px 22px !important;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.tb-contact-action .btn-info {
    background: #ef0f29 !important;
    border-color: #ef0f29 !important;
    color: #fff !important;
}

.tb-contact-action .btn-info:hover {
    background: #c0050f !important;
    border-color: #c0050f !important;
}

.tb-contact-outline {
    background: transparent !important;
    border: 2px solid rgba(255,255,255,0.15) !important;
    color: #fff !important;
}

.tb-contact-outline:hover {
    background: #fff !important;
    color: #1a1a2e !important;
}

/* ===== Responsive ===== */

@media (max-width: 991px) {

    .tb-contact-cta-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
    }

    .tb-contact-action {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {

    .tb-contact-cta-section {
        padding: 35px 0;
    }

    .tb-contact-cta-card {
        padding: 30px 20px;
        border-radius: 18px;
        gap: 25px;
    }

    .tb-contact-heading {
        font-size: 24px;
    }

    .tb-contact-text {
        font-size: 13px;
        line-height: 1.8;
    }

    .tb-contact-action {
        flex-direction: column;
    }

    .tb-contact-action .btn {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 12px 18px !important;
    }
}

/* ===== Related Products Section ===== */

.tb-related-products-section {
    padding: 55px 0;
    background: #fff;
}

.tb-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.tb-related-card {
    background: #f8f9ff;
    border: 1px solid #e8eaf6;
    border-radius: 18px;
    padding: 35px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.tb-related-card:hover {
    transform: translateY(-6px);
    border-color: #ef0f29;
    box-shadow: 0 18px 40px rgba(239,15,41,0.08);
}

.tb-related-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ef0f29, #c0050f);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(239,15,41,0.2);
}

.tb-related-icon i {
    color: #fff;
    font-size: 30px;
}

.tb-related-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
    line-height: 1.4;
}

.tb-related-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* ===== Responsive ===== */

@media (max-width: 991px) {

    .tb-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .tb-related-products-section {
        padding: 35px 0;
    }

    .tb-related-grid {
        gap: 16px;
        margin-top: 25px;
    }

    .tb-related-card {
        padding: 24px 18px;
        border-radius: 14px;
    }

    .tb-related-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin-bottom: 16px;
    }

    .tb-related-icon i {
        font-size: 22px;
    }

    .tb-related-card h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .tb-related-card p {
        font-size: 13px;
        line-height: 1.7;
    }
}


.tb-spotlight-title a{
    text-decoration: underline;
}




/*new*/
/* ================= TAB SECTION ================= */

.tb-tabbed-section {
    padding: 60px 0;
    background: #f4f6fb;
}

.tb-tabs-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* TAB BUTTONS */

.tb-tab-btn {
    background: #fff;
    border: 2px solid #1a1a2e;
    color: #1a1a2e;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30,30,80,0.04);
}

.tb-tab-btn.active,
.tb-tab-btn:hover {
    background: linear-gradient(135deg, #ef0f29, #b80012);
    color: #fff;
    border-color: #ef0f29;
    box-shadow: 0 10px 24px rgba(239,15,41,0.22);
}

/* CONTENT AREA */

.tb-tab-content {
    display: none;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e8eaf6;
    box-shadow: 0 15px 40px rgba(30,30,80,0.06);
}

.tb-tab-content.active {
    display: block;
}

/* HEADINGS */

.tb-tab-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* INTRO */

.tb-tab-intro {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* LIST */

.tb-tab-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tb-tab-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    font-weight: 500;
}

.tb-tab-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #ef0f29;
    font-size: 18px;
}

/* APPLICATION CARD */

.tb-app-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}

.tb-app-card {
    background: #f8f9ff;
    border: 1px solid #e8eaf6;
    border-radius: 14px;
    padding: 30px;
    transition: all 0.3s ease;
}

.tb-app-card:hover {
    transform: translateY(-5px);
    border-color: #ef0f29;
    box-shadow: 0 15px 35px rgba(239,15,41,0.08);
}

.tb-app-card i {
    font-size: 30px;
    color: #ef0f29;
    margin-bottom: 16px;
}

.tb-app-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a2e;
    font-weight: 700;
}

.tb-app-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* SPECIFICATIONS */

.tb-specs-box {
    border: 1px solid #e8eaf6;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 10px;
}

.tb-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #edf0f7;
    transition: background 0.3s ease;
}

.tb-spec-row:hover {
    background: #f8f9ff;
}

.tb-spec-row:last-child {
    border-bottom: none;
}

.tb-spec-row span {
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

.tb-spec-row strong {
    font-size: 15px;
    color: #1a1a2e;
    font-weight: 700;
    text-align: right;
}

/* MOBILE */

@media(max-width:767px){

    .tb-tabbed-section{
        padding:35px 0;
    }

    .tb-tabs-nav{
        gap:12px;
        margin-bottom:25px;
    }

    .tb-tab-btn{
        width:100%;
        font-size:14px;
        padding:12px 16px;
        text-align:center;
    }

    .tb-tab-content{
        padding:25px 20px;
        border-radius:12px;
    }

    .tb-tab-heading{
        font-size:22px;
        margin-bottom:14px;
    }

    .tb-tab-intro{
        font-size:13px;
        line-height:1.8;
    }

    .tb-tab-list li{
        font-size:13px;
        padding-left:26px;
        line-height:1.8;
    }

    .tb-tab-list li i{
        font-size:15px;
        top:4px;
    }

    .tb-app-grid{
        grid-template-columns:1fr;
    }

    .tb-app-card{
        padding:22px 18px;
    }

    .tb-app-card h4{
        font-size:18px;
    }

    .tb-app-card p{
        font-size:13px;
    }

    .tb-spec-row{
        flex-direction:column;
        gap:8px;
        padding:16px 18px;
    }

    .tb-spec-row span,
    .tb-spec-row strong{
        font-size:13px;
        text-align:left;
    }
}


.tb-supplier-section .row .tb-main-heading {
    font-size: 22px;
}
.tb-supplier-section .row .img-box img{
    height: 400px;
    width: 400px;
}
.tb-supplier-section .row .img-box {
    text-align: center;
}


.tb-supplier-section .row .cta-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 12px;
}
.tb-supplier-section .row .cta-box button{
    background: linear-gradient(135deg, #ef0f29, #b80012);
    color: #fff;
    border-color: #ef0f29;
    box-shadow: 0 10px 24px rgba(239, 15, 41, 0.22);
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.tb-supplier-section .row .cta-box button a{
    color: #fff;
}

.tb-supplier-section .row .cta-box button:hover{
    background: linear-gradient(135deg, #c0050f, #8f000d);
    border-color: #c0050f;
    box-shadow: 0 14px 30px rgba(239, 15, 41, 0.32);
    transform: translateY(-3px);
}