/* 
 DIVYASHAKTI STEELS
   ABOUT PAGE*/

/*COMMON */

.about-page {
  overflow: hidden;
  background: #ffffff;
  color: #1b1b1b;
}

.about-page .container {
  width: min(1180px, calc(100% - 40px));
  margin: 50px auto;
}

/* ABOUT SECTION SPACING */
.about-profile-section,
.about-fact-section,
.about-industries-section,
.about-products-section,
.about-team-section,
.about-quality-section,
.about-vendor-section,
.about-warehouse-section,
.about-why-section,
.about-client-section{
padding:var(--dvs-section-padding) 0;
}

.about-page section {
  position: relative;
  
}

.about-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d8783b;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 45px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 3.2vw, 76px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #17202a;
}

.section-heading p {
  max-width: 700px;
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: #66717d;
}

.section-heading-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading-center p {
  margin-left: auto;
  margin-right: auto;
}
/* =========================================================
   COMPANY PROFILE
========================================================= */

.about-profile-section {
    position: relative;
    
    overflow: hidden;
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(216, 120, 59, 0.09),
            transparent 30%
        ),
        #f7f7f5;
}


/* =========================================================
   TOP INTRO
========================================================= */

.about-profile-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 80px;
    align-items: center;
    
}


/* =========================================================
   LEFT VISUAL
========================================================= */

.about-profile-visual {
    position: relative;
}

.about-visual-frame {
    position: relative;
    height: 510px;
    overflow: hidden;
    border-radius: 0 28px 28px 28px;
    background: #d9d9d7;
    box-shadow: 0 30px 70px rgba(23, 32, 42, 0.12);
}

.about-visual-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-visual-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02) 30%,
            rgba(0, 0, 0, 0.32) 100%
        );
}


/* =========================================================
   FLOATING EXPERIENCE CARD
========================================================= */
.about-experience-card {
    position: absolute;
    left: 28px;
    bottom: 28px;

    min-width: 230px;
    padding: 26px 28px;

    background: #ffffff;

    border-radius: 0 0 18px 0;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.16);

    z-index: 5;

    animation: experienceFloat 4.5s ease-in-out infinite;
}

.about-experience-card strong {
    display: block;

    font-family: "Manrope", sans-serif;
    font-size: 48px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;

    color: #d8783b;
}

.about-experience-card span {
    display: block;

    margin-top: 10px;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.5;

    color: #4f5963;
}


/* Floating animation */

@keyframes experienceFloat {

    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    25% {
        transform: translate3d(5px, -9px, 0) rotate(0.4deg);
    }

    50% {
        transform: translate3d(0, -15px, 0) rotate(0deg);
    }

    75% {
        transform: translate3d(-5px, -8px, 0) rotate(-0.4deg);
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

}

/* =========================================================
   RIGHT INTRO CONTENT
========================================================= */

.about-profile-copy {
    max-width: 680px;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 18px;
    padding: 9px 17px;

    border-radius: 30px 30px 30px 4px;
    background: rgba(216, 120, 59, 0.09);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: #d8783b;
}


.about-profile-copy h1 {
    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 3.2vw, 76px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.055em;

    color: #17202a;
}

.about-profile-copy h1 span {
    color: #d8783b;
}


.about-lead {
    max-width: 620px;

    margin: 28px 0 0;

    font-size: 17px;
    line-height: 1.85;

    color: #66717d;
}


/* =========================================================
   BUTTONS
========================================================= */

.about-profile-actions {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 34px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 56px;
    padding: 0 25px;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.about-btn:hover {
    transform: translateY(-3px);
}

.about-btn-primary {
    color: #ffffff;
    background: #d8783b;

    box-shadow:
        0 15px 30px rgba(216, 120, 59, 0.22);
}

.about-btn-primary:hover {
    color: #ffffff;
    background: #17202a;
}

.about-btn-secondary {
    color: #17202a;
    background: transparent;
    border: 1px solid rgba(23, 32, 42, 0.18);
}

.about-btn-secondary:hover {
    color: #ffffff;
    background: #17202a;
}


/* =========================================================
   COMPANY STORY
========================================================= */

.about-story {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);

    gap: 85px;
    align-items: center;
 
    margin-top: 65px;
    padding-top: 0;

    border-top: 0;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.about-story-heading {
    position: relative;
    align-self: center;
}

.about-story-heading .about-eyebrow {
    margin-bottom: 25px;
}


.about-story-heading h2 {
    max-width: 620px;

    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 3.2vw, 68px);
    line-height: 1.04;
    font-weight: 800;

    letter-spacing: -0.055em;

    color: #17202a;
}


.about-story-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #d8783b,
        #f67a21
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================================
   STORY TEXT
========================================================= */

.about-story-content {
    max-width: 650px;

    margin-top: 38px;
}


.about-story-content p {
    margin: 0 0 24px;

    font-size: 16px;
    line-height: 1.9;

    color: #59636d;
}


.about-story-content p:last-child {
    margin-bottom: 0;
}


.about-story-content a {
    color: #d8783b;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================================
   HIGHLIGHT
========================================================= */

.about-story-highlight {
    display: flex;
    align-items: stretch;

    max-width: 610px;

    margin-top: 40px;

    background: rgba(216, 120, 59, 0.06);

    border-radius: 3px;
    overflow: hidden;
}


.about-story-highlight > span {
    flex: 0 0 4px;

    background: linear-gradient(
        180deg,
        #d8783b,
        #f67a21
    );
}


.about-story-highlight p {
    margin: 0;

    padding: 23px 30px;

    font-family: "Manrope", sans-serif;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 700;

    color: #17202a;
}


/* =========================================================
   RIGHT IMAGE AREA
========================================================= */

.about-story-visual {
    position: relative;

     min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.about-story-image {
    position: relative;

      margin-left: 15px;
    width: calc(100% - 15px);
    
    height: 410px;

    overflow: hidden;

    border-radius: 28px;

    background: #d5d5d3;

    box-shadow:
        0 30px 70px rgba(23, 32, 42, 0.14);
}


.about-story-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.8s ease;
}


.about-story-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   FLOATING STAT CARDS
========================================================= */

.about-floating-card {
    position: absolute;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(255, 255, 255, 0.9);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.14);

    backdrop-filter: blur(12px);

    z-index: 3;
}


.about-floating-card strong {
    display: block;

    font-family: "Manrope", sans-serif;
    font-size: 30px;
    line-height: 1;

    font-weight: 800;
    letter-spacing: -0.05em;

    color: #17091b;
}


.about-floating-card span {
    display: block;

    margin-top: 9px;

    font-size: 11px;
    line-height: 1.45;

    font-weight: 600;

    letter-spacing: 0.14em;

    color: #4e4650;
}


/* =========================================================
   EXPERIENCE CARD — TOP LEFT
========================================================= */

.about-floating-experience {
    top: 78px;
    left: -42px;

    width: 235px;
    min-height: 112px;

    padding: 22px 28px;

    border-radius: 18px 0 18px 18px;

    animation: aboutFloatOne 5s ease-in-out infinite;
}


/* =========================================================
   ORDERS CARD — BOTTOM LEFT
========================================================= */

.about-floating-orders {
    bottom: 68px;
    left: -22px;

    width: 190px;
    min-height: 112px;

    padding: 22px 28px;

    border-radius: 18px 18px 18px 0;

    animation: aboutFloatTwo 6s ease-in-out infinite;
}


/* =========================================================
   CLIENTS CARD — MIDDLE RIGHT
========================================================= */

.about-floating-clients {
    top: 50%;
    right: -35px;

    width: 170px;
    min-height: 90px;

    padding: 22px 28px;

    border-radius: 18px 18px 0 18px;

    animation: aboutFloatThree 5.5s ease-in-out infinite;
}

/* =========================================================
   FLOATING ANIMATIONS
========================================================= */

@keyframes aboutFloatOne {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(8px, -14px, 0);
    }

}


@keyframes aboutFloatTwo {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-6px, -12px, 0);
    }

}


@keyframes aboutFloatThree {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(7px, 12px, 0);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .about-story {
        grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
        gap: 55px;
    }

    .about-story-visual {
        min-height: 550px;
    }

    .about-story-image {
        height: 550px;
    }

    .about-floating-experience {
        left: -20px;
    }

    .about-floating-clients {
        right: -15px;
    }

}


@media (max-width: 991px) {

    .about-story {
        grid-template-columns: 1fr;
        gap: 65px;

        margin-top: 110px;
    }

    .about-story-heading {
        max-width: 760px;
    }

    .about-story-visual {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;

        min-height: 560px;
    }

    .about-story-image {
        height: 560px;
    }

}


@media (max-width: 767px) {

    .about-story {
        margin-top: 90px;
        gap: 45px;
    }

    .about-story-heading h2 {
        font-size: 43px;
    }

    .about-story-content {
        margin-top: 28px;
    }

    .about-story-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-story-highlight {
        margin-top: 30px;
    }

    .about-story-highlight p {
        padding: 20px 22px;
        font-size: 17px;
    }

    .about-story-visual {
        min-height: 430px;
    }

    .about-story-image {
        height: 430px;
        border-radius: 20px;
    }

    .about-floating-card strong {
        font-size: 31px;
    }

    .about-floating-card span {
        font-size: 9px;
    }

    .about-floating-experience {
        top: 20px;
        left: -8px;

        width: 175px;
        min-height: 92px;

        padding: 18px 20px;
    }

    .about-floating-orders {
        bottom: 20px;
        left: -8px;

        width: 155px;
        min-height: 90px;

        padding: 18px 20px;
    }

    .about-floating-clients {
        right: -8px;

        width: 145px;
        min-height: 90px;

        padding: 18px 20px;
    }

}
/* =========================================================
   LEADERSHIP
========================================================= */
.about-leadership{
position:relative;
display:grid;
grid-template-columns:180px minmax(0,1fr);
gap:70px;

margin-top: 65px;
border-top:1px solid rgba(23,32,42,.12);
border-bottom:1px solid rgba(23,32,42,.12);
padding-top:10px;
}
.about-leadership::before{
content:"";
position:absolute;
top:90px;
left:205px;
width:1px;
height:calc(100% - 190px);
background:linear-gradient(to bottom,rgba(216,120,59,.45),rgba(216,120,59,.05));
}
.about-leadership-number{
position:relative;
font-family:"Manrope",sans-serif;
font-size:105px;
line-height:.8;
font-weight:800;
letter-spacing:-.08em;
color:rgba(216,120,59,.16);
}
.about-leadership-number::after{
content:"";
display:block;
width:32px;
height:4px;
margin-top:28px;
background:#d8783b;
}
.about-leadership-content{
max-width:950px;
padding-left:20px;
}
.about-leadership-content .about-eyebrow{
display:inline-flex;
align-items:center;
padding:9px 18px;
margin-bottom:25px;
border-radius:50px;
background:rgba(216,120,59,.09);
color:#d8783b;
font-size:10px;
font-weight:700;
letter-spacing:2.5px;
text-transform:uppercase;
}
.about-leadership-content h2{
max-width:900px;
margin:0 0 45px;
font-family:"Manrope",sans-serif;
font-size:clamp(48px,5vw,76px);
line-height:1.02;
font-weight:800;
letter-spacing:-.055em;
color:#17202a;
}
.about-leadership-content h2 span{
display:block;
color:#d8783b;
}
.about-leadership-content p{
position:relative;
max-width:850px;
margin:0 0 25px;
padding-left:28px;
font-size:17px;
line-height:1.85;
color:#56616c;
}
.about-leadership-content p::before{
content:"";
position:absolute;
top:12px;
left:0;
width:7px;
height:7px;
border-radius:50%;
background:#d8783b;
}
.about-leadership-content p:last-child{
margin-bottom:0;
}
.about-leadership-content strong{
color:#17202a;
font-weight:700;
}
@media(max-width:991px){
.about-leadership{
grid-template-columns:110px minmax(0,1fr);
gap:45px;
margin-top:110px;
padding:75px 0 85px;
}
.about-leadership::before{
left:155px;
top:75px;
height:calc(100% - 160px);
}
.about-leadership-number{
font-size:75px;
}
.about-leadership-content{
padding-left:15px;
}
.about-leadership-content h2{
font-size:clamp(44px,6vw,62px);
margin-bottom:35px;
}
}
@media(max-width:767px){
.about-leadership{
grid-template-columns:1fr;
gap:35px;
margin-top:90px;
padding:60px 0 70px;
}
.about-leadership::before{
display:none;
}
.about-leadership-number{
font-size:62px;
}
.about-leadership-number::after{
width:28px;
height:3px;
margin-top:20px;
}
.about-leadership-content{
padding-left:0;
}
.about-leadership-content .about-eyebrow{
margin-bottom:20px;
}
.about-leadership-content h2{
font-size:42px;
line-height:1.05;
letter-spacing:-.04em;
margin-bottom:32px;
}
.about-leadership-content p{
padding-left:22px;
font-size:16px;
line-height:1.8;
margin-bottom:22px;
}
.about-leadership-content p::before{
top:11px;
width:6px;
height:6px;
}
}
@media(max-width:575px){
.about-leadership{
margin-top:75px;
padding:50px 0 60px;
}
.about-leadership-number{
font-size:52px;
}
.about-leadership-content h2{
font-size:38px;
}
.about-leadership-content p{
font-size:15px;
}
}

/* =========================================================
   FACT SHEET
========================================================= */

.about-fact-section {
    position: relative;
    
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(216, 120, 59, 0.08),
            transparent 30%
        ),
        #f5f6f7;
}


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

.fact-header {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: end;

    margin-bottom: 60px;
}

.fact-header .about-eyebrow {
    margin-bottom: 18px;
}

.fact-header h2 {
    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1;
    font-weight: 800;

    letter-spacing: -0.055em;
    color: #17202a;
}

.fact-header h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #d8783b,
        #f67a21
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fact-header > p {
    margin: 0;

    max-width: 360px;

    font-size: 16px;
    line-height: 1.8;

    color: #66717d;
}


/* =========================================================
   FACT GRID
========================================================= */

.fact-grid {
    display: grid;

    grid-template-columns:
        repeat(12, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   COMMON CARD
========================================================= */

.fact-card {
    position: relative;

    min-height: 260px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid rgba(23, 32, 42, 0.07);

    border-radius: 10px;

    overflow: hidden;

    box-shadow:
        0 20px 55px rgba(23, 32, 42, 0.06);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.fact-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 30px 70px rgba(23, 32, 42, 0.11);
}


/* =========================================================
   TOP LINE
========================================================= */

.fact-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 45px;
}

.fact-number {
    font-family: "Manrope", sans-serif;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.12em;

    color: #d8783b;
}

.fact-label-small {
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.18em;

    color: #8a929a;
}


/* =========================================================
   GRID POSITIONS
========================================================= */

.fact-card-large {
    grid-column: span 7;
    min-height: 330px;
}

.fact-card-dark {
    grid-column: span 5;
    min-height: 330px;
}

.fact-card:nth-child(3) {
    grid-column: span 5;
}

.fact-card-accent {
    grid-column: span 3;
}

.fact-card-location {
    grid-column: span 4;
}


/* =========================================================
   LARGE YEAR
========================================================= */

.fact-main-number {
    font-family: "Manrope", sans-serif;

    font-size: clamp(64px, 7vw, 100px);
    line-height: 0.9;

    font-weight: 800;

    letter-spacing: -0.07em;

    color: #17202a;

    margin-bottom: 25px;
}

.fact-card h3 {
    margin: 0 0 14px;

    font-family: "Manrope", sans-serif;

    font-size: 22px;
    line-height: 1.15;

    font-weight: 800;

    color: #17202a;
}

.fact-card p {
    max-width: 600px;

    margin: 0;

    font-size: 14px;
    line-height: 1.8;

    color: #69737d;
}


/* =========================================================
   DARK CARD
========================================================= */

.fact-card-dark {
    background: #17202a;
    border-color: #17202a;

    color: #ffffff;
}

.fact-card-dark .fact-label-small {
    color: rgba(255,255,255,0.45);
}

.fact-card-dark .fact-number {
    color: #ef8a43;
}

.fact-card-dark h3 {
    color: #ffffff;

    font-size: 30px;
    margin-bottom: 30px;
}


/* =========================================================
   TAGS
========================================================= */

.fact-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.fact-tags span {
    padding: 11px 16px;

    border: 1px solid rgba(255,255,255,0.16);

    border-radius: 100px;

    font-size: 12px;
    font-weight: 600;

    color: rgba(255,255,255,0.8);

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.fact-tags span:hover {
    background: #ffffff;
    color: #17202a;
}


/* =========================================================
   OWNERSHIP DETAILS
========================================================= */

.fact-detail {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    padding: 16px 0;

    border-bottom: 1px solid rgba(23,32,42,0.08);
}

.fact-detail:last-child {
    border-bottom: 0;
}

.fact-detail span {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color: #89919a;
}

.fact-detail strong {
    text-align: right;

    font-size: 14px;

    color: #17202a;
}


/* =========================================================
   TEAM / ACCENT CARD
========================================================= */

.fact-card-accent {
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fff8f3 100%
        );
}

.fact-card-accent .fact-main-number {
    background: linear-gradient(
        90deg,
        #d8783b,
        #f67a21
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    font-size: 64px;

    margin-bottom: 15px;
}


/* =========================================================
   LOCATION
========================================================= */

.fact-location-content {
    display: flex;

    gap: 18px;
}

.fact-location-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(216, 120, 59, 0.1);

    color: #d8783b;

    font-size: 17px;
}

.fact-card-location h3 {
    font-size: 20px;
}

.fact-card-location p {
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   BOTTOM STRIP
========================================================= */

.fact-bottom-strip {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 30px;

    margin-top: 18px;

    padding: 25px 30px;

    background: #17202a;

    border-radius: 4px;

    color: #ffffff;
}

.fact-bottom-strip span {
    display: block;

    margin-bottom: 5px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.2em;

    color: #ef8a43;
}

.fact-bottom-strip strong {
    font-family: "Manrope", sans-serif;

    font-size: 18px;
}

.fact-bottom-strip a {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 13px 20px;

    border: 1px solid rgba(255,255,255,0.2);

    border-radius: 3px;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.fact-bottom-strip a:hover {
    background: #ffffff;
    color: #17202a;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    

    .fact-header {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 45px;
    }

    .fact-header > p {
        max-width: 650px;
    }

    .fact-card-large,
    .fact-card-dark,
    .fact-card:nth-child(3) {
        grid-column: span 6;
    }

    .fact-card-accent,
    .fact-card-location {
        grid-column: span 6;
    }

}


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

@media (max-width: 767px) {

    

    .fact-header {
        margin-bottom: 35px;
    }

    .fact-header h2 {
        font-size: 44px;
    }

    .fact-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .fact-card-large,
    .fact-card-dark,
    .fact-card:nth-child(3),
    .fact-card-accent,
    .fact-card-location {
        grid-column: span 1;
    }

    .fact-card,
    .fact-card-large,
    .fact-card-dark {
        min-height: auto;

        padding: 25px;
    }

    .fact-card-top {
        margin-bottom: 35px;
    }

    .fact-main-number {
        font-size: 70px;
    }

    .fact-card-dark h3 {
        font-size: 26px;
    }

    .fact-bottom-strip {
        align-items: flex-start;

        flex-direction: column;

        padding: 25px;
    }

    .fact-bottom-strip a {
        width: 100%;

        justify-content: center;
    }

}



/* =========================================================
   INDUSTRIES WE SERVE
========================================================= */

.about-industries-section {
    position: relative;

    

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 48%,
            rgba(216, 120, 59, 0.07),
            transparent 30%
        ),
        #f5f6f7;
}


/* =========================================================
   INTRO
========================================================= */

.industries-intro {
    max-width: 850px;

    margin-bottom: 70px;
}

.industries-intro .about-eyebrow {
    margin-bottom: 18px;
}

.industries-intro h2 {
    margin: 0;

    font-family: "Manrope", sans-serif;

    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.98;

    font-weight: 800;

    letter-spacing: -0.06em;

    color: #17202a;
}

.industries-intro h2 span {
    background: linear-gradient(
        90deg,
        #d8783b,
        #f67a21
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.industries-intro p {
    max-width: 720px;

    margin: 28px 0 0;

    font-size: 16px;

    line-height: 1.85;

    color: #66717d;
}


/* =========================================================
   NETWORK AREA
========================================================= */

.industries-network {
    position: relative;

    width: min(1100px, 100%);

    height: 700px;

    margin: 0 auto;
}


/* =========================================================
   CENTRAL ELEMENT
========================================================= */

.industries-center {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 310px;
    height: 310px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 50%;

    background: #17202a;

    box-shadow:
        0 35px 80px rgba(23, 32, 42, 0.18),
        0 0 0 1px rgba(255,255,255,0.08);

    z-index: 5;
}


/* outer ring */

.industries-center::before {
    content: "";

    position: absolute;

    inset: -15px;

    border: 1px solid rgba(216, 120, 59, 0.25);

    border-radius: 50%;
}


/* second ring */

.industries-center::after {
    content: "";

    position: absolute;

    inset: -38px;

    border: 1px dashed rgba(23, 32, 42, 0.12);

    border-radius: 50%;

    animation: industryOrbit 20s linear infinite;
}


.industries-center-small {
    margin-bottom: 17px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.28em;

    color: #ef8a43;
}


.industries-center h3 {
    margin: 0;

    font-family: "Manrope", sans-serif;

    font-size: 38px;

    line-height: 0.98;

    font-weight: 800;

    letter-spacing: -0.05em;

    color: #ffffff;
}


.industries-center h3 span {
    background: linear-gradient(
        90deg,
        #d8783b,
        #f67a21
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.industries-center-line {
    width: 45px;
    height: 2px;

    margin: 22px 0 16px;

    background: linear-gradient(
        90deg,
        #d8783b,
        #f67a21
    );
}


.industries-center-bottom {
    font-size: 8px;

    letter-spacing: 0.14em;

    color: rgba(255,255,255,0.45);
}


/* =========================================================
   INDUSTRY PILLS
========================================================= */

.industry-pill {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 18px 12px 12px;

    background: rgba(255,255,255,0.92);

    border: 1px solid rgba(23,32,42,0.08);

    border-radius: 100px;

    box-shadow:
        0 12px 30px rgba(23,32,42,0.07);

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

    color: #34404a;

    z-index: 3;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}


.industry-pill span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    flex: 0 0 25px;

    border-radius: 50%;

    background: rgba(216,120,59,0.1);

    color: #d8783b;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.03em;
}


.industry-pill:hover {
    transform: translateY(-5px) scale(1.03);

    background: #ffffff;

    box-shadow:
        0 18px 40px rgba(23,32,42,0.12);
}


.industry-pill:hover span {
    background: linear-gradient(
        135deg,
        #d8783b,
        #f67a21
    );

    color: #ffffff;
}


/* TOP ROW */

.industry-01 {
    top: 7%;
    left: 36%;
}

.industry-02 {
    top: 7%;
    left: 55%;
}

.industry-03 {
    top: 11%;
    right: 13%;
}


/* UPPER SIDES */

.industry-04 {
    top: 26%;
    left: 15%;
}

.industry-05 {
    top: 27%;
    right: 14%;
}

.industry-15 {
    top: 19%;
    left: 24%;
}

.industry-16 {
    top: 19%;
    right: 24%;
}


/* MIDDLE SIDES */

.industry-06 {
    top: 42%;
    left: 9%;
}

.industry-07 {
    top: 42%;
    right: 9%;
}


/* LOWER SIDES */

.industry-08 {
    top: 56%;
    left: 14%;
}

.industry-13 {
    top: 57%;
    right: 15%;
}


/* LOWER INNER */

.industry-09 {
    top: 70%;
    left: 24%;
}

.industry-10 {
    top: 66%;
    right: 26%;
}


/* BOTTOM LEFT / RIGHT */

.industry-14 {
    bottom: 18%;
    left: 13%;
}

.industry-12 {
    bottom: 17%;
    right: 14%;
}


/* BOTTOM CENTER-LEFT */

.industry-11 {
    bottom: 8%;
    left: 40%;
}


/* BOTTOM CENTER-RIGHT */

.industry-17 {
    bottom: 16%;
    right: 40%;
}

/* =========================================================
   CONNECTING LINES
========================================================= */

.industries-network {
    isolation: isolate;
}


/* subtle network background */

.industries-network::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 610px;
    height: 610px;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(23,32,42,0.06);

    border-radius: 50%;

    z-index: 0;
}


.industries-network::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 470px;
    height: 470px;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(216,120,59,0.08);

    border-radius: 50%;

    z-index: 0;
}


/* =========================================================
   STATEMENT
========================================================= */

.industries-statement {
    position: relative;

    max-width: 850px;

    margin: 55px auto 0;

    padding: 35px 45px;

    background: #ffffff;

    border: 1px solid rgba(23,32,42,0.07);

    border-radius: 4px;

    box-shadow:
        0 20px 55px rgba(23,32,42,0.06);

    overflow: hidden;
}


.industries-quote-mark {
    position: absolute;

    top: 5px;
    left: 25px;

    font-family: Georgia, serif;

    font-size: 70px;

    line-height: 1;

    background: linear-gradient(
        90deg,
        #d8783b,
        #f67a21
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    opacity: 0.35;
}


.industries-statement p {
    position: relative;

    margin: 0;

    padding-left: 20px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(20px, 2vw, 26px);

    line-height: 1.45;

    font-weight: 600;

    color: #17202a;
}


.industries-statement strong {
    background: linear-gradient(
        90deg,
        #d8783b,
        #f67a21
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.industries-statement-line {
    display: block;

    width: 100%;

    height: 3px;

    margin-top: 28px;

    background: linear-gradient(
        90deg,
        #d8783b,
        #f67a21
    );
}


/* =========================================================
   ORBIT ANIMATION
========================================================= */

@keyframes industryOrbit {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

      .about-industries-section {
        
        overflow: hidden;
    }

    .industries-network {
        position: relative;
        width: 100%;
        height: 700px;
        margin: 0 auto;
    }

    .industries-center {
        position: absolute;

        top: 50%;
        left: 50%;

        width: 235px;
        height: 235px;

        transform: translate(-50%, -50%);

        z-index: 2;
    }

      .industries-center h3 {
        font-size: 30px;
        line-height: 1;
    }

    .industry-pill {
        font-size: 11px;
    }

    .industry-01 {
        left: 24%;
    }

    .industry-02 {
        left: 51%;
    }

    .industry-03 {
        right: 3%;
        left: auto;
    }

    .industry-04 {
        left: 0;
    }

    .industry-05 {
        right: 0;
    }

    .industry-06 {
        left: 1%;
    }

    .industry-07 {
        right: 1%;
    }

    .industry-15 {
        left: 5%;
    }

    .industry-16 {
        right: 5%;
    }

     .industries-network::before {
        width: 520px;
        height: 520px;
    }

    .industries-network::after {
        width: 390px;
        height: 390px;
    }

     .industry-pill {
        position: absolute;

        z-index: 3;

        font-size: 10px;

        padding: 9px 14px;

        white-space: nowrap;

        border-radius: 30px;
    }

    .industry-pill span {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;

        font-size: 8px;
    }
  .industry-01 {
        top: 7%;
        left: 28%;
    }

    .industry-02 {
        top: 7%;
        left: 54%;
    }

    .industry-03 {
        top: 15%;
        right: 7%;
    }


    /* =====================================================
       UPPER LEFT / RIGHT
    ===================================================== */

    .industry-15 {
        top: 19%;
        left: 8%;
    }

    .industry-16 {
        top: 23%;
        right: 13%;
    }

    .industry-04 {
        top: 31%;
        left: 2%;
    }

    .industry-05 {
        top: 31%;
        right: 2%;
    }


    /* =====================================================
       MIDDLE
    ===================================================== */

    .industry-06 {
        top: 45%;
        left: 0;
    }

    .industry-07 {
        top: 45%;
        right: 0;
    }


    /* =====================================================
       LOWER SIDES
    ===================================================== */

    .industry-08 {
        top: 59%;
        left: 5%;
    }

    .industry-13 {
        top: 59%;
        right: 5%;
    }


    /* =====================================================
       LOWER INNER
    ===================================================== */

    .industry-09 {
        top: 70%;
        left: 20%;
    }

    .industry-10 {
        top: 70%;
        right: 20%;
    }


    /* =====================================================
       BOTTOM
    ===================================================== */

    .industry-14 {
        bottom: 9%;
        left: 9%;
    }

    .industry-12 {
        bottom: 9%;
        right: 9%;
    }

    .industry-11 {
        bottom: 2%;
        left: 33%;
    }

    .industry-17 {
        bottom: 2%;
        right: 33%;
    }


    /* =====================================================
       STATEMENT
    ===================================================== */

    .industries-statement {
        max-width: 700px;
        margin: 35px auto 0;

        padding: 28px 32px;
    }

    .industries-statement p {
        font-size: 20px;
    }
  

}


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

@media (max-width: 767px) {

    

    .industries-intro {
        margin-bottom: 45px;
    }

    .industries-intro h2 {
        font-size: 46px;
    }

    .industries-intro p {
        font-size: 15px;
    }


    /* turn orbit into clean stacked network */

    .industries-network {
        height: auto;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 10px;

        padding: 0;

        margin: 0;
    }


    .industries-network::before,
    .industries-network::after {
        display: none;
    }


    .industries-center {
        position: relative;

        top: auto;
        left: auto;

        transform: none;

        grid-column: 1 / -1;

        width: 230px;
        height: 230px;

        margin: 0 auto 25px;
    }


    .industries-center::before,
    .industries-center::after {
        display: none;
    }


    .industries-center h3 {
        font-size: 29px;
    }


    .industry-pill {
        position: relative;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        width: 100%;

        padding: 10px;

        white-space: normal;

        border-radius: 4px;

        font-size: 11px;
    }


    .industry-pill span {
        width: 22px;
        height: 22px;

        flex-basis: 22px;
    }


    .industries-statement {
        margin-top: 35px;

        padding: 30px 25px;
    }


    .industries-statement p {
        padding-left: 5px;

        font-size: 20px;
    }

}


/* =========================================================
   PRODUCT PORTFOLIO
========================================================= */

.about-products-section {
  background: #17202a;
  color: #ffffff;
}

.about-products-section .section-heading h2 {
  color: #ffffff;
}

.about-products-section .about-eyebrow {
  color: #e89a68;
}

.about-products-section .about-text-block p {
  color: rgba(255, 255, 255, 0.72);
}

.about-product-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0;
}

.about-product-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.about-product-links a::after {
  content: "→";
  color: #e89a68;
  font-size: 20px;
}

.about-product-links a:hover {
  background: rgba(216, 120, 59, 0.12);
  border-color: #d8783b;
  transform: translateX(4px);
}

/* =========================================================
   OUR TEAM
========================================================= */

.about-team-section {
    position: relative;



    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(216, 120, 59, 0.06),
            transparent 30%
        ),
        #ffffff;

    overflow: hidden;
}


/* =========================================================
   LAYOUT
========================================================= */

.team-layout {
    display: grid;

    grid-template-columns:
        minmax(320px, 0.85fr)
        minmax(500px, 1.15fr);

    gap: 100px;

    align-items: start;
}


/* =========================================================
   LEFT INTRO
========================================================= */

.team-intro {
    position: sticky;

    top: 120px;
}


.team-intro .about-eyebrow {
    margin-bottom: 25px;
}


.team-intro h2 {
    max-width: 520px;

    margin: 0;

    font-family: "Manrope", sans-serif;

    font-size: clamp(45px, 4.5vw, 68px);

    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -0.055em;

    color: #17202a;
}


.team-intro h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #d8783b,
        #f67a21
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.team-lead {
    max-width: 480px;

    margin: 30px 0 0;

    font-size: 17px;

    line-height: 1.8;

    color: #59636d;
}


/* =========================================================
   HIGHLIGHT
========================================================= */

.team-highlight {
    display: flex;

    margin-top: 45px;

    max-width: 500px;

    background: #f8f5f2;

    border-radius: 4px;

    overflow: hidden;

    box-shadow:
        0 18px 45px rgba(23, 32, 42, 0.05);
}


.team-highlight-line {
    flex: 0 0 4px;

    background: linear-gradient(
        180deg,
        #d8783b,
        #f67a21
    );
}


.team-highlight p {
    margin: 0;

    padding: 24px 28px;

    font-family: "Manrope", sans-serif;

    font-size: 18px;

    line-height: 1.5;

    font-weight: 600;

    color: #17202a;
}


.team-highlight strong {
    display: block;

    color: #d8783b;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.team-content {
    max-width: 720px;
}


.team-description {
    max-width: 680px;

    margin-bottom: 42px;
}


.team-description p {
    margin: 0 0 22px;

    font-size: 16px;

    line-height: 1.85;

    color: #59636d;
}


.team-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TEAM ROLE GRID
========================================================= */

.team-role-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;
}


/* =========================================================
   ROLE CARD
========================================================= */

.team-role-card {
    position: relative;

    display: grid;

    grid-template-columns: 42px 1fr 24px;

    gap: 15px;

    align-items: start;

    min-height: 145px;

    padding: 24px;

    background: #ffffff;

    border: 1px solid rgba(23, 32, 42, 0.09);

    border-radius: 8px;

    box-shadow:
        0 15px 40px rgba(23, 32, 42, 0.045);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.team-role-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;

    height: 3px;

    background: linear-gradient(
        90deg,
        #d8783b,
        #f67a21
    );

    transition: width 0.35s ease;
}


.team-role-card:hover {
    transform: translateY(-6px);

    border-color: rgba(216, 120, 59, 0.25);

    box-shadow:
        0 25px 55px rgba(23, 32, 42, 0.09);
}


.team-role-card:hover::after {
    width: 100%;
}


/* =========================================================
   NUMBER
========================================================= */

.team-role-number {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: rgba(216, 120, 59, 0.10);

    color: #d8783b;

    font-family: "Manrope", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.08em;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.team-role-card h3 {
    margin: 2px 0 8px;

    font-family: "Manrope", sans-serif;

    font-size: 18px;

    line-height: 1.2;

    font-weight: 800;

    color: #17202a;
}


.team-role-card p {
    margin: 0;

    font-size: 13px;

    line-height: 1.6;

    color: #6a737c;
}


/* =========================================================
   CARD ARROW
========================================================= */

.team-role-card > i {
    margin-top: 5px;

    font-size: 12px;

    color: #d8783b;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}


.team-role-card:hover > i {
    transform: translate(3px, -3px);

    color: #f67a21;
}


/* =========================================================
   BOTTOM NOTE
========================================================= */

.team-bottom-note {
    display: grid;

    grid-template-columns: 170px 1fr;

    gap: 30px;

    align-items: center;

    margin-top: 18px;

    padding: 22px 25px;

    background:
        linear-gradient(
            90deg,
            rgba(216, 120, 59, 0.07),
            rgba(246, 122, 33, 0.04)
        );

    border-left: 3px solid #d8783b;
}


.team-bottom-note span {
    font-family: "Manrope", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.18em;

    color: #d8783b;
}


.team-bottom-note p {
    margin: 0;

    font-size: 14px;

    line-height: 1.6;

    color: #59636d;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

   

    .team-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .team-intro {
        position: relative;

        top: auto;
    }

    .team-intro h2 {
        max-width: 700px;
    }

    .team-lead {
        max-width: 650px;
    }

    .team-content {
        max-width: 100%;
    }

}


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

@media (max-width: 767px) {

   

    .team-layout {
        gap: 40px;
    }

    .team-intro h2 {
        font-size: 43px;
    }

    .team-lead {
        font-size: 15px;
    }

    .team-highlight {
        margin-top: 30px;
    }

    .team-highlight p {
        padding: 20px 22px;

        font-size: 16px;
    }

    .team-role-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .team-role-card {
        min-height: 125px;

        padding: 20px;
    }

    .team-bottom-note {
        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 14px;
    }

}



/* QUALITY ASSURANCE */
.about-quality-section {
    position: relative;
    
    background: #ffffff;
    overflow: hidden;
}
.quality-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.85fr) minmax(500px, 1.15fr);
    gap: 90px;
    align-items: center;
}
.quality-intro {
    position: relative;
}
.quality-intro .about-eyebrow {
    margin-bottom: 25px;
}
.quality-intro h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.055em;
    color: #17091b;
}
.quality-intro h2 span {
    background: linear-gradient(90deg, #d8783b, #f67a21);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.quality-quote {
    position: relative;
    max-width: 500px;
    margin-top: 65px;
    padding: 32px 35px 30px;
    background: #f8f8f8;
    border: 1px solid rgba(23,32,42,0.07);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(23,32,42,0.06);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.quality-quote:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 55px rgba(23,32,42,0.11);
}
.quality-quote-mark {
    display: block;
    margin-bottom: 8px;
    font-family: Georgia, serif;
    font-size: 55px;
    line-height: 0.7;
    background: linear-gradient(90deg, #d8783b, #f67a21);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.65;
}
.quality-quote p {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    line-height: 1.5;
    font-weight: 700;
    color: #17091b;
}
.quality-quote-line {
    display: block;
    width: 100%;
    height: 3px;
    margin-top: 25px;
    background: linear-gradient(90deg, #d8783b, #f67a21);
}
.quality-cards {
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.quality-card {
    position: relative;
    width: 100%;
    max-width: 580px;
    min-height: 175px;
    padding: 20px 20px;
    background: #ffffff;
    border: 1px solid rgba(23,32,42,0.08);
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(23,32,42,0.055);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.quality-card:hover {
    transform: translateY(-9px);
    border-color: rgba(216,120,59,0.3);
    box-shadow: 0 25px 55px rgba(23,32,42,0.12);
}
.quality-card-1 {
    align-self: flex-start;
}
.quality-card-2 {
    align-self: flex-end;
    max-width: 530px;
}
.quality-card-3 {
    align-self: flex-start;
}
.quality-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: rgba(216,120,59,0.09);
    color: #d8783b;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.quality-card:hover .quality-icon {
    background: linear-gradient(135deg, #d8783b, #f67a21);
    color: #ffffff;
    transform: rotate(8deg) scale(1.08);
}
.quality-card h3 {
    margin: 0 0 9px;
    font-family: "Manrope", sans-serif;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
    color: #17091b;
}
.quality-card p {
    max-width: 500px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #626b74;
}
@media (max-width: 991px) {
    
    .quality-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .quality-intro h2 {
        font-size: 58px;
    }
    .quality-quote {
        max-width: 600px;
        margin-top: 45px;
    }
    .quality-cards {
        max-width: 720px;
        margin: 0 auto;
    }
    .quality-card,
    .quality-card-2 {
        align-self: stretch;
        max-width: none;
    }
}
@media (max-width: 767px) {
   
    .quality-layout {
        gap: 45px;
    }
    .quality-intro h2 {
        font-size: 46px;
    }
    .quality-quote {
        margin-top: 35px;
        padding: 27px 25px 25px;
        border-radius: 15px;
    }
    .quality-quote p {
        font-size: 17px;
    }
    .quality-cards {
        gap: 16px;
    }
    .quality-card {
        min-height: 160px;
        padding: 25px;
        border-radius: 15px;
    }
    .quality-icon {
        width: 39px;
        height: 39px;
        margin-bottom: 19px;
    }
    .quality-card h3 {
        font-size: 19px;
    }
    .quality-card p {
        font-size: 14px;
        line-height: 1.65;
    }
}

/* VENDOR BASE */
.about-vendor-section {
    position: relative;
    
    background: #f8f8f8;
    overflow: hidden;
}
.vendor-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.8fr) minmax(500px, 1.2fr);
    gap: 80px;
    align-items: center;
}
.vendor-intro {
    position: relative;
}
.vendor-intro .about-eyebrow {
    margin-bottom: 24px;
}
.vendor-intro h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 5vw, 70px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.055em;
    color: #17091b;
}
.vendor-intro h2 span {
    background: linear-gradient(90deg, #d8783b, #f67a21);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vendor-intro > p {
    max-width: 500px;
    margin: 30px 0 0;
    font-size: 16px;
    line-height: 1.8;
    color: #626b74;
}
.vendor-highlight {
    display: flex;
    flex-direction: column;
    max-width: 390px;
    margin-top: 40px;
    padding: 22px 25px;
    background: #ffffff;
    border-left: 3px solid #d8783b;
    box-shadow: 0 15px 35px rgba(23,32,42,0.06);
}
.vendor-highlight strong {
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    color: #17091b;
}
.vendor-highlight span {
    margin-top: 4px;
    font-size: 15px;
    color: #d8783b;
}
.vendor-network {
    position: relative;
    min-height: 560px;
}
.vendor-center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 210px;
    height: 210px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #17091b;
    box-shadow: 0 25px 60px rgba(23,32,42,0.15);
}
.vendor-center::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(216,120,59,0.22);
    border-radius: 50%;
}
.vendor-center::after {
    content: "";
    position: absolute;
    width: 290px;
    height: 290px;
    border: 1px dashed rgba(216,120,59,0.14);
    border-radius: 50%;
}
.vendor-center span {
    position: relative;
    z-index: 2;
    font-size: 9px;
    letter-spacing: 0.3em;
    color: #d8783b;
}
.vendor-center strong {
    position: relative;
    z-index: 2;
    margin-top: 7px;
    font-family: "Manrope", sans-serif;
    font-size: 31px;
    color: #ffffff;
}
.vendor-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 1px;
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(216,120,59,0.3), rgba(216,120,59,0.03));
}
.vendor-line-1 {
    transform: rotate(-35deg);
}
.vendor-line-2 {
    transform: rotate(35deg);
}
.vendor-line-3 {
    transform: rotate(180deg);
}
.vendor-node {
    position: absolute;
    z-index: 3;
    width: 190px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(23,32,42,0.08);
    border-radius: 15px;
    box-shadow: 0 18px 40px rgba(23,32,42,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.vendor-node {
    position: absolute;
    z-index: 3;
    width: 190px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(23,32,42,0.08);
    border-radius: 15px;
    box-shadow: 0 18px 40px rgba(23,32,42,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

/* ROTATING ORBIT */
.vendor-network {
    position: relative;
    min-height: 560px;
    isolation: isolate;
}
.vendor-orbit-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: 330px;
    height: 330px;
    transform: translate(-50%, -50%);
    border: 1px solid transparent;
    border-radius: 50%;
    pointer-events: none;
    animation: vendorOrbit 8s linear infinite;
}
.vendor-orbit-arrow::after {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 13px solid #f67a21;
    transform: translateX(-50%);
    filter: drop-shadow(0 2px 4px rgba(216,120,59,0.25));
}
@keyframes vendorOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* =========================================
   VENDOR ROTATING ORBIT
========================================= */

.vendor-network {
    position: relative;
    min-height: 560px;
    isolation: isolate;
}

.vendor-orbit-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;

    width: 330px;
    height: 330px;

    transform: translate(-50%, -50%);
    border: 1px solid transparent;
    border-radius: 50%;

    pointer-events: none;

    /* Faster rotation */
    animation: vendorOrbit 4s linear infinite;
}

/* Arrow points OUTWARD from the center */
.vendor-orbit-arrow::after {
    content: "";

    position: absolute;

    /* Place arrow at the outer edge of the orbit */
    top: -8px;
    left: 50%;

    width: 0;
    height: 0;

    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid #f67a21;

    transform: translateX(-50%);

    filter: drop-shadow(
        0 2px 4px rgba(216, 120, 59, 0.25)
    );
}

@keyframes vendorOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.vendor-node:hover,
.vendor-node.vendor-active {
    transform: translateY(-8px);
    border-color: rgba(216,120,59,0.35);
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(23,32,42,0.14);
}
.vendor-node > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: rgba(216,120,59,0.1);
    color: #d8783b;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.vendor-node:hover > span,
.vendor-node.vendor-active > span {
    background: linear-gradient(135deg, #d8783b, #f67a21);
    color: #ffffff;
    transform: scale(1.08);
}
.vendor-node > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: rgba(216,120,59,0.1);
    color: #d8783b;
    transition: background 0.3s ease, color 0.3s ease;
}
.vendor-node:hover > span {
    background: linear-gradient(135deg, #d8783b, #f67a21);
    color: #ffffff;
}
.vendor-node strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    color: #17091b;
}
.vendor-node small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.5;
    color: #727a82;
}
.vendor-node-1 {
    top: 25px;
    left: 25px;
}
.vendor-node-2 {
    top: 25px;
    right: 15px;
}
.vendor-node-3 {
    bottom: 30px;
    left: 30px;
}
.vendor-node-4 {
    right: 15px;
    bottom: 30px;
}
.vendor-bottom {
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 900px;
    margin: 65px auto 0;
}
.vendor-bottom-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d8783b);
}
.vendor-bottom-line:last-child {
    background: linear-gradient(90deg, #f67a21, transparent);
}
.vendor-bottom p {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    color: #17091b;
}
.vendor-bottom strong {
    color: #d8783b;
}
@media (max-width: 991px) {
    
    .vendor-layout {
        grid-template-columns: 1fr;
        gap: 65px;
    }
    .vendor-intro {
        max-width: 700px;
    }
    .vendor-network {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }
}
@media (max-width: 767px) {

    .vendor-layout {
        gap: 45px;
    }
    .vendor-intro h2 {
        font-size: 46px;
    }
    .vendor-intro > p {
        font-size: 15px;
    }
    .vendor-network {
        min-height: 570px;
    }
    .vendor-center {
        width: 170px;
        height: 170px;
    }
    .vendor-center::before {
        width: 205px;
        height: 205px;
    }
    .vendor-center::after {
        width: 235px;
        height: 235px;
    }
    .vendor-center strong {
        font-size: 25px;
    }
    .vendor-node {
        width: 155px;
        padding: 15px;
    }
    .vendor-node-1 {
        top: 10px;
        left: 0;
    }
    .vendor-node-2 {
        top: 10px;
        right: 0;
    }
    .vendor-node-3 {
        bottom: 10px;
        left: 0;
    }
    .vendor-node-4 {
        right: 0;
        bottom: 10px;
    }
    .vendor-node strong {
        font-size: 14px;
    }
    .vendor-node small {
        font-size: 11px;
    }
    .vendor-bottom {
        gap: 12px;
        margin-top: 45px;
    }
    .vendor-bottom p {
        font-size: 14px;
    }
}


/* =========================================
   WAREHOUSING
========================================= */

.about-warehouse-section {
    position: relative;
    
    background: #ffffff;
    overflow: hidden;
}

.warehouse-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(500px, 1.2fr);
    gap: 90px;
    align-items: center;
}

.warehouse-intro {
    position: relative;
}

.warehouse-intro .about-eyebrow {
    margin-bottom: 24px;
}

.warehouse-intro h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 5vw, 70px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.055em;
    color: #17091b;
}

.warehouse-intro h2 span {
    display: block;
    background: linear-gradient(90deg, #d8783b, #f67a21);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.warehouse-lead {
    max-width: 500px;
    margin: 30px 0 0;
    font-size: 16px;
    line-height: 1.8;
    color: #626b74;
}

.warehouse-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 480px;
    margin-top: 45px;
    padding: 25px;
    background: #f8f8f8;
    border-left: 3px solid #d8783b;
}

.warehouse-highlight-number {
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #d8783b;
    letter-spacing: 0.1em;
}

.warehouse-highlight strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    color: #17091b;
}

.warehouse-highlight p {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #727a82;
}


/* RIGHT CARDS */

.warehouse-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.warehouse-card {
    position: relative;
    padding: 30px;
    min-height: 250px;
    background: #ffffff;
    border: 1px solid rgba(23, 32, 42, 0.08);
    box-shadow: 0 18px 45px rgba(23, 32, 42, 0.07);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
        border-radius: 8px;
}

.warehouse-card:last-child {
    grid-column: 1 / -1;
}

.warehouse-card:hover {
    transform: translateY(-8px);
    border-color: rgba(216, 120, 59, 0.3);
    box-shadow: 0 25px 55px rgba(23, 32, 42, 0.12);
}

.warehouse-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: rgba(216, 120, 59, 0.1);
    color: #d8783b;
    font-size: 18px;
}

.warehouse-card > span {
    position: absolute;
    top: 28px;
    right: 28px;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #c5c5c5;
}

.warehouse-card h3 {
    margin: 0 0 12px;
    font-family: "Manrope", sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #17091b;
}

.warehouse-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #727a82;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    

    .warehouse-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .warehouse-intro {
        max-width: 700px;
    }

}

@media (max-width: 767px) {

 

    .warehouse-intro h2 {
        font-size: 46px;
    }

    .warehouse-lead {
        font-size: 15px;
    }

    .warehouse-content {
        grid-template-columns: 1fr;
    }

    .warehouse-card:last-child {
        grid-column: auto;
    }

    .warehouse-card {
        min-height: auto;
        padding: 25px;
    }

}

/* WHY US */
.about-why-section {
position: relative;

background: #ffffff;
overflow: hidden;
}
.why-layout {
display: grid;
grid-template-columns: minmax(400px, 0.9fr) minmax(500px, 1.1fr);
gap: 75px;
align-items: start;
}
.why-intro {
position: relative;
}
.why-intro .about-eyebrow {
margin-bottom: 28px;
}
.why-intro h2 {
margin: 0;
font-family: "Manrope", sans-serif;
font-size: clamp(48px, 5vw, 70px);
line-height: 0.98;
font-weight: 800;
letter-spacing: -0.055em;
color: #17091b;
}
.why-intro h2 span {
background: linear-gradient(90deg, #f67a21, #d8783b, #f67a21);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.why-intro > p {
max-width: 530px;
margin: 32px 0 0;
font-size: 16px;
line-height: 1.8;
color: #626b74;
}
.why-image {
position: relative;
height: 310px;
margin-top: 32px;
overflow: hidden;
border-radius: 24px;
}
.why-image::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(23,9,27,0.05), rgba(216,120,59,0.12));
pointer-events: none;
}
.why-image img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}
.why-image:hover img {
transform: scale(1.04);
}
.why-content {
padding-top: 0;
}
.why-points {
display: flex;
flex-direction: column;
gap: 12px;
}
.why-point {
position: relative;
display: flex;
align-items: center;
min-height: 72px;
padding: 0 28px;
border: 1px solid rgba(23,32,42,0.08);
border-radius: 15px;
background: #ffffff;
box-shadow: 0 8px 25px rgba(23,32,42,0.025);
transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.why-point:hover {
transform: translateX(6px);
border-color: rgba(216,120,59,0.42);
background: #fffdfb;
box-shadow: 0 12px 30px rgba(216,120,59,0.09);
}
.why-point-bullet {
position: relative;
flex: 0 0 10px;
width: 10px;
height: 10px;
margin-right: 20px;
border-radius: 50%;
background: #e2e2e2;
transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.why-point-bullet::after {
content: "";
position: absolute;
inset: -4px;
border-radius: 50%;
background: rgba(246,122,33,0.12);
opacity: 0;
transform: scale(0.6);
transition: opacity 0.3s ease, transform 0.3s ease;
}
.why-point:hover .why-point-bullet {
background: #f67a21;
transform: scale(1.15);
box-shadow: 0 0 0 3px rgba(246,122,33,0.12), 0 0 14px rgba(246,122,33,0.45);
}
.why-point:hover .why-point-bullet::after {
opacity: 1;
transform: scale(1);
}
.why-point-text {
font-family: "Manrope", sans-serif;
font-size: 17px;
font-weight: 500;
line-height: 1.5;
color: #17091b;
transition: color 0.3s ease;
}
.why-point:hover .why-point-text {
color: #d8783b;
}
.why-bottom-card {
margin-top: 32px;
padding: 34px 40px;
border: 1px solid rgba(216,120,59,0.22);
border-radius: 24px;
background: linear-gradient(135deg, #fffdfc, #fff8f4);
}
.why-bottom-card span {
display: block;
margin-bottom: 12px;
font-size: 10px;
font-weight: 700;
letter-spacing: 0.28em;
color: #d8783b;
}
.why-bottom-card p {
max-width: 620px;
margin: 0;
font-family: "Manrope", sans-serif;
font-size: 21px;
font-weight: 600;
line-height: 1.45;
letter-spacing: -0.02em;
color: #17091b;
}
@media (max-width: 991px) {

.why-layout {
grid-template-columns: 1fr;
gap: 55px;
}
.why-intro {
max-width: 700px;
}
.why-image {
height: 360px;
}
}
@media (max-width: 767px) {

.why-intro h2 {
font-size: 46px;
}
.why-intro > p {
font-size: 15px;
}
.why-image {
height: 280px;
margin-top: 28px;
border-radius: 18px;
}
.why-point {
min-height: 65px;
padding: 0 20px;
}
.why-point-text {
font-size: 15px;
}
.why-point-bullet {
margin-right: 15px;
}
.why-bottom-card {
padding: 28px 24px;
border-radius: 18px;
}
.why-bottom-card p {
font-size: 18px;
}
}

/* CLIENT SATISFACTION */
.about-client-section {
position: relative;

background: #fffaf6;
overflow: hidden;
}
.about-client-section::before {
content: "";
position: absolute;
top: -180px;
right: -180px;
width: 430px;
height: 430px;
border-radius: 50%;
background: rgba(246,122,33,0.06);
pointer-events: none;
}
.about-client-section::after {
content: "";
position: absolute;
bottom: -220px;
left: -220px;
width: 480px;
height: 480px;
border-radius: 50%;
background: rgba(216,120,59,0.045);
pointer-events: none;
}
.client-satisfaction-layout {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: minmax(350px, 0.8fr) minmax(520px, 1.2fr);
gap: 90px;
align-items: center;
}
.client-satisfaction-intro {
position: relative;
}
.client-satisfaction-intro .about-eyebrow {
margin-bottom: 25px;
}
.client-satisfaction-intro h2 {
margin: 0;
font-family: "Manrope", sans-serif;
font-size: clamp(52px, 5.5vw, 76px);
line-height: 0.96;
font-weight: 800;
letter-spacing: -0.06em;
color: #c84f21;
}
.client-satisfaction-intro h2 span {
display: block;
background: linear-gradient(90deg, #d8783b, #f67a21);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.client-satisfaction-intro > p {
max-width: 480px;
margin: 32px 0 0;
font-size: 16px;
line-height: 1.85;
color: #c66a3b;
}
.client-satisfaction-mark {
display: flex;
align-items: center;
gap: 22px;
width: fit-content;
margin-top: 42px;
padding: 18px 25px;
border-left: 3px solid #f67a21;
background: #fff3e9;
}
.client-satisfaction-mark span {
font-family: "Manrope", sans-serif;
font-size: 28px;
font-weight: 800;
color: #f67a21;
}
.client-satisfaction-mark strong {
font-family: "Manrope", sans-serif;
font-size: 16px;
line-height: 1.3;
color: #c84f21;
}
.client-satisfaction-content {
position: relative;
padding-left: 35px;
}
.client-satisfaction-line {
position: absolute;
top: 24px;
bottom: 95px;
left: 4px;
width: 1px;
background: linear-gradient(180deg, #f67a21, rgba(216,120,59,0.15));
}
.client-satisfaction-item {
position: relative;
display: flex;
align-items: center;
gap: 25px;
min-height: 105px;
margin-bottom: 14px;
padding: 20px 25px;
border: 1px solid rgba(216,120,59,0.2);
border-radius: 16px;
background: #fff;
transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.client-satisfaction-item:hover {
transform: translateX(8px);
border-color: rgba(246,122,33,0.5);
background: #fff8f2;
box-shadow: 0 15px 35px rgba(216,120,59,0.1);
}
.client-satisfaction-dot {
position: absolute;
left: -36px;
width: 10px;
height: 10px;
border-radius: 50%;
background: #e9b18e;
box-shadow: 0 0 0 5px #fffaf6;
transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.client-satisfaction-item:hover .client-satisfaction-dot {
background: #f67a21;
transform: scale(1.2);
box-shadow: 0 0 0 5px #fffaf6, 0 0 14px rgba(246,122,33,0.55);
}
.client-satisfaction-text {
display: flex;
align-items: flex-start;
gap: 22px;
}
.client-satisfaction-text > span {
flex: 0 0 auto;
font-family: "Manrope", sans-serif;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.12em;
color: #e49a70;
padding-top: 4px;
}
.client-satisfaction-text p {
margin: 0;
font-size: 15px;
line-height: 1.7;
color: #c15d2e;
transition: color 0.3s ease;
}
.client-satisfaction-item:hover .client-satisfaction-text p {
color: #a9431d;
}
.client-satisfaction-bottom {
display: flex;
align-items: center;
justify-content: space-between;
gap: 25px;
margin-top: 30px;
padding: 24px 5px 0;
border-top: 1px solid rgba(216,120,59,0.2);
}
.client-satisfaction-bottom span {
font-size: 9px;
font-weight: 700;
letter-spacing: 0.28em;
color: #e49a70;
}
.client-satisfaction-bottom strong {
font-family: "Manrope", sans-serif;
font-size: 15px;
color: #d8783b;
}

/* First About section: stack the editorial image and copy before the desktop grid becomes cramped. */
@media (max-width: 991px) {
   

    .about-profile-intro {
        grid-template-columns: 1fr;
        gap: 52px;
        padding: 0;
    }

    .about-profile-visual,
    .about-profile-copy {
        max-width: 680px;
        width: 100%;
    }

    .about-visual-frame {
        height: clamp(390px, 58vw, 500px);
    }

    .about-profile-copy h1 {
        font-size: clamp(3rem, 7vw, 4.25rem);
    }
}

@media (max-width: 767px) {
    .about-page .container {
        width: min(100% - 32px, 680px);
    }


    .about-profile-intro {
        gap: 36px;
    }

    .about-visual-frame {
        height: min(94vw, 400px);
        border-radius: 0 22px 22px 22px;
    }

    .about-experience-card {
        left: 16px;
        bottom: 16px;
        min-width: 185px;
        padding: 18px 20px;
        animation: none;
    }

    .about-experience-card strong {
        font-size: 36px;
    }

    .about-experience-card span {
        margin-top: 6px;
        font-size: 12px;
    }

    .about-profile-copy h1 {
        font-size: clamp(2.45rem, 10vw, 3.25rem);
        line-height: 1.04;
    }

    .about-lead {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.75;
    }

    .about-profile-actions {
        flex-wrap: wrap;
        margin-top: 28px;
    }
}

/* Preserve two-column layouts on compact laptops without forcing a horizontal scroll. */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .team-layout,
    .quality-layout,
    .vendor-layout,
    .warehouse-layout,
    .why-layout,
    .client-satisfaction-layout {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: clamp(2.5rem, 5vw, 4.5rem);
    }
}

@media (max-width: 991px) {

.client-satisfaction-layout {
grid-template-columns: 1fr;
gap: 60px;
}
.client-satisfaction-intro {
max-width: 700px;
}
.client-satisfaction-content {
max-width: 750px;
}
}
@media (max-width: 767px) {

.client-satisfaction-intro h2 {
font-size: 48px;
}
.client-satisfaction-intro > p {
font-size: 15px;
}
.client-satisfaction-content {
padding-left: 25px;
}
.client-satisfaction-line {
left: 3px;
}
.client-satisfaction-dot {
left: -28px;
}
.client-satisfaction-item {
min-height: auto;
padding: 22px 20px;
}
.client-satisfaction-text {
gap: 14px;
}
.client-satisfaction-text p {
font-size: 14px;
}
.client-satisfaction-bottom {
align-items: flex-start;
flex-direction: column;
gap: 8px;
}
}
/* PRODUCT EXPERTISE */
.about-expertise-section {
position: relative;

background: #f8f8f8;
overflow: hidden;
}
.about-expertise-section::before {
content: "";
position: absolute;
top: -180px;
right: -180px;
width: 420px;
height: 420px;
border: 1px solid rgba(246,122,33,0.08);
border-radius: 50%;
pointer-events: none;
}
.about-expertise-section::after {
content: "";
position: absolute;
bottom: -220px;
left: -220px;
width: 480px;
height: 480px;
border: 1px solid rgba(216,120,59,0.07);
border-radius: 50%;
pointer-events: none;
}
.expertise-heading {
position: relative;
z-index: 2;
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 60px;
margin-bottom: 65px;
}
.expertise-heading .about-eyebrow {
display: inline-block;
margin-bottom: 20px;
}
.expertise-heading h2 {
margin: 0;
font-family: "Manrope", sans-serif;
font-size: clamp(44px, 5vw, 68px);
line-height: 0.98;
font-weight: 800;
letter-spacing: -0.055em;
color: #17091b;
}
.expertise-heading h2 span {
background: linear-gradient(90deg, #d8783b, #f67a21);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.expertise-heading > p {
max-width: 430px;
margin: 0 0 5px;
font-size: 15px;
line-height: 1.8;
color: #626b74;
}
.about-expertise-grid {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 18px;
}
.about-expertise-card {
position: relative;
display: flex;
min-height: 315px;
padding: 32px;
overflow: hidden;
text-decoration: none;
background: #ffffff;
border: 1px solid rgba(23,32,42,0.1);
border-radius:20px;
transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), border-color 0.4s ease, box-shadow 0.45s ease;
}
.about-expertise-card::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(246,122,33,0.045), transparent 45%);
opacity: 0;
transition: opacity 0.4s ease;
}
.about-expertise-card::after {
content: "";
position: absolute;
right: -75px;
top: -75px;
width: 170px;
height: 170px;
border: 1px solid rgba(216,120,59,0.18);
transform: rotate(45deg);
transition: transform 0.55s cubic-bezier(0.22,1,0.36,1), border-color 0.4s ease;
}
.about-expertise-card:hover {
transform: translateY(-8px);
border-color: rgba(246,122,33,0.45);
box-shadow: 0 25px 60px rgba(216,120,59,0.12);
}
.about-expertise-card:hover::before {
opacity: 1;
}
.about-expertise-card:hover::after {
transform: rotate(45deg) scale(1.25);
border-color: rgba(246,122,33,0.42);
}
.expertise-card-number {
position: absolute;
top: 27px;
right: 30px;
font-family: "Manrope", sans-serif;
font-size: 12px;
font-weight: 800;
letter-spacing: 0.12em;
color: #e7a477;
transition: color 0.3s ease;
}
.about-expertise-card:hover .expertise-card-number {
color: #f67a21;
}
.expertise-card-line {
position: absolute;
top: 0;
left: 0;
width: 3px;
height: 0;
background: linear-gradient(180deg, #f67a21, #d8783b);
transition: height 0.45s cubic-bezier(0.22,1,0.36,1);
}
.about-expertise-card:hover .expertise-card-line {
height: 100%;
}
.expertise-card-corner {
position: absolute;
right: 30px;
bottom: 30px;
width: 34px;
height: 34px;
border-right: 1px solid rgba(216,120,59,0.25);
border-bottom: 1px solid rgba(216,120,59,0.25);
transition: width 0.4s ease, height 0.4s ease, border-color 0.4s ease;
}
.about-expertise-card:hover .expertise-card-corner {
width: 48px;
height: 48px;
border-color: #f67a21;
}
.about-expertise-card-content {
position: relative;
z-index: 2;
display: flex;
flex-direction: column;
justify-content: flex-end;
width: 100%;
}
.expertise-card-label {
display: block;
margin-bottom: auto;
font-size: 10px;
font-weight: 800;
letter-spacing: 0.2em;
color: #d8783b;
}
.about-expertise-card h3 {
margin: 90px 0 10px;
font-family: "Manrope", sans-serif;
font-size: 28px;
line-height: 1.08;
font-weight: 700;
letter-spacing: -0.035em;
color: #17091b;
}
.about-expertise-card h3 strong {
font-weight: 800;
background: linear-gradient(90deg, #d8783b, #f67a21);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.about-expertise-card p {
max-width: 300px;
margin: 0;
font-size: 13px;
line-height: 1.7;
color: #626b74;
}
.expertise-card-link {
display: flex;
align-items: center;
gap: 12px;
width: fit-content;
margin-top: 25px;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.04em;
color: #d8783b;
}
.expertise-card-link i {
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
border: 1px solid rgba(216,120,59,0.3);
border-radius: 50%;
font-size: 10px;
transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.about-expertise-card:hover .expertise-card-link i {
transform: translateX(7px);
background: #f67a21;
border-color: #f67a21;
color: #ffffff;
}
@media (max-width: 991px) {

.expertise-heading {
align-items: flex-start;
flex-direction: column;
gap: 25px;
margin-bottom: 50px;
}
.about-expertise-grid {
grid-template-columns: repeat(2,minmax(0,1fr));
}
}
@media (max-width: 767px) {

.expertise-heading {
margin-bottom: 40px;
}
.expertise-heading h2 {
font-size: 45px;
}
.expertise-heading > p {
font-size: 14px;
}
.about-expertise-grid {
grid-template-columns: 1fr;
gap: 15px;
}
.about-expertise-card {
min-height: 285px;
padding: 28px;
}
.about-expertise-card h3 {
font-size: 26px;
}
}
@media (max-width: 480px) {
.expertise-heading h2 {
font-size: 38px;
}
.about-expertise-card {
min-height: 270px;
padding: 24px;
}
.about-expertise-card h3 {
font-size: 24px;
}
.expertise-card-number {
right: 24px;
}
}
