:root {
    --navy-deep: #0A2440;
    --navy-mid: #123A63;
    --navy-line: rgba(255, 255, 255, 0.14);
    --gold: #C89B3C;
    --gold-light: #E4C77E;
    --cream: #F6F3EC;
    --paper: #FBFAF6;
    --ink: #132133;
    --ink-soft: #4A5568;
    --thread: #C89B3C;
    --radius: 2px;
}

/* =========================
   GLOBAL
========================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
}

/* =========================
   HEADER
========================= */

.main-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(10, 36, 64, 0.12);

    position: sticky;
    top: 0;
    z-index: 9999;
}

.header-wrapper {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.section-eyebrow {
    color: var(--gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-title {
    color: var(--navy-deep);

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-weight: 800;
}

.orange-line {
    width: 55px;
    height: 2px;

    background: var(--gold);

    margin: 18px 0;
}

.section-body {
    color: var(--ink-soft);

    line-height: 1.8;
}

.highlight-box {
    background: var(--cream);

    border-left: 3px solid var(--gold);

    padding: 24px;

    border-radius: var(--radius);

    margin-bottom: 18px;
}

.highlight-box h4 {
    color: var(--navy-deep);

    font-size: 17px;
    font-weight: 700;
}

.highlight-box p {
    color: var(--ink-soft);

    line-height: 1.7;

    margin-bottom: 0;
}

/* =========================
   LOGO
========================= */

.brand-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    height: 85px;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    display: flex;
    flex-direction: column;

    line-height: 1.1;
}

.brand-name strong {
    color: var(--navy-deep);

    font-size: 19px;
    font-weight: 800;

    letter-spacing: -0.3px;
}

.brand-name span {
    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.8px;
    text-transform: uppercase;

    margin-top: 5px;
}

/* =========================
   NAVIGATION
========================= */

.main-nav {
    display: flex;
    align-items: center;

    gap: 30px;
}

.main-nav a {
    position: relative;

    color: var(--ink);

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    padding: 31px 0;

    transition: all 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}

/* Gold underline */
.main-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 22px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width 0.25s ease;
}

/* Hover + Active underline */
.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}
/* =========================
   APPLY BUTTON
========================= */

.header-cta {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    gap: 9px;

    background: var(--navy-deep);

    color: #ffffff !important;

    padding: 12px 21px !important;

    border: 1px solid var(--navy-deep);

    border-radius: var(--radius);

    font-size: 13px !important;
    font-weight: 700 !important;

    text-decoration: none !important;

    transition: all 0.25s ease;
}

.header-cta:hover {
    background: var(--gold);

    border-color: var(--gold);

    color: #ffffff !important;

    transform: translateY(-1px);
}

.header-cta::after {
    display: none !important;
}

/* =========================
   MOBILE BUTTON
========================= */

.menu-toggle {
    display: none;

    border: 0;
    background: transparent;

    color: var(--navy-deep);

    font-size: 23px;

    cursor: pointer;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {

    .header-wrapper {
        min-height: 72px;
    }

    .main-nav {
        position: absolute;

        top: 72px;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;
        align-items: stretch;

        background: #ffffff;

        border-top: 1px solid rgba(10, 36, 64, 0.10);
        border-bottom: 1px solid rgba(10, 36, 64, 0.10);

        padding: 15px 20px;

        gap: 0;

        box-shadow: 0 12px 30px rgba(10, 36, 64, 0.10);
    }

    .main-nav.show {
        display: flex;
    }

    .main-nav a {
        padding: 13px 5px;

        color: var(--navy-deep);
    }

    .main-nav a::after {
        display: none;
    }

    .header-cta {
        margin-top: 8px;

        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    /* .brand-logo img {
        width: 46px;
        height: 46px;
    } */

    .brand-name strong {
        font-size: 17px;
    }

    .brand-name span {
        font-size: 8px;
    }
}

/* =========================
   HERO
========================= */

.star-hero {
    position: relative;
    min-height: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image: url('../images/banner1.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}


/* Dark left-side overlay */
.star-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(10 36 64 / 62%) 0%,
            rgb(10 36 64 / 69%) 28%,
            rgb(10 36 64 / 65%) 48%,
            rgba(10, 36, 64, 0.20) 76%,
            rgba(10, 36, 64, 0.04) 100%);
    z-index: 1;
}

/* Subtle gold detail */
.star-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 190px;
    height: 3px;
    background: var(--gold);
    z-index: 3;
}


/* Content */
.star-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 30px 0;
}


/* Eyebrow */
.star-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;

    margin-bottom: 12px;
}

.star-hero-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--gold);
}


/* Heading */
.star-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: 60px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1px;
}

.star-hero h1 span {
    display: block;
    color: var(--gold-light);
}


/* Gold line */
.star-hero-line {
    width: 65px;
    height: 3px;
    background: var(--gold);
    margin: 17px 0 15px;
} 


/* Description */
.star-hero-description { 
    max-width: 650px; 
    margin: 0;
    color: rgba(255, 255, 255, 0.88); 
    font-size: 17px;
    line-height: 1.7;
    font-weight: 400; 
}


/* Meta information */
.star-hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;

    margin-top: 22px;
}

.star-meta-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.star-meta-item strong {
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

.star-meta-item span {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.star-meta-divider {
    width: 1px;
    height: 32px;
    background: var(--navy-line);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .star-hero {
        min-height: 400px;
        height: auto;
        background-position: center;
    }

    .star-hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(10, 36, 64, 0.96) 0%,
                rgba(10, 36, 64, 0.82) 60%,
                rgba(10, 36, 64, 0.45) 100%);
    }

    .star-hero-content {
        max-width: 680px;
        padding: 45px 0;
    }
}


@media (max-width: 575px) {

    .star-hero {
        min-height: 400px;
    }

    .star-hero-content {
        padding: 35px 18px;
    }

    .star-hero h1 {
        font-size: 34px;
    }

    .star-hero-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .star-hero-meta {
        gap: 14px;
        margin-top: 20px;
    }

    .star-meta-item strong {
        font-size: 17px;
    }

    .star-meta-item span {
        font-size: 9px;
        letter-spacing: .7px;
    }

    .star-meta-divider {
        height: 28px;
    }
}


/* =========================================
   SECTION
========================================= */

.star-about-section {

    position: relative;

    padding: 60px 0;

    background: var(--paper);

    overflow: hidden;
}


/* Subtle background detail */

.star-about-section::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -220px;
    top: -180px;

    border: 1px solid rgba(200, 155, 60, .12);

    border-radius: 50%;
}


.star-about-section::after {

    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -130px;
    top: -100px;

    border: 1px solid rgba(200, 155, 60, .10);

    border-radius: 50%;
}


/* =========================================
   IMAGE
========================================= */

.star-about-image-wrap {

    position: relative;

    padding-right: 35px;
    padding-bottom: 35px;
}


.star-about-image {

    position: relative;

    width: 100%;

    height: 535px;

    overflow: hidden;

    border-radius: var(--radius);

    background: var(--cream);

    box-shadow:
        0 20px 45px rgba(10, 36, 64, .12);
}


.star-about-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(10, 36, 64, 0) 55%,
            rgba(10, 36, 64, .25) 100%);

    pointer-events: none;
}


.star-about-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .6s ease;
}


.star-about-image:hover img {

    transform: scale(1.04);
}


/* =========================================
   GOLD DECORATIVE FRAME
========================================= */

.star-about-pattern {

    position: absolute;

    right: 0;
    bottom: 0;

    width: 125px;
    height: 125px;

    border-right: 3px solid var(--gold);

    border-bottom: 3px solid var(--gold);

    z-index: 3;

    pointer-events: none;
}


/* =========================================
   EXPERIENCE BADGE
========================================= */

.star-about-badge {

    position: absolute;

    right: 5px;
    top: 45px;

    width: 145px;
    height: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: var(--navy-deep);

    border: 5px solid var(--paper);

    color: #ffffff;

    z-index: 5;

    box-shadow:
        0 15px 35px rgba(10, 36, 64, .20);
}


.star-about-badge::before {

    content: "";

    position: absolute;

    inset: 7px;

    border: 1px solid rgba(200, 155, 60, .55);
}


.star-about-badge strong {

    position: relative;

    color: var(--gold-light);

    font-size: 34px;

    line-height: 1;

    font-weight: 700;
}


.star-about-badge span {

    position: relative;

    margin-top: 7px;

    text-align: center;

    color: rgba(255, 255, 255, .75);

    font-size: 10px;

    line-height: 1.5;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================
   CONTENT
========================================= */

.star-about-content {

    position: relative;

    z-index: 2;

    padding-left: 25px;
}


.star-section-label {

    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 12px; 
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.star-section-label::before,
.product-eyebrow::before,
.manufacturing-eyebrow::before{
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin-right: 10px;
    vertical-align: middle; 
}


.star-about-content h2 {
    margin: 0;
    color: var(--navy-deep);
    font-size: 50px;
    line-height: 1.12;
    letter-spacing: -1px;
    font-weight: 700;
}

.star-about-content h2 span {

    display: block;

    color: var(--gold);
}


/* =========================================
   TITLE LINE
========================================= */

.star-title-line {

    width: 58px;

    height: 3px;

    background: var(--gold);

    margin: 20px 0 23px;
}


/* =========================================
   TEXT
========================================= */

.star-about-content p {

    color: var(--ink-soft);

    font-size: 14px;

    line-height: 1.85;

    margin-bottom: 15px;

    max-width: 610px;
}


.star-about-content p strong {

    color: var(--ink);

    font-weight: 700;
}


.star-about-intro {

    color: var(--ink) !important;

    font-size: 15px !important;

    line-height: 1.8 !important;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.star-about-highlights {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin-top: 27px;
}


.star-about-highlight {

    display: flex;

    align-items: center;

    gap: 11px;

    min-height: 72px;

    padding: 13px;

    background: var(--cream);

    border: 1px solid rgba(10, 36, 64, .08);

    transition:
        transform .25s ease,
        border-color .25s ease;
}


.star-about-highlight:hover {

    transform: translateY(-3px);

    border-color: rgba(200, 155, 60, .55);
}


.highlight-icon {

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--navy-deep);

    color: var(--gold-light);

    font-size: 13px;
}


.star-about-highlight strong {

    display: block;

    color: var(--navy-deep);

    font-size: 15px;

    line-height: 1.2;
}


.star-about-highlight span {

    display: block;

    margin-top: 3px;

    color: var(--ink-soft);

    font-size: 9px;

    letter-spacing: .8px;

    text-transform: uppercase;
}


/* =========================================
   NOTE
========================================= */

.star-about-note {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

    padding: 15px 18px;

    background: var(--navy-deep);

    border-left: 3px solid var(--gold);
}


.star-about-note>span {

    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(228, 199, 126, .45);

    color: var(--gold-light);

    font-size: 11px;
}


.star-about-note p {

    margin: 0;

    color: rgba(255, 255, 255, .76);

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .star-about-section {

        padding: 75px 0;
    }

    .star-about-content {

        padding-left: 0;
    }

    .star-about-image {

        height: 480px;
    }

    .star-about-image-wrap {

        padding-right: 25px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .star-about-section {

        padding: 60px 0;
    }

    .star-about-image-wrap {

        padding-right: 15px;

        padding-bottom: 25px;
    }

    .star-about-image {

        height: 390px;
    }

    .star-about-badge {

        width: 120px;
        height: 120px;

        right: 0;
        top: 25px;
    }

    .star-about-badge strong {

        font-size: 28px;
    }

    .star-about-content h2 {

        font-size: 34px;
    }

    .star-about-highlights {

        grid-template-columns: 1fr;

        gap: 10px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .star-about-image {

        height: 330px;
    }

    .star-about-content h2 {

        font-size: 30px;
    }

    .star-about-content p {

        font-size: 13px;

        line-height: 1.75;
    }

    .star-about-note {

        align-items: flex-start;
    }
}

/* =========================================
   WHY CHOOSE STAR COTSPIN
========================================= */

.why-choose-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background: var(--navy-deep);
    color: #fff;
}

/* Subtle background detailing */
.why-choose-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -220px;
    right: -150px;
    border: 1px solid rgba(200, 155, 60, 0.18);
    border-radius: 50%;
}

.why-choose-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -180px;
    left: -120px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.why-choose-section .container {
    position: relative;
    z-index: 2;
}

/* Header */
.why-header {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 55px;
}

.why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.why-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.why-header h2 {
    margin: 0;
    font-size: 50px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #fff;
}

.why-header h2 span {
    color: var(--gold-light);
}

.why-intro {
    padding-left: 28px;
    border-left: 1px solid rgba(200, 155, 60, 0.55);
}

.why-intro strong {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-light);
    font-size: 18px;
    letter-spacing: .2px;
}

.why-intro p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.8;
}

/* Cards Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .12);
}

.why-card {
    position: relative;
    min-height: 285px;
    padding: 30px 28px;
    background: #0A2440;
    transition: all .3s ease;
}

.why-card:hover {
    background: #123A63;
    transform: translateY(-4px);
    z-index: 2;
}

.why-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(255, 255, 255, .18);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 1px solid rgba(200, 155, 60, .55);
    color: var(--gold-light);
    font-size: 18px;
    background: rgba(200, 155, 60, .07);
}

.why-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 650;
}

.why-card p {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
    line-height: 1.75;
}

/* Award Card */
.why-award-card {
    background: linear-gradient(145deg,
            #123A63 0%,
            #0A2440 100%);
}

.why-award-card .why-icon {
    background: rgba(200, 155, 60, .14);
}

/* Tablet */
@media (max-width: 991px) {

    .why-choose-section {
        padding: 75px 0;
    }

    .why-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 575px) {

    .why-choose-section {
        padding: 60px 0;
    }

    .why-header h2 {
        font-size: 38px;
    }

    .why-intro {
        padding-left: 18px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: auto;
        padding: 28px 24px;
    }

}

/* =========================================
   PRODUCT RANGE SECTION
========================================= */

.product-range-section {
    position: relative;
    padding: 60px 0;
    background: var(--paper);
    overflow: hidden;
}


/* HEADER */

.product-range-header {
    position: relative;
}

.product-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.product-range-header h2 {
    margin: 0;
    max-width: 700px;
    font-size: 50px;
    line-height: 1.08;
    font-weight: 700;
    color: var(--navy-deep);
}

.product-range-header h2 span {
    color: var(--gold);
}

.product-range-header>.col-lg-5 p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   PRODUCT CARDS
========================================= */

.product-range-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 470px;
    padding: 30px;
    background: #fff;
    border: 1px solid rgba(10, 36, 64, 0.10);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .35s ease;
}

.product-range-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.product-range-card:hover {
    transform: translateY(-7px);
    border-color: rgba(200, 155, 60, 0.45);
    box-shadow: 0 20px 45px rgba(10, 36, 64, 0.10);
}

.product-range-card:hover::before {
    transform: scaleX(1);
}


/* Featured card */

.product-card-featured {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
}

.product-card-featured .product-type,
.product-card-featured .product-detail p,
.product-card-featured h3,
.product-card-featured .product-index {
    color: #fff;
}

.product-card-featured .product-detail {
    border-color: rgba(255, 255, 255, .16);
}

.product-card-featured .product-card-footer {
    border-color: rgba(255, 255, 255, .16);
}


/* CARD TOP */

.product-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 45px;
}

.product-index {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--navy-deep);
}

.product-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border: 1px solid rgba(200, 155, 60, .35);
    color: var(--gold);
    font-size: 22px;
}

.product-card-featured .product-icon {
    background: rgba(200, 155, 60, .13);
}


/* CARD CONTENT */

.product-card-content {
    flex: 1;
}

.product-type {
    display: block;
    margin-bottom: 8px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.product-card-content h3 {
    margin: 0 0 28px;
    color: var(--navy-deep);
    font-size: 27px;
    font-weight: 700;
}

.product-detail {
    padding: 17px 0;
    border-top: 1px solid rgba(10, 36, 64, .10);
}

.product-detail span {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-detail span i {
    color: var(--gold);
}

.product-detail p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================
   PRODUCT FEATURES
========================================= */

.product-features-wrapper {
    padding: 70px 0 0;
}


/* Sticky left side */

.features-heading {
    position: sticky;
    top: 100px;
    padding-right: 35px;
}

.features-heading h3 {
    margin: 10px 0 20px;
    color: var(--navy-deep);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.12;
    font-weight: 700;
}

.features-heading h3 span {
    display: block;
    color: var(--gold);
}

.features-heading>p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.8;
}

.features-heading-line {
    width: 55px;
    height: 3px;
    margin: 25px 0;
    background: var(--gold);
}


/* Small information block */

.features-heading-icon {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--cream);
    border-left: 3px solid var(--gold);
}

.features-heading-icon>i {
    color: var(--gold);
    font-size: 22px;
}

.features-heading-icon strong {
    display: block;
    color: var(--navy-deep);
    font-size: 13px;
}

.features-heading-icon small {
    display: block;
    margin-top: 3px;
    color: var(--ink-soft);
    font-size: 11px;
}


/* =========================================
   FEATURE LIST
========================================= */

.features-list {
    border-top: 1px solid rgba(10, 36, 64, .12);
}

.feature-row {
    display: grid;
    grid-template-columns: 55px 250px 1fr;
    align-items: center;
    gap: 20px;
    padding: 27px 0;
    border-bottom: 1px solid rgba(10, 36, 64, .12);
    transition: all .3s ease;
}

.feature-row:hover {
    padding-left: 12px;
    background: rgba(246, 243, 236, .55);
}

.feature-number {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy-deep);
    font-size: 14px;
}

.feature-icon {
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 155, 60, .4);
    color: var(--gold);
    font-size: 11px;
}

.feature-benefit {
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .product-range-section {
        padding: 75px 0;
    }

    .features-heading {
        position: relative;
        top: auto;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .feature-row {
        grid-template-columns: 45px 1fr;
    }

    .feature-benefit {
        grid-column: 2;
    }

}


@media (max-width: 575px) {

    .product-range-section {
        padding: 60px 0;
    }

    .product-range-card {
        min-height: auto;
        padding: 25px;
    }

    .product-card-top {
        margin-bottom: 30px;
    }

    .product-card-content h3 {
        font-size: 24px;
    }

    .feature-row {
        grid-template-columns: 40px 1fr;
        gap: 12px;
        padding: 22px 0;
    }

    .feature-benefit {
        grid-column: 2;
    }

}

/* =========================================
   MANUFACTURING SECTION
========================================= */

.manufacturing-section {
    position: relative;
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}


/* =========================================
   INTRO
========================================= */

.manufacturing-intro {
    margin-bottom: 55px;
}

.manufacturing-eyebrow {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.manufacturing-intro h2 {
    max-width: 760px;
    margin: 0;
    color: var(--navy-deep);
    font-size: 50px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1px;
}

.manufacturing-intro h2 span {
    display: block;
    color: var(--gold);
}

.manufacturing-intro p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   MAIN BLOCK
========================================= */

.manufacturing-main {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(10, 36, 64, .10);
    box-shadow: 0 25px 60px rgba(10, 36, 64, .08);
}


/* =========================================
   LEFT CONTENT
========================================= */

.manufacturing-main-content {
    height: 100%;
    padding: 55px 50px;
}

.manufacturing-number {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.manufacturing-icon {
    width: 52px;
    height: 52px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border: 1px solid rgba(200, 155, 60, .35);
    color: var(--gold);
    font-size: 20px;
}

.manufacturing-label {
    display: block;
    margin-bottom: 9px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.manufacturing-main-content h3 {
    margin: 0 0 20px;
    color: var(--navy-deep);
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
}

.manufacturing-main-content h3 strong {
    display: block;
    color: var(--gold);
}

.manufacturing-main-content>p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.85;
}


/* =========================================
   CAPACITY
========================================= */

.capacity-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
    padding: 20px;
    background: var(--navy-deep);
}

.capacity-number {
    color: var(--gold-light);
    font-size: 38px;
    line-height: 1;
    font-weight: 700;
}

.capacity-text {
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.capacity-text strong {
    display: block;
    color: #fff;
    font-size: 14px;
}

.capacity-text span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
}


/* =========================================
   META
========================================= */

.manufacturing-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 25px;
}

.manufacturing-meta div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-soft);
    font-size: 12px;
}

.manufacturing-meta i {
    color: var(--gold);
}


/* =========================================
   IMAGE
========================================= */

.manufacturing-image {
    position: relative;
    height: 100%;
    min-height: 520px;
    overflow: hidden;
    background: var(--navy-deep);
}

.manufacturing-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            transparent 45%,
            rgba(10, 36, 64, .80));
}

.image-caption {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 30px;
}

.image-caption span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.image-caption span i {
    margin-right: 6px;
    font-size: 7px;
}

.image-caption strong {
    color: #fff;
    font-size: 22px;
}


/* =========================================
   BOTTOM CARDS
========================================= */

.manufacturing-bottom {
    margin-top: 25px;
}

.manufacturing-info-card {
    height: 100%;
    padding: 42px;
    background: #fff;
    border: 1px solid rgba(10, 36, 64, .10);
    transition: all .35s ease;
}

.manufacturing-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 155, 60, .45);
    box-shadow: 0 20px 45px rgba(10, 36, 64, .08);
}

.info-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.info-number {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.info-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--gold);
    border: 1px solid rgba(200, 155, 60, .3);
    font-size: 19px;
}

.manufacturing-info-card h3 {
    margin: 0 0 18px;
    color: var(--navy-deep);
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
}

.manufacturing-info-card h3 span {
    color: var(--gold);
}

.manufacturing-info-card>p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.85;
}


/* =========================================
   QUALITY GRID
========================================= */

.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 28px;
}

.quality-grid div {
    padding: 11px 12px;
    background: var(--cream); 
    color: var(--navy-deep); 
    font-size: 14px; 
    font-weight: 600; 
}

.quality-grid i {
    margin-right: 6px;
    color: var(--gold);
}


/* =========================================
   PARTNERSHIP CARD
========================================= */

.partnership-card {
    position: relative;
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    overflow: hidden;
}

.partnership-card::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -120px;
    bottom: -150px;
    border: 1px solid rgba(228, 199, 126, .2);
    border-radius: 50%;
}

.partnership-card .info-number,
.partnership-card .manufacturing-label {
    color: var(--gold-light);
}

.partnership-card .info-icon {
    background: rgba(200, 155, 60, .12);
    border-color: rgba(228, 199, 126, .25);
    color: var(--gold-light);
}

.partnership-card h3 {
    color: #fff;
}

.partnership-card>p {
    color: rgba(255, 255, 255, .68);
}


/* =========================================
   TECHNOLOGY BOX
========================================= */

.technology-box {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 28px;
    padding: 18px;
    border: 1px solid rgba(228, 199, 126, .20);
    background: rgba(255, 255, 255, .035);
}

.technology-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 155, 60, .12);
    color: var(--gold-light);
}

.technology-box span {
    display: block;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.technology-box strong {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: 16px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .manufacturing-section {
        padding: 80px 0;
    }

    .manufacturing-main-content {
        padding: 45px;
    }

    .manufacturing-image,
    .manufacturing-image img {
        min-height: 420px;
    }

}


@media (max-width: 575px) {

    .manufacturing-section {
        padding: 60px 0;
    }

    .manufacturing-main-content {
        padding: 30px;
    }

    .manufacturing-main-content h3 {
        font-size: 30px;
    }

    .capacity-number {
        font-size: 30px;
    }

    .manufacturing-image,
    .manufacturing-image img {
        min-height: 330px;
    }

    .image-caption {
        left: 25px;
        right: 25px;
    }

    .image-caption strong {
        font-size: 18px;
    }

    .manufacturing-info-card {
        padding: 30px;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

}


.star-awards-section {
    position: relative;
    padding: 60px 0;
    background:
        radial-gradient(circle at 8% 50%, rgba(200, 155, 60, 0.06), transparent 28%),
        linear-gradient(135deg, var(--paper) 0%, var(--cream) 100%);
    overflow: hidden;
}


/* Decorative top line */

.star-awards-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--navy-deep);
}

.star-awards-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(200, 155, 60, 0.15);
    border-radius: 50%;
    right: -180px;
    bottom: -170px;
}


/* ================================
   LEFT CONTENT
================================ */

.partnership-content {
    padding: 20px 30px 20px 10px;
}

.partnership-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px; 
    color: var(--gold); 
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.partnership-eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--gold);
}


.partnership-title {
    margin: 0;
    color: var(--navy-deep);
    font-family: "Playfair Display", serif;
    font-size: 44px;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -1px;
}

.partnership-title span {
    display: block;
    color: var(--gold);
}


/* Decorative divider */

.gold-divider {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 25px 0 30px;
}

.gold-divider::before,
.gold-divider::after {
    content: "";
    height: 1px;
    width: 105px;
    background: var(--gold);
}

.gold-divider i {
    color: var(--gold);
    font-size: 13px;
}


/* Partnership inner */

.partnership-inner {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
    gap: 30px;
}


/* Dummy Certificate */

.partnership-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partnership-image {
    width: 100%;
    max-width: 310px;
    height: 390px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 45px rgba(10, 36, 64, 0.15);
    border: 1px solid rgba(200, 155, 60, 0.45);
}


/* Gold frame */

.partnership-image-wrap::before {
    content: "";
    position: absolute;
    width: 92%;
    height: 94%;
    border: 1px solid var(--gold);
    transform: translate(10px, 10px);
    z-index: 0;
    pointer-events: none;
}

.partnership-image {
    position: relative;
    z-index: 1;
}

/* Text */

.partnership-description {
    color: var(--ink);
    font-family: "Playfair Display", serif;
    font-size: 20px;
    line-height: 1.65;
    font-weight: 600;
    margin-bottom: 28px;
}

/* Icon box */

.partnership-icon-box {
    width: 64px;
    height: 64px;
    background: var(--navy-deep);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(10, 36, 64, 0.15);
}

.partnership-icon-box i {
    color: var(--gold-light);
    font-size: 27px;
}


/* Bottom highlight */

.partnership-highlight {
    margin-top: 35px;
    padding-top: 22px;
    border-top: 1px solid rgba(10, 36, 64, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
}

.partnership-highlight-icon {
    width: 46px;
    height: 46px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partnership-highlight-icon i {
    color: var(--gold);
    font-size: 19px;
}

.partnership-highlight strong {
    display: block;
    color: var(--navy-deep);
    font-family: "Playfair Display", serif;
    font-size: 16px;
}

.partnership-highlight span {
    display: block;
    color: var(--ink-soft);
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    margin-top: 3px;
}


/* ================================
   AWARD CARD
================================ */

.award-card {
    position: relative;
    background: var(--paper);
    border: 2px solid var(--gold);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 36, 64, 0.12);
}


/* Award header */

.award-header {
    position: relative;
    background: var(--navy-deep);
    padding: 23px 30px;
    text-align: center;
}

.award-header::before,
.award-header::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 75px;
    height: 1px;
    background: var(--gold);
}

.award-header::before {
    left: 35px;
}

.award-header::after {
    right: 35px;
}

.award-header h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    letter-spacing: 2px;
}

.award-header h3::before,
.award-header h3::after {
    content: "◆";
    color: var(--gold);
    font-size: 10px;
    margin: 0 18px;
    vertical-align: middle;
}


/* Award image area */

.award-image-area {
    padding: 38px 45px 20px;
    background:
        radial-gradient(circle at center, rgba(200, 155, 60, 0.08), transparent 60%),
        var(--paper);
    text-align: center;
}

.award-image {
    width: 100%;
    max-width: 520px;
    /* height: 390px; */
    object-fit: cover;
    border-radius: 4px;
    /* border: 1px solid rgba(200,155,60,0.25); */
    /* box-shadow: 0 15px 30px rgba(10,36,64,0.12); */
}

/* Award description */

.award-content {
    padding: 10px 45px 38px;
    text-align: center;
}

.award-content::before {
    content: "";
    display: block;
    width: 90px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 20px;
}

.award-content p {
    margin: 0;
    color: var(--navy-deep);
    font-family: "Playfair Display", serif;
    font-size: 21px;
    line-height: 1.5;
    font-weight: 600;
}

.award-content p span {
    color: var(--gold);
}


/* Award footer decoration */

.award-footer-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.award-footer-decoration span {
    width: 55px;
    height: 1px;
    background: var(--gold);
}

.award-footer-decoration i {
    color: var(--gold);
    font-size: 10px;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1199px) {

    .partnership-inner {
        grid-template-columns: 1fr;
    }

    .partnership-image-wrap {
        margin-bottom: 20px;
    }

    .partnership-image {
        max-width: 280px;
        height: 350px;
    }

    .partnership-description {
        font-size: 18px;
    }

}


@media (max-width: 991px) {

    .star-awards-section {
        padding: 70px 0;
    }

    .partnership-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .partnership-title {
        font-size: 42px;
    }

    .award-image {
        height: 350px;
    }

}


@media (max-width: 767px) {

    .star-awards-section {
        padding: 55px 0;
    }

    .partnership-title {
        font-size: 35px;
    }

    .partnership-inner {
        display: block;
    }

    .partnership-image-wrap {
        margin-bottom: 35px;
    }

    .partnership-image {
        max-width: 250px;
        height: 320px;
    }

    .partnership-description {
        font-size: 17px;
    }

    .award-card {
        border-radius: 22px;
    }

    .award-header {
        padding: 20px 15px;
    }

    .award-header h3 {
        font-size: 26px;
    }

    .award-header::before,
    .award-header::after {
        width: 35px;
    }

    .award-header::before {
        left: 15px;
    }

    .award-header::after {
        right: 15px;
    }

    .award-image-area {
        padding: 25px 20px 10px;
    }

    .award-image {
        height: 280px;
    }

    .award-content {
        padding: 10px 25px 30px;
    }

    .award-content p {
        font-size: 18px;
    }

}


@media (max-width: 480px) {

    .partnership-title {
        font-size: 30px;
    }

    .gold-divider::before,
    .gold-divider::after {
        width: 55px;
    }

    .partnership-image {
        max-width: 220px;
        height: 290px;
    }

    .award-header h3 {
        font-size: 23px;
    }

    .award-header h3::before,
    .award-header h3::after {
        margin: 0 8px;
    }

    .award-image {
        height: 240px;
    }

}

/* =========================
   STAR COTSPIN FAQ
========================= */

.star-faq-section {
    position: relative;
    padding: 60px 0;
    background: var(--paper);
    overflow: hidden;
}

.star-faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
}

.star-faq-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -220px;
    bottom: -220px;
    border: 1px solid rgba(200, 155, 60, 0.16);
    border-radius: 50%;
    pointer-events: none;
}


/* LEFT */

.faq-intro {
    position: sticky;
    top: 100px;
    padding-right: 45px;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.faq-eyebrow span {
    width: 30px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
}

.faq-intro h2 {
    margin: 0;
    color: var(--navy-deep);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.2px;
}

.faq-intro h2 em {
    display: block;
    color: var(--gold);
    font-style: normal;

    font-weight: 500;
}

.faq-gold-line {
    width: 65px;
    height: 3px;
    background: var(--gold);
    margin: 25px 0;
}

.faq-intro-text {
    margin: 0;
    max-width: 480px;

    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.8;
}


/* SIDE NOTE */

.faq-side-note {
    margin-top: 32px;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 15px;

    border-left: 3px solid var(--gold);
    background: var(--cream);
}

.faq-note-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--navy-deep);
    color: var(--gold-light);
    border-radius: 50%;

    font-size: 13px;
}

.faq-side-note strong {
    display: block;
    margin-bottom: 5px;

    color: var(--navy-deep);
    font-size: 14px;
}

.faq-side-note span {
    display: block;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.6;
}


/* ACCORDION */

.star-faq-accordion {
    border-top: 1px solid rgba(10, 36, 64, 0.16);
}

.star-faq-item {
    border-bottom: 1px solid rgba(10, 36, 64, 0.16);
    background: transparent;
    transition: background 0.3s ease;
}

.star-faq-item.active {
    background: var(--cream);
}


/* QUESTION */

.star-faq-question {
    width: 100%;
    border: 0;
    outline: none;

    display: grid;
    grid-template-columns: 45px 1fr 40px;
    align-items: center;
    gap: 15px;

    padding: 23px 20px;

    background: transparent;
    color: var(--navy-deep);

    text-align: left;
    cursor: pointer;

    font-family: inherit;
}

.star-faq-question:focus {
    outline: none;
}

.faq-question-number {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.faq-question-text {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--navy-deep);
}

.faq-toggle {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--gold);
    color: var(--gold);

    font-size: 11px;
    transition: all 0.3s ease;
}

.star-faq-item.active .faq-toggle {
    background: var(--gold);
    color: var(--navy-deep);
}


/* ANSWER */

.star-faq-answer {
    display: none;
    padding: 0 75px 25px 80px;
}

.star-faq-item.active .star-faq-answer {
    display: block;
}

.star-faq-answer p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.8;
}


/* HOVER */

.star-faq-item:not(.active):hover {
    background: rgba(246, 243, 236, 0.65);
}

.star-faq-item:not(.active):hover .faq-question-text {
    color: var(--gold);
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .star-faq-section {
        padding: 65px 0;
    }

    .faq-intro {
        position: relative;
        top: auto;
        padding-right: 0;
    }

    .faq-intro-text {
        max-width: 100%;
    }

}

@media (max-width: 575px) {

    .star-faq-section {
        padding: 50px 0;
    }

    .faq-intro h2 {
        font-size: 34px;
    }

    .star-faq-question {
        grid-template-columns: 35px 1fr 35px;
        gap: 10px;
        padding: 18px 12px;
    }

    .faq-question-text {
        font-size: 14px;
    }

    .star-faq-answer {
        padding: 0 20px 20px 57px;
    }

    .faq-question-number {
        font-size: 10px;
    }

}

/* ==========================================
   STAR COTSPIN FOOTER
========================================== */

.star-footer {
    position: relative;
    overflow: hidden;
    padding: 75px 0 0;
    background: var(--navy-deep);
    color: #fff;
}

/* ==========================================
   BACKGROUND IMAGE
========================================== */

.footer-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;

    background-image: url("../images/img18.jpg");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;

    pointer-events: none;
}

/* ==========================================
   DARK NAVY OVERLAY
========================================== */

.footer-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(10, 36, 64, 0.96) 0%,
            rgba(10, 36, 64, 0.91) 45%,
            rgba(10, 36, 64, 0.84) 100%);

    pointer-events: none;
}

.breadcrumb-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(10, 36, 64, 0.85) 0%,
            rgba(10, 36, 64, 0.80) 45%,
            rgba(10, 36, 64, 0.84) 100%);

    pointer-events: none;
}

/* Gold top line */

.star-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(90deg,
            var(--gold),
            var(--gold-light),
            var(--gold));

    z-index: 5;
}

/* ==========================================
   FOOTER CONTENT
========================================== */

.star-footer .container {
    position: relative;
    z-index: 3;
}


/* ==========================================
   BRAND
========================================== */

.footer-brand {
    padding-right: 45px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 24px;
    padding: 15px;
    background: #fff;
    border-radius: 20px;
    margin: 0 auto 20px;
}

.footer-logo img {
    display: block;
    /* max-width: 190px; */
    max-height: 120px;
    object-fit: contain;
}

/* Description */

.footer-description {
    max-width: 480px;
    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 14px;
    line-height: 1.85;
}

/* Tagline */

.footer-tagline {
    display: inline-flex;
    align-items: center;

    padding: 10px 16px;

    border-left: 2px solid var(--gold);

    background: rgba(255, 255, 255, 0.06);

    color: var(--gold-light);


    font-size: 14px;
    font-style: italic;
}


/* ==========================================
   FOOTER COLUMNS
========================================== */

.footer-column {
    position: relative;
}

.footer-eyebrow {
    display: block;

    margin-bottom: 9px;

    color: var(--gold-light);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-column h3 {
    margin: 0 0 25px;

    color: #fff;



    font-size: 24px;
    font-weight: 600;
}


/* ==========================================
   QUICK LINKS
========================================== */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 13px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;
    text-decoration: none;

    transition: all 0.25s ease;
}

.footer-links a i {
    color: var(--gold);
    font-size: 9px;

    transition: transform 0.25s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}


/* ==========================================
   CONTACT DETAILS
========================================== */

.footer-contact-item {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    margin-bottom: 19px;
}

.footer-contact-icon {
    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(200, 155, 60, 0.55);

    background: rgba(255, 255, 255, 0.055);

    color: var(--gold-light);

    font-size: 12px;

    transition: all 0.25s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    background: var(--gold);
    color: var(--navy-deep);
}

.footer-contact-item span {
    display: block;

    margin-bottom: 4px;

    color: var(--gold-light);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-contact-item a,
.footer-contact-item p {
    display: block;

    margin: 0 0 3px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 13px;
    line-height: 1.65;

    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--gold-light);
}


/* ==========================================
   FOOTER BOTTOM
========================================== */

.footer-bottom {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 45px;
    padding: 21px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.14);

    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;
}

.footer-bottom strong {
    color: var(--gold-light);
}

.footer-bottom-text {
    color: rgba(255, 255, 255, 0.68);
    font-style: italic;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .star-footer {
        padding-top: 65px;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-bg-image {
        background-position: center bottom;
    }

}

@media (max-width: 767px) {

    .star-footer {
        padding-top: 55px;
    }

    .footer-column h3 {
        font-size: 21px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;

        margin-top: 30px;
    }

    .footer-bg-overlay {
        background: rgba(10, 36, 64, 0.94);
    }

}


.contact-breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--paper);
}

.contact-breadcrumb-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-breadcrumb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.contact-breadcrumb-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

.contact-breadcrumb-inner {
    max-width: 650px;
}

.contact-breadcrumb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.contact-breadcrumb-eyebrow::before {
    content: "";
    width: 35px;
    height: 2px;
    background: var(--gold);
}

.contact-breadcrumb h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.05;
}

.contact-breadcrumb h1 span {
    color: var(--gold);
}

.contact-breadcrumb p {
    max-width: 570px;
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
}

.contact-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    color: var(--ink-soft);
    font-size: 13px;
}

.contact-breadcrumb-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.contact-breadcrumb-nav i {
    color: var(--gold);
    font-size: 9px;
}


/* ==========================================
       CONTACT SECTION
    ========================================== */

.contact-main-section {
    padding: 60px 0;
    background: var(--paper);
}

.contact-section-heading {
    margin-bottom: 42px;
}

.contact-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.contact-section-heading h2 {
    margin: 0;
    color: var(--navy-deep);
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
}

.contact-section-heading h2 span {
    color: var(--gold);
}

.contact-section-heading p {
    max-width: 650px;
    margin: 18px 0 0;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.8;
}


/* ==========================================
       FOUR CONTACT CARDS
    ========================================== */

.contact-info-row {
    margin-bottom: 65px;
}

.contact-info-card {
    position: relative;
    height: 100%;
    min-height: 205px;
    padding: 30px 25px;
    background: #fff;
    border: 1px solid rgba(10, 36, 64, 0.09);
    border-top: 3px solid var(--gold);
    box-shadow: 0 12px 35px rgba(10, 36, 64, 0.06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(10, 36, 64, 0.11);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-deep);
    color: var(--gold-light);
    font-size: 16px;
}

.contact-info-card h3 {
    margin: 0 0 11px;
    color: var(--navy-deep);
    font-size: 18px;
    font-weight: 600;
}

.contact-info-card p,
.contact-info-card a {
    margin: 0;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.7;
    text-decoration: none;
}

.contact-info-card a {
    display: block;
    margin-bottom: 3px;
}

.contact-info-card a:hover {
    color: var(--gold);
}


/* ==========================================
       MAP + FORM
    ========================================== */

.contact-workspace {
    padding-top: 10px;
}

.contact-map-box {
    height: 100%;
    min-height: 580px;
    overflow: hidden;
    background: #e9e9e9;
    border: 1px solid rgba(10, 36, 64, 0.1);
}

.contact-map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 580px;
    border: 0;
    display: block;
}


/* ==========================================
       FORM
    ========================================== */

.contact-form-box {
    height: 100%;
    padding: 45px;
    background: var(--navy-deep);
    border: 1px solid var(--navy-mid);
    position: relative;
    overflow: hidden;
}

.contact-form-box::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -100px;
    bottom: -120px;
    border: 1px solid rgba(200, 155, 60, 0.2);
    border-radius: 50%;
}

.contact-form-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.contact-form-heading .contact-eyebrow {
    color: var(--gold-light);
}

.contact-form-heading h2 {
    margin: 0 0 12px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
}

.contact-form-heading p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.7;
}

.contact-form {
    position: relative;
    z-index: 2;
}

.contact-form-group {
    margin-bottom: 19px;
}

.contact-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.contact-form-control {
    width: 100%;
    min-height: 48px;
    padding: 12px 15px;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    outline: none;
    font-size: 13px;
    transition: border-color .25s ease, background .25s ease;
}

.contact-form-control::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.contact-form-control:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

textarea.contact-form-control {
    min-height: 125px;
    resize: vertical;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 50px;
    padding: 0 28px;
    color: #fff;
    background: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .25s ease;
}

.contact-submit-btn:hover {
    color: var(--navy-deep);
    background: var(--gold-light);
    border-color: var(--gold-light);
    text-decoration: none;
    transform: translateY(-2px);
}


/* ==========================================
       RESPONSIVE
    ========================================== */

@media (max-width: 991px) {

    .contact-breadcrumb {
        min-height: 340px;
    }

    .contact-main-section {
        padding: 70px 0;
    }

    .contact-form-box {
        padding: 35px;
    }

    .contact-map-box,
    .contact-map-box iframe {
        min-height: 450px;
    }
}

@media (max-width: 767px) {

    .contact-breadcrumb {
        min-height: 330px;
    }

    .contact-breadcrumb-content {
        padding: 40px 0;
    }

    .contact-breadcrumb h1 {
        font-size: 42px;
    }

    .contact-breadcrumb p {
        font-size: 14px;
    }

    .contact-main-section {
        padding: 55px 0;
    }

    .contact-info-card {
        min-height: auto;
    }

    .contact-form-box {
        padding: 30px 22px;
    }

    .contact-form-heading h2 {
        font-size: 29px;
    }

    .contact-map-box,
    .contact-map-box iframe {
        min-height: 380px;
    }
}

/* =========================================================
       COMMON — shared by every section on this page
       (kicker label / title / lead paragraph / section rhythm)
    ========================================================= */

.about-section,
.about-product-features,
.available-counts-section,
.quality-manufacturing-section,
.quality-manufacturing-section1 {
    position: relative;
    padding: 60px 0;
}

.about-section.cream {
    background: var(--cream);
}

.about-section.paper,
.about-product-features,
.quality-manufacturing-section {
    background: #fff;
}

.available-counts-section,
.quality-manufacturing-section1 {
    background: var(--paper);
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700; 
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.about-kicker::before {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.about-title {
    margin: 0 0 18px;
    color: var(--navy-deep);
    font-size: 50px;
    line-height: 1.18;
    font-weight: 600;
}

.about-title span {
    color: var(--gold);
}

.about-lead {
    max-width: 640px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.85;
}

.about-head-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.about-head-copy {
    text-align: center;
}

@media (max-width: 991px) {

    .about-section,
    .about-product-features,
    .available-counts-section,
    .quality-manufacturing-section {
        padding: 70px 0;
    }

    .about-head-row {
        display: block;
    }
}

@media (max-width: 767px) {

    .about-section,
    .about-product-features,
    .available-counts-section,
    .quality-manufacturing-section {
        padding: 60px 0;
    }
}


/* =========================================================
       ABOUT INTRO
    ========================================================= */

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: center;
}

.about-intro-content p {
    margin-bottom: 18px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.9;
}

.about-intro-content p:last-child {
    margin-bottom: 0;
}

/* pull-quote card (also reused standalone) */

.about-final-inner {
    position: relative;
    padding: 50px;
    background: var(--navy-mid);
    border: 1px solid rgba(200, 155, 60, .4);
    text-align: center;
}

.about-final-mark {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-light);
    font-family: "Playfair Display", serif;
    font-size: 60px;
    line-height: 1;
}

.about-final-inner p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .95);
    font-family: "Playfair Display", serif;
    font-size: clamp(20px, 2.2vw, 27px);
    font-style: italic;
    line-height: 1.55;
}

.about-final-attrib {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-final-attrib::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--gold);
}

@media (max-width: 991px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .about-final-inner {
        padding: 40px 26px;
    }
}


/* =========================================================
       DATA TABLE — used by Product Range
    ========================================================= */

.about-table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid rgba(10, 36, 64, .10);
}

.about-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
}

.about-table thead th {
    min-width: 230px;
    padding: 17px 24px;
    background: var(--navy-deep);
    color: var(--gold-light);
    text-align: left;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.about-table tbody td {
    padding: 22px 24px;
    border-top: 1px solid rgba(10, 36, 64, .08);
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.75;
    vertical-align: top;
}

.about-table tbody tr {
    transition: background .25s ease;
}

.about-table tbody tr:hover {
    background: var(--cream);
}

.about-table tbody td:first-child {
    border-left: 3px solid transparent;
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 14.5px;
    white-space: nowrap;
}

.about-table tbody tr:hover td:first-child {
    border-left: 3px solid var(--gold);
}


/* =========================================================
       PRODUCT FEATURES
    ========================================================= */

.features-sticky-content {
    position: sticky;
    top: 100px;
    padding-right: 45px;
}

.features-count {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(10, 36, 64, .12);
}

.features-count strong {
    color: var(--navy-deep);
    font-size: 42px;
    line-height: 1;
}

.features-count span {
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 145px;
    padding: 25px 28px;
    background: var(--paper);
    border: 1px solid rgba(10, 36, 64, .09);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.feature-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .3s ease;
}

.feature-item:hover {
    transform: translateX(7px);
    border-color: rgba(200, 155, 60, .35);
    box-shadow: 0 15px 35px rgba(10, 36, 64, .08);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-number {
    flex: 0 0 42px;
    width: 42px;
    color: rgba(10, 36, 64, .28);
    font-size: 14px;
    font-weight: 600;
}

.feature-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 22px;
    color: var(--gold);
    background: rgba(10, 36, 64, .06);
    border: 1px solid rgba(200, 155, 60, .3);
    font-size: 15px;
    transition: all .3s ease;
}

.feature-item:hover .feature-icon {
    color: #fff;
    background: var(--navy-deep);
    border-color: var(--navy-deep);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    margin: 0 0 6px;
    color: var(--navy-deep);
    font-size: 20px;
    font-weight: 600;
}

.feature-content span {
    display: block;
    margin-bottom: 7px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.feature-content p {
    max-width: 570px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.65;
}

.feature-arrow {
    flex: 0 0 35px;
    width: 35px;
    display: flex;
    justify-content: flex-end;
    color: var(--gold);
    font-size: 12px;
    opacity: .5;
    transition: transform .3s ease, opacity .3s ease;
}

.feature-item:hover .feature-arrow {
    opacity: 1;
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .features-sticky-content {
        position: relative;
        top: auto;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .feature-item {
        align-items: flex-start;
        padding: 22px 18px;
        min-height: auto;
    }

    .feature-number {
        flex: 0 0 28px;
        width: 28px;
        font-size: 11px;
    }

    .feature-icon {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        margin-right: 14px;
    }

    .feature-content h3 {
        font-size: 17px;
    }

    .feature-content p {
        font-size: 12px;
    }

    .feature-arrow {
        display: none;
    }
}


/* =========================================================
       AVAILABLE COUNTS
    ========================================================= */

.available-counts-section::before {
    content: "";
    position: absolute;
    left: -180px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(200, 155, 60, .12);
    border-radius: 50%;
}


.counts-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .75fr 1.55fr;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.counts-specification {
    position: relative;
    /*background: #fff;*/
    /*border: 1px solid rgba(10, 36, 64, .14);*/
    /*box-shadow: 0 20px 55px rgba(10, 36, 64, .07);*/
}

.specification-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: var(--navy-deep);
    border-bottom: 2px solid var(--gold);
}

.specification-top span {
    display: block;
    margin-bottom: 5px;
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.specification-top strong {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.specification-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 155, 60, .55);
    color: var(--gold);
    font-size: 16px;
}

.counts-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.counts-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    font-size: 13px;
}

.counts-table thead th {
    padding: 15px 20px;
    background: var(--cream);
    border-bottom: 1px solid rgba(10, 36, 64, .14);
    color: var(--navy-deep);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: left;
}

.counts-table thead th:first-child {
    width: 34%;
}

.counts-table tbody tr {
    border-bottom: 1px solid rgba(10, 36, 64, .10);
    transition: background .25s ease;
}

.counts-table tbody tr:last-child {
    border-bottom: 0;
}

.counts-table tbody tr:hover {
    background: rgba(200, 155, 60, .035);
}

.counts-table tbody td {
    padding: 20px;
    vertical-align: middle;
    color: var(--ink);
}

.category-cell {
    display: flex;
    align-items: center;
    gap: 14px;
}

.category-number {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-deep);
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.category-cell strong {
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
}

.count-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.count-list span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    background: var(--paper);
    border: 1px solid rgba(200, 155, 60, .28);
    color: var(--navy-deep);
    font-size: 11px;
    font-weight: 600;
    transition: all .25s ease;
}

.count-list span:hover {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    color: var(--gold-light);
}

@media (max-width: 991px) {
    .counts-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .specification-top {
        padding: 17px 18px;
    }

    .specification-top strong {
        font-size: 16px;
    }

    .counts-table {
        min-width: 650px;
    }

    .counts-table tbody td {
        padding: 15px;
    }
}

@media (max-width: 575px) {
    .counts-specification {
        box-shadow: 0 12px 35px rgba(10, 36, 64, .06);
    }
}


/* =========================================================
       QUALITY ASSURANCE & MANUFACTURING CAPABILITIES
    ========================================================= */

.qm-header {
    max-width: 760px;
    margin: 0 auto 60px;
}

.qm-section-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.qm-icon {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-deep);
    color: var(--gold);
    border: 1px solid var(--gold);
    font-size: 19px;
}

.qm-small-title {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.qm-section-heading h3 {
    margin: 0;
    color: var(--navy-deep);
    font-size: 28px;
    line-height: 1.25;
    font-weight: 600;
}

.qm-section-heading h3 strong {
    color: var(--gold);
    font-weight: 600;
}

/* test cards */

.qm-quality-grid {
    margin-left: -6px;
    margin-right: -6px;
}

.qm-quality-grid>div {
    padding-left: 6px;
    padding-right: 6px;
}

.qm-test-card {
    height: 100%;
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    padding: 13px 15px;
    background: #fff;
    border: 1px solid rgba(10, 36, 64, .10);
    transition: all .25s ease;
}

.qm-test-card:hover {
    border-color: rgba(200, 155, 60, .65);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(10, 36, 64, .08);
}

.qm-test-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--gold);
    font-size: 13px;
}

.qm-test-card h4 {
    margin: 0 0 3px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
}

.qm-test-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.5;
}

/* quality image */

.qm-image-card {
    position: relative;
    min-height: 580px;
    margin-left: 25px;
    overflow: hidden;
    background: var(--navy-deep);
    border: 1px solid var(--gold);
}

.qm-image-card img {
    width: 100%;
    height: 580px;
    display: block;
    object-fit: cover;
    filter: grayscale(20%);
}

.qm-image-accent {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    width: 45px;
    height: 45px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}

.qm-image-caption {
    position: absolute;
    z-index: 3;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 20px;
    background: rgba(10, 36, 64, .93);
    border-left: 3px solid var(--gold);
}

.qm-image-caption span {
    display: block;
    margin-bottom: 5px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.qm-image-caption span i {
    margin-right: 5px;
}

.qm-image-caption strong {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

/* capability grid */

.qm-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(10, 36, 64, .10);
    border-left: 1px solid rgba(10, 36, 64, .10);
}

.qm-capability-card {
    position: relative;
    min-height: 310px;
    padding: 27px 24px;
    background: #fff;
    border-right: 1px solid rgba(10, 36, 64, .10);
    border-bottom: 1px solid rgba(10, 36, 64, .10);
    transition: all .3s ease;
}

.qm-capability-card:hover {
    background: var(--navy-deep);
    transform: translateY(-5px);
}

.qm-cap-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(18, 58, 99, .18);
    font-size: 12px;
    font-weight: 700;
}

.qm-cap-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: var(--cream);
    color: var(--gold);
    border: 1px solid rgba(200, 155, 60, .35);
    font-size: 15px;
    transition: .3s ease;
}

.qm-capability-card>span {
    display: block;
    margin-bottom: 7px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.qm-capability-card h4 {
    min-height: 42px;
    margin: 0 0 10px;
    color: var(--navy-deep);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.qm-capability-card p {
    margin: 0 0 15px;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.65;
}

.qm-advantage {
    padding-top: 14px;
    border-top: 1px solid rgba(10, 36, 64, .10);
}

.qm-advantage small {
    display: block;
    margin-bottom: 5px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.qm-advantage strong {
    display: block;
    color: var(--ink);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;
}

.qm-capability-card:hover .qm-cap-number {
    color: rgba(228, 199, 126, .3);
}

.qm-capability-card:hover .qm-cap-icon {
    background: transparent;
    border-color: var(--gold);
}

.qm-capability-card:hover h4,
.qm-capability-card:hover p,
.qm-capability-card:hover .qm-advantage strong {
    color: #fff;
}

.qm-capability-highlight {
    border-top: 3px solid var(--gold);
}

@media (max-width: 1199px) {
    .qm-capability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .qm-image-card {
        margin-left: 10px;
    }
}

@media (max-width: 991px) {
    .qm-image-card {
        margin: 35px 0 0;
        min-height: 450px;
    }

    .qm-image-card img {
        height: 450px;
    }
}

@media (max-width: 767px) {
    .qm-section-heading h3 {
        font-size: 23px;
    }

    .qm-capability-grid {
        grid-template-columns: 1fr;
    }

    .qm-capability-card {
        min-height: auto;
    }

    .qm-capability-card h4,
    .qm-capability-card p {
        min-height: auto;
    }

    .qm-image-card {
        min-height: 380px;
    }

    .qm-image-card img {
        height: 380px;
    }
}

@media (max-width: 575px) {
    .qm-quality-grid>div {
        width: 100%;
    }

    .qm-section-heading {
        align-items: flex-start;
    }
}

.thread-img {
    width: 100%;
    height: 450px;
    display: flex; 
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 25px; 
} 

.thread-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.thread-img1 {
    width: 100%;
    height: 250px;
    display: flex; 
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 25px; 
} 

.thread-img1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.contact-breadcrumb-content .container{
    display: flex;
    justify-content: space-between;
} 

.breadcrumb-image {
    /* width: 100%; */
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
}

.breadcrumb-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Tablet */
@media (max-width: 991px) {
    .breadcrumb-image {
        height: 170px; 
    }
}

/* Mobile */
@media (max-width: 575px) {
    .breadcrumb-image {
        height: 150px; 
    }
} 


.count-image {
     width: 100%; 
    height: 435px; 
    display: flex; 
    align-items: center;
    /*justify-content: center;*/
    overflow: hidden; 
    /*border-radius: 15px;*/
}

.count-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
}

/* Tablet */
@media (max-width: 991px) {
    .count-image {
        height: 170px; 
    }
}
 
/* Mobile */
@media (max-width: 575px) {
    .count-image {
        height: 150px; 
    }
}


