/* ???????????????????????????????????????????????????????
   About Us Page  —  about.css
   Theme: #ff5e14 orange  |  #010e2a navy
??????????????????????????????????????????????????????? */

/* ?? Hero ??????????????????????????????????????????? */
.abt-hero {
    background: linear-gradient(135deg, #010e2a 0%, #0d2252 55%, #010e2a 100%);
    padding: 72px 0 60px;
    position: relative; overflow: hidden;
}
.abt-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 40%, rgba(255,94,20,.12) 0%, transparent 65%);
    pointer-events: none;
}
.abt-hero-inner { position: relative; z-index: 1; text-align: center; }
.abt-hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,94,20,.14); color: #ff7b3d;
    border: 1px solid rgba(255,94,20,.3);
    font-size: 12px; font-weight: 700; letter-spacing: .5px;
    padding: 5px 18px; border-radius: 20px; margin-bottom: 16px;
}
.abt-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 12px;
}
.abt-hero-title span { color: #ff7b3d; }
.abt-hero-sub {
    color: rgba(255,255,255,.6); font-size: 15px;
    max-width: 580px; margin: 0 auto 24px;
}

/* ?? Our Story Section ?????????????????????????????? */
.abt-story {
    padding: 72px 0 60px;
    background: #fff;
}
.abt-story-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,94,20,.08); color: #ff5e14;
    border: 1px solid rgba(255,94,20,.2);
    font-size: 11.5px; font-weight: 800; letter-spacing: .5px;
    padding: 4px 14px; border-radius: 20px; margin-bottom: 14px;
}
.abt-story-title {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 900; color: #0f172a; line-height: 1.2; margin-bottom: 18px;
}
.abt-story-title span { color: #ff5e14; }
.abt-story-lead {
    font-size: 16px; color: #475569; line-height: 1.75;
    font-weight: 500; border-left: 3px solid #ff5e14;
    padding-left: 16px; margin-bottom: 20px;
}
.abt-story-text {
    font-size: 14.5px; color: #64748b; line-height: 1.8; margin-bottom: 14px;
}
.abt-story-img-wrap {
    border-radius: 18px; overflow: hidden;
    box-shadow: 0 12px 44px rgba(0,0,0,.12);
    position: relative;
    cursor: zoom-in;
}
.abt-story-img-wrap img {
    width: 100%; height: 420px;
    object-fit: cover; display: block;
    transition: transform .4s;
}
.abt-story-img-wrap:hover img { transform: scale(1.03); }
/* Zoom Icon Overlay */
.abt-story-img-wrap[data-lightbox]::after {
    content: '\F4DE';
    font-family: "bootstrap-icons";
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff5e14 0%, #ff7b3d 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(255, 94, 20, 0.5);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    z-index: 3;
}
.abt-story-img-wrap[data-lightbox]:hover::after {
    opacity: 1;
    transform: scale(1);
}
.abt-story-img-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: rgba(1,14,42,.8);
    backdrop-filter: blur(8px);
    color: #fff; padding: 10px 18px; border-radius: 12px;
    border: 1px solid rgba(255,255,255,.1);
}
.abt-story-img-badge-num {
    font-size: 1.5rem; font-weight: 900; color: #ff7b3d; line-height: 1;
}
.abt-story-img-badge-label {
    font-size: 11px; color: rgba(255,255,255,.6); font-weight: 600; margin-top: 2px;
}
.abt-story-highlights {
    display: flex; flex-direction: column; gap: 12px; margin-top: 20px;
}
.abt-story-hi {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 13px 16px; border-radius: 10px;
    background: #f8fafc; border-left: 3px solid #ff5e14;
    transition: background .2s;
}
.abt-story-hi:hover { background: #fff7f4; }
.abt-story-hi-icon {
    width: 36px; height: 36px; border-radius: 9px;
    background: linear-gradient(135deg, #ff5e14, #ff7b3d);
    color: #fff; font-size: 16px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.abt-story-hi-text strong {
    display: block; font-size: 13.5px; font-weight: 800; color: #0f172a; margin-bottom: 2px;
}
.abt-story-hi-text span { font-size: 12.5px; color: #64748b; }

/* ?? Stats Counter ?????????????????????????????????? */
.abt-stats {
    background: linear-gradient(135deg, #010e2a 0%, #0d2252 100%);
    padding: 56px 0;
    position: relative; overflow: hidden;
}
.abt-stats::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,94,20,.1) 0%, transparent 70%);
    pointer-events: none;
}
.abt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative; z-index: 1;
}
.abt-stat-item {
    text-align: center; padding: 20px 16px;
    border-right: 1px solid rgba(255,255,255,.1);
}
.abt-stat-item:last-child { border-right: none; }
.abt-stat-icon {
    font-size: 1.8rem; color: rgba(255,94,20,.5);
    display: block; margin-bottom: 8px;
}
.abt-stat-num {
    font-size: 2.6rem; font-weight: 900; color: #fff; line-height: 1;
    margin-bottom: 4px;
}
.abt-stat-num span { color: #ff7b3d; }
.abt-stat-label {
    font-size: 12px; color: rgba(255,255,255,.5);
    font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
}

/* ?? Core Values ???????????????????????????????????? */
.abt-values {
    padding: 72px 0 60px;
    background: #f8fafc;
}
.abt-section-head {
    text-align: center; margin-bottom: 48px;
}
.abt-section-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,94,20,.08); color: #ff5e14;
    border: 1px solid rgba(255,94,20,.2);
    font-size: 11.5px; font-weight: 800; letter-spacing: .5px;
    padding: 4px 14px; border-radius: 20px; margin-bottom: 10px;
}
.abt-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900; color: #0f172a; margin-bottom: 8px;
}
.abt-section-sub {
    font-size: 14.5px; color: #64748b; max-width: 560px; margin: 0 auto;
}

.abt-value-card {
    background: #fff; border-radius: 16px;
    padding: 28px 24px; height: 100%;
    box-shadow: 0 2px 14px rgba(0,0,0,.06);
    transition: transform .28s, box-shadow .28s;
    border-top: 3px solid transparent;
    position: relative; overflow: hidden;
}
.abt-value-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(135deg, #ff5e14, #ff7b3d);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s;
}
.abt-value-card:hover::before { transform: scaleX(1); }
.abt-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,0,0,.1);
}
.abt-value-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,94,20,.12), rgba(255,123,61,.12));
    color: #ff5e14; font-size: 24px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    transition: background .3s, color .3s;
}
.abt-value-card:hover .abt-value-icon {
    background: linear-gradient(135deg, #ff5e14, #ff7b3d);
    color: #fff;
}
.abt-value-title {
    font-size: 15.5px; font-weight: 800; color: #0f172a;
    margin-bottom: 8px;
}
.abt-value-text {
    font-size: 13.5px; color: #64748b; line-height: 1.65;
}

/* ?? Why Choose Us ?????????????????????????????????? */
.abt-why {
    padding: 72px 0 60px;
    background: #fff;
}
.abt-why-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px; border-radius: 12px;
    transition: background .2s;
    margin-bottom: 4px;
}
.abt-why-item:hover { background: #fff7f4; }
.abt-why-num {
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, #ff5e14, #ff7b3d);
    color: #fff; font-size: 13px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
}
.abt-why-content strong {
    display: block; font-size: 14px; font-weight: 800; color: #0f172a; margin-bottom: 3px;
}
.abt-why-content span { font-size: 13px; color: #64748b; line-height: 1.6; }

.abt-why-img-wrap {
    position: relative; border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    cursor: zoom-in;
}
.abt-why-img-wrap img {
    width: 100%; height: 100%; min-height: 380px;
    object-fit: cover; display: block;
    transition: transform .4s;
}
.abt-why-img-wrap:hover img {
    transform: scale(1.05);
}
.abt-why-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(1,14,42,.7) 0%, transparent 55%);
}
/* Zoom Icon Overlay */
.abt-why-img-wrap[data-lightbox]::before {
    content: '\F4DE';
    font-family: "bootstrap-icons";
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff5e14 0%, #ff7b3d 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(255, 94, 20, 0.5);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    z-index: 3;
}

.abt-why-img-wrap[data-lightbox]:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* ?? Manufacturing Process Timeline ???????????????? */
.abt-process {
    padding: 72px 0 60px;
    background: #f8fafc;
}
.abt-timeline {
    position: relative;
    display: flex; flex-direction: column; gap: 0;
    max-width: 740px; margin: 0 auto;
}
.abt-timeline::before {
    content: '';
    position: absolute; left: 28px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(to bottom, #ff5e14, rgba(255,94,20,.1));
}
.abt-tl-item {
    display: flex; gap: 24px; align-items: flex-start;
    padding: 0 0 32px 0;
    position: relative;
}
.abt-tl-item:last-child { padding-bottom: 0; }
.abt-tl-dot {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #ff5e14, #ff7b3d);
    color: #fff; font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; position: relative; z-index: 1;
    box-shadow: 0 4px 14px rgba(255,94,20,.35);
}
.abt-tl-content {
    flex: 1; background: #fff; border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    border-left: 3px solid #ff5e14;
    transition: transform .2s, box-shadow .2s;
}
.abt-tl-content:hover { transform: translateX(4px); box-shadow: 0 6px 20px rgba(0,0,0,.09); }
.abt-tl-step {
    font-size: 11px; color: #ff5e14; font-weight: 800;
    letter-spacing: .8px; text-transform: uppercase; margin-bottom: 5px;
}
.abt-tl-title {
    font-size: 15px; font-weight: 800; color: #0f172a; margin-bottom: 5px;
}
.abt-tl-text { font-size: 13px; color: #64748b; line-height: 1.65; margin: 0; }

/* ?? Contact CTA ???????????????????????????????????? */
.abt-cta {
    background: linear-gradient(135deg, #010e2a 0%, #0d2252 100%);
    padding: 64px 0;
    text-align: center;
    position: relative; overflow: hidden;
}
.abt-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,94,20,.15) 0%, transparent 70%);
    pointer-events: none;
}
.abt-cta-inner { position: relative; z-index: 1; }
.abt-cta-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900; color: #fff; margin-bottom: 12px;
}
.abt-cta-title span { color: #ff7b3d; }
.abt-cta-sub {
    font-size: 15px; color: rgba(255,255,255,.6);
    max-width: 520px; margin: 0 auto 28px;
}
.abt-cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.abt-btn-primary {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 12px 28px; border-radius: 10px;
    background: linear-gradient(135deg, #ff5e14, #ff7b3d);
    color: #fff; font-size: 14px; font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(255,94,20,.35);
    transition: all .22s;
}
.abt-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,94,20,.45); color: #fff; }
.abt-btn-outline {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 12px 28px; border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.07);
    color: #fff; font-size: 14px; font-weight: 700;
    text-decoration: none; transition: all .22s;
    backdrop-filter: blur(4px);
}
.abt-btn-outline:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); color: #fff; }
/* ?? Responsive ????????????????????????????????????? */
@media (max-width: 767.98px) {
    .abt-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .abt-stat-item:nth-child(2) { border-right: none; }
    .abt-stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.1); }
    .abt-stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); border-right: none; }
}
@media (max-width: 575.98px) {
    .abt-hero { padding: 48px 0 40px; }
    .abt-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .abt-timeline::before { left: 24px; }
    .abt-tl-dot { width: 48px; height: 48px; font-size: 17px; }
}
