:root {
    --navy: #0a1e3f;
    --navy-2: #0f2a5a;
    --steel: #5a6b7e;
    --steel-light: #e8ecf1;
    --orange: #ff7a00;
    --orange-2: #ff9628;
    --yellow: #ffcc00;
    --white: #fff;
    --dark: #06142e;
    --text: #1a2540;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    background: #fff;
    line-height: 1.6;
    padding-top: 98px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    letter-spacing: .5px;
    color: var(--navy);
}

.section-tag {
    display: inline-block;
    color: var(--orange);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.section-title {
    font-size: 46px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-title span {
    color: var(--orange);
}

section {
    padding: 90px 0;
    position: relative;
}

.btn-orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    border-radius: 2px;
    transition: .3s;
    box-shadow: 0 8px 24px rgba(255, 122, 0, .35);
}

.btn-orange:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(10, 30, 63, .4);
}

.btn-outline-light-c {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .6);
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    border-radius: 2px;
    transition: .3s;
}

.btn-outline-light-c:hover {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
}

.btn-navy {
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    border-radius: 2px;
    transition: .3s;
}

.btn-navy:hover {
    background: var(--orange);
    color: #fff;
}

/* ============================
   TOPBAR
   ============================ */
.topbar {
    background: var(--dark);
    color: #cfd6e1;
    font-size: 13px;
    padding: 9px 0;
}

.topbar a {
    color: #cfd6e1;
    text-decoration: none;
    margin-right: 22px;
}

.topbar a:hover {
    color: var(--orange);
}

.topbar .social a {
    margin-left: 14px;
    margin-right: 0;
}

/* ============================
   CERTIFICATION ROW
   ============================ */
.cert-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    background: #f4f7fb;
    border-radius: 50px;
    transition: .3s;
    text-align: center;
}

.cert-item:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-3px);
}

.cert-item:hover h6,
.cert-item:hover small {
    color: #fff;
}

.cert-item h6 {
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: .5px;
}

.cert-item small {
    display: block;
    color: var(--steel);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cert-ic {
    width: 46px;
    height: 46px;
    background: #fff;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    transition: .3s;
    box-shadow: 0 4px 12px rgba(10, 30, 63, .08);
}

.cert-item:hover .cert-ic {
    border-color: var(--orange);
    transform: rotate(10deg);
}

/* ============================
   BRAND NAME IMG
   ============================ */
.brand-name img {
    width: 100%;
    height: auto;
}

/* ============================
   NAVBAR
   ============================ */
.navbar-custom {
    background: #fff;
    padding: 14px 0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
    transition: .3s;
    z-index: 1030;
}

.navbar-custom.scrolled {
    padding: 8px 0;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .12);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: var(--navy) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 22px;
    border-radius: 4px;
    position: relative;
}

.brand-mark::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    background: var(--orange);
    border-radius: 2px;
}

.brand-text small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--steel);
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
}

.navbar-nav .nav-link {
    color: var(--navy) !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 10px 16px !important;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--orange) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: .3s;
    transform-origin: left;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .12);
    border-top: 3px solid var(--orange);
    padding: 10px 0;
    border-radius: 0;
}

.dropdown-item {
    padding: 10px 22px;
    font-weight: 500;
    font-size: 14px;
    color: var(--navy);
}

.dropdown-item:hover {
    background: var(--steel-light);
    color: var(--orange);
}

/* ============================
   HERO
   ============================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(120deg, rgba(6, 20, 46, .92) 0%, rgb(10 30 63 / 55%) 50%, rgba(10, 30, 63, .6) 100%), url(../image/hero-bg.webp) center / cover;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255, 122, 0, .18), transparent 50%);
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 122, 0, .15);
    border-left: 3px solid var(--orange);
    color: var(--orange);
    padding: 8px 18px;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 60px;
    color: #fff;
    line-height: 1;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--orange);
    display: inline-block;
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--orange);
    opacity: .3;
}
.btx{
    font-size: 20px;
    font-weight: bold;
    color: #ff7a00;
}
.hero p.lead {
    font-size: 18px;
    color: #dde4ef;
    text-transform: capitalize;
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-stat {
    border-left: 3px solid var(--orange);
    padding-left: 18px;
}

.hero-stat h3 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 2px;
}

.hero-stat p {
    color: #aab4c5;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    font-weight: 600;
}

.scroll-down {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    animation: bounce 2s infinite;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, -12px);
    }
}

/* ============================
   BRAND STRIP / MARQUEE
   ============================ */
.brand-strip {
    background: var(--navy);
    padding: 24px 0;
    color: #fff;
    border-top: 4px solid var(--orange);
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.strip-item i {
    color: var(--orange);
    font-size: 32px;
}

.strip-item h5 {
    color: #fff;
    margin: 0;
    font-size: 17px;
    text-transform: uppercase;
}

.strip-item small {
    color: #aab4c5;
    font-size: 12px;
    letter-spacing: 1px;
}

/* ============================
   ABOUT
   ============================ */
.about-img-wrap {
    position: relative;
    overflow: hidden;
    height: 680px;
    background-image: url(../image/about.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}

.about-img-wrap img {
    border-radius: 4px;
    width: auto;
}

.about-img-wrap .badge-years {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    padding: 24px 30px;
    border-radius: 4px;
    box-shadow: 0 18px 40px rgba(255, 122, 0, .4);
}

.about-img-wrap .badge-years h3 {
    color: #fff;
    font-size: 56px;
    line-height: 1;
    margin: 0;
}

.about-img-wrap .badge-years p {
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 600;
}

.about-features {
    margin-top: 28px;
}
.nn-icon{
    width: 100px;
    border-radius: 50px;
}
.companies-img {
    position: relative;
    overflow: hidden;
    height: 280px;
    margin-top: 30px;
    background-image: url(../image/about-img.webp);
    background-size: 80%;
    background-position: center center;
    background-repeat: no-repeat;
}
.align-items-start{
    align-items: start;
}
.about-features .feat {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}

.about-features .feat i {
    width: 48px;
    height: 48px;
    background: var(--steel-light);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 20px;
    flex-shrink: 0;
}

.about-features .feat h5 {
    margin: 0 0 4px;
    font-size: 18px;
    text-transform: uppercase;
}

.about-features .feat p {
    margin: 0;
    color: var(--steel);
    font-size: 14px;
}

/* ============================
   COMPANIES
   ============================ */
.companies-section {
    background: linear-gradient(180deg, #f4f7fb 0%, #e8ecf1 100%);
    position: relative;
}

.companies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--orange) 50%, var(--navy) 100%);
}

.company-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: .4s;
    height: 100%;
    border: 1px solid #e1e6ee;
    position: relative;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--orange);
    transition: .4s;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(10, 30, 63, .18);
}

.company-card:hover::before {
    width: 100%;
}

.company-card .card-head {
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #fff;
    padding: 28px;
    position: relative;
    overflow: hidden;
    height: 190px;
    align-content: center;
}

.company-card .card-head::after {
    content: '';
    position: absolute;
    right: -30px;
    top: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 122, 0, .18);
    border-radius: 50%;
}

.company-logo-box {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 28px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.company-card h4 {
    color: #fff;
    font-size: 22px;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    line-height: 1.2;
}

.company-card .role-tag {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 10px;
    margin-top: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    margin-top: 45px;
}

.company-card .card-body {
    padding: 26px;
}

.company-card .card-body p {
    color: var(--steel);
    font-size: 14px;
    margin-bottom: 18px;

}

.company-card ul.feat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.company-card ul.feat-list li {
    font-size: 13px;
    color: var(--navy);
    padding: 6px 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-card ul.feat-list li i {
    color: var(--orange);
    font-size: 12px;
}

/* ============================
   EXPERTISE / PRODUCTS
   ============================ */
.expertise-section {
    background: #fff;
}

.product-card {
    text-align: center;
    padding: 32px 22px;
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 4px;
    transition: .35s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    transform: translateY(100%);
    transition: .45s;
    z-index: 0;
}

.product-card>* {
    position: relative;
    z-index: 1;
}

.product-card:hover::before {
    transform: translateY(0);
}

.product-card:hover h5,
.product-card:hover p {
    color: #fff;
}

.product-card:hover .pc-icon {
    background: var(--orange);
    color: #fff;
}

.pc-icon {
    width: 74px;
    height: 74px;
    /* background: var(--steel-light); */
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 50%;
    margin: 0 auto 18px;
    transition: .35s;
}

.product-card h5 {
    font-size: 17px;
    margin-bottom: 8px;
    text-transform: uppercase;
    transition: .3s;
}

.product-card p {
    font-size: 13px;
    color: var(--steel);
    margin: 0;
    transition: .3s;
    text-transform: capitalize;
}

/* ============================
   INDUSTRIES SERVED
   ============================ */
.industries-section {
    background: linear-gradient(135deg, #f4f7fb 0%, #e8ecf1 100%);
    position: relative;
}

.industry-card {
    background: #fff;
    padding: 30px 24px;
    border-radius: 4px;
    text-align: center;
    transition: .35s;
    height: 100%;
    border: 1px solid #e1e6ee;
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: .35s;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 30, 63, .14);
}

.industry-card:hover::after {
    transform: scaleX(1);
}

.industry-card .ind-ic {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    border-radius: 50%;
    margin: 0 auto 18px;
    position: relative;
}

.industry-card .ind-ic::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px dashed rgba(255, 122, 0, .4);
    border-radius: 50%;
}

.industry-card h5 {
    font-size: 17px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.industry-card p {
    font-size: 13px;
    color: var(--steel);
    margin: 0;
}

/* ============================
   BRANDS WE WORK WITH
   ============================ */
.brands-section {
    background: #fff;
    padding: 80px 0;
}

.brand-logo-box {
    height: auto;
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    transition: .3s;
    position: relative;
    overflow: hidden;
}

.brand-logo-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 122, 0, .06), transparent);
    opacity: 0;
    transition: .3s;
}

.brand-logo-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(10, 30, 63, .1);
    border-color: var(--orange);
}

.brand-logo-box:hover::before {
    opacity: 1;
}

.brand-logo-box .brand-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.brand-logo-box .brand-name small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 10px;
    color: var(--steel);
    letter-spacing: 2px;
    margin-top: 2px;
}

.brand-logo-box .brand-name i {
    color: var(--orange);
    font-size: 30px;
    display: block;
    margin-bottom: 6px;
}

/* ============================
   COUNTERS
   ============================ */
.counters-section {
    background: linear-gradient(135deg, rgba(6, 20, 46, .96), rgba(10, 30, 63, .92)), url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1920&q=80') center/cover fixed;
    color: #fff;
    padding: 80px 0;
}

.counter-box {
    text-align: center;
    padding: 20px;
}

.counter-box .ic {
    width: 74px;
    height: 74px;
    background: rgba(255, 122, 0, .15);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    margin: 0 auto 18px;
    border: 2px solid rgba(255, 122, 0, .3);
}

.counter-box h2 {
    color: #fff;
    font-size: 54px;
    margin: 0;
    line-height: 1;
}

.counter-box p {
    color: #bcc5d4;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 600;
}

/* ============================
   QUALITY
   ============================ */
.quality-section {
    background: #f4f7fb;
}

.quality-card {
    background: #fff;
    padding: 32px 28px;
    border-radius: 4px;
    height: 100%;
    border-bottom: 4px solid transparent;
    transition: .3s;
    box-shadow: 0 4px 14px rgba(10, 30, 63, .05);
}

.quality-card:hover {
    border-bottom-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(10, 30, 63, .1);
}

.quality-card .num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 48px;
    color: var(--steel-light);
    line-height: 1;
    margin-bottom: 8px;
}

.quality-card h5 {
    font-size: 19px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.quality-card p {
    color: var(--steel);
    font-size: 14px;
    margin: 0;
}

/* ============================
   EXPORT
   ============================ */
.export-section {
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #fff;
    position: relative;
    overflow: hidden;
}

.export-section::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 122, 0, .18), transparent 70%);
}

.export-section .section-title {
    color: #fff;
}

.export-section .section-title span {
    color: var(--orange);
}

.export-section p {
    color: #cfd6e1;
}

.export-feature {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.export-feature .ic {
    width: 54px;
    height: 54px;
    background: rgba(255, 122, 0, .18);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 22px;
    flex-shrink: 0;
}

.export-feature h5 {
    color: #fff;
    margin: 0 0 4px;
    text-transform: uppercase;
    font-size: 17px;
}

.export-feature p {
    margin: 0;
    font-size: 14px;
    color: #aab4c5;
}

.map-wrap {
    position: relative;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 24px;
    border-radius: 4px;
}

.map-wrap img {
    width: 100%;
    border-radius: 4px;
    filter: brightness(.85) contrast(1.1);
}

/* ============================
   AWARDS
   ============================ */
.awards-section {
    background: #fff;
    position: relative;
}

.awards-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 122, 0, .06), transparent 70%);
}

.award-card {
    background: linear-gradient(135deg, #fff 0%, #f4f7fb 100%);
    padding: 34px 26px;
    border-radius: 4px;
    text-align: center;
    transition: .4s;
    height: 100%;
    border: 1px solid #e1e6ee;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(10, 30, 63, .16);
    border-color: var(--orange);
}

.award-card .award-ic {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    border-radius: 50%;
    margin: 0 auto 18px;
    box-shadow: 0 14px 30px rgba(255, 122, 0, .35);
    position: relative;
}

.award-card .award-ic::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(255, 122, 0, .3);
    border-radius: 50%;
}

.award-card .award-year {
    display: inline-block;
    background: var(--navy);
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.award-card h5 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.2;
}

.award-card p {
    font-size: 13px;
    color: var(--steel);
    margin: 0;
}

/* ============================
   EXPO PARTICIPATION
   ============================ */
.expo-section {
    background: linear-gradient(135deg, #06142e 0%, #0a1e3f 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.expo-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath fill='%23ff7a00' fill-opacity='.04' d='M0 0h40v40H0zm40 40h40v40H40z'/%3E%3C/svg%3E");
    opacity: .6;
}

.expo-section::after {
    content: '';
    position: absolute;
    right: -150px;
    bottom: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 122, 0, .15), transparent 70%);
}

.expo-section .section-title {
    color: #fff;
}

.expo-section .section-title span {
    color: var(--orange);
}

.expo-section .container {
    position: relative;
    z-index: 2;
}

.expo-intro {
    color: #cfd6e1;
    font-size: 16px;
    max-width: 780px;
    margin: 0 auto;
}

.expo-card {
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 4px;
    padding: 28px;
    height: 100%;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.expo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--orange);
    transition: .35s;
}

.expo-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 122, 0, .4);
}

.expo-card:hover::before {
    height: 100%;
}

.expo-card .expo-img {
    position: relative;
    height: 200px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.expo-card .expo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.expo-card:hover .expo-img img {
    transform: scale(1.08);
}

.expo-card .expo-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 20, 46, .7), transparent 50%);
}

.expo-card .expo-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    text-transform: uppercase;
    z-index: 2;
}

.expo-card .expo-location {
    position: absolute;
    bottom: 14px;
    left: 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.expo-card .expo-location i {
    color: var(--orange);
}

.expo-card h5 {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
}

.expo-card .expo-date {
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.expo-card p {
    color: #aab4c5;
    font-size: 14px;
    margin: 0 0 16px;
    text-transform: capitalize;
}

.btn-gallery {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    border-radius: 2px;
    transition: .3s;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 122, 0, .3);
}

.btn-gallery:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 30, 63, .4);
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-section {
    background: #f4f7fb;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '\f10e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 340px;
    color: rgba(10, 30, 63, .04);
    top: 50px;
    right: 40px;
    line-height: 1;
}

.testi-card {
    background: #fff;
    padding: 38px 32px;
    border-radius: 4px;
    height: 100%;
    position: relative;
    border: 1px solid #e1e6ee;
    transition: .35s;
}

.testi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(10, 30, 63, .14);
    border-color: var(--orange);
}

.testi-card .quote-ic {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--orange);
    font-size: 38px;
    opacity: .25;
}

.testi-card .stars {
    color: var(--yellow);
    font-size: 15px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testi-card .testi-text {
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    min-height: 170px;
}

.testi-card .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #e8ecf1;
}

.testi-card .testi-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    font-family: 'Barlow Condensed', sans-serif;
    flex-shrink: 0;
}

.testi-card .testi-author h6 {
    margin: 0;
    font-size: 17px;
    text-transform: uppercase;
    line-height: 1.2;
}

.testi-card .testi-author p {
    margin: 0;
    font-size: 12px;
    color: var(--steel);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testi-card .testi-author p span {
    color: var(--orange);
}

.testimonial-swiper {
    padding: 20px 4px 60px !important;
}

.testimonial-swiper .swiper-pagination-bullet {
    background: var(--navy);
    opacity: .3;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--orange);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* ============================
   CERTIFICATIONS BAR
   ============================ */
.cert-section {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid #e8ecf1;
    border-bottom: 1px solid #e8ecf1;
}

/* ============================
   DIRECTOR
   ============================ */
.director-section {
    background: #fff;
}

.director-img-wrap {
    position: relative;
}

.director-img-wrap img {
    width: 100%;
    border-radius: 4px;
}

.director-img-wrap .quote-mark {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    border-radius: 4px;
    font-family: Georgia, serif;
    line-height: 1;
}

.director-content blockquote {
    font-size: 18px;
    color: var(--steel);
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0;
    padding-left: 20px;
    border-left: 3px solid var(--orange);
}

.director-content .sign {
    margin-top: 20px;
}

.director-content .sign h5 {
    font-size: 22px;
    margin: 0;
    text-transform: uppercase;
}

.director-content .sign p {
    color: var(--orange);
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================
   CTA
   ============================ */
.cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath fill='%23ffffff' fill-opacity='.06' d='M0 0h30v30H0zm30 30h30v30H30z'/%3E%3C/svg%3E");
}

.cta-section h2 {
    color: #fff;
    font-size: 42px;
    text-transform: uppercase;
    margin: 0;
}

.cta-section .btn-navy {
    background: #fff;
    color: var(--orange);
    padding: 16px 36px;
    font-size: 14px;
}

.cta-section .btn-navy:hover {
    background: var(--navy);
    color: #fff;
}

/* ============================
   NEWSLETTER
   ============================ */
.newsletter-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    padding: 60px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 122, 0, .15), transparent 70%);
}

.newsletter-box .section-tag {
    color: var(--orange);
}

.newsletter-box h3 {
    color: #fff;
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.newsletter-box p {
    color: #aab4c5;
    margin: 0;
    font-size: 15px;
}

.news-form {
    display: flex;
    gap: 0;
    margin-top: 18px;
}

.news-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: #fff;
    color: var(--navy);
    font-size: 14px;
    border-radius: 2px 0 0 2px;
    outline: none;
}

.news-form button {
    background: var(--orange);
    border: none;
    color: #fff;
    padding: 0 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    border-radius: 0 2px 2px 0;
    transition: .3s;
}

.news-form button:hover {
    background: #fff;
    color: var(--orange);
}

/* ============================
   FOOTER
   ============================ */
footer {
    background: var(--dark);
    color: #aab4c5;
    padding-top: 80px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

footer h5 {
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

footer a {
    color: #aab4c5;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    font-size: 14px;
    transition: .2s;
}

footer a:hover {
    color: var(--orange);
    padding-left: 6px;
}

footer .brand-text {
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

footer .social-ic a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .06);
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    border-radius: 4px;
    color: #fff;
    padding: 0;
}

footer .social-ic a:hover {
    background: var(--orange);
    padding-left: 0;
}

footer p {
    font-size: 14px;
    color: #aab4c5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 22px 0;
    margin-top: 60px;
    font-size: 13px;
}

.footer-bottom .pay-ic {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.footer-bottom .pay-ic i {
    color: #aab4c5;
    font-size: 22px;
    transition: .3s;
}

.footer-bottom .pay-ic i:hover {
    color: var(--orange);
}

.contact-li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
    font-size: 14px;
}

.contact-li i {
    color: var(--orange);
    margin-top: 4px;
}

.footer-cta-box {
    background: linear-gradient(135deg, rgba(255, 122, 0, .1), transparent);
    border-left: 3px solid var(--orange);
    padding: 16px;
    border-radius: 0 4px 4px 0;
    margin-top: 20px;
}

.footer-cta-box h6 {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    margin: 0 0 4px;
    padding: 0;
    border: none;
    display: block;
}

.footer-cta-box p {
    margin: 0;
    font-size: 13px;
    color: #aab4c5;
}

.footer-cta-box a {
    color: var(--orange);
    display: inline-block;
    padding: 0;
    font-weight: 700;
    margin-top: 6px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-cta-box a:hover {
    padding-left: 6px;
}

.footer-cert-strip {
    background: rgba(255, 255, 255, .03);
    padding: 24px;
    border-radius: 4px;
    margin-top: 30px;
}

.footer-cert-strip .fc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cfd6e1;
    font-size: 13px;
    justify-content: center;
}

.footer-cert-strip .fc-item i {
    color: var(--orange);
    font-size: 24px;
}

/* ============================
   WHATSAPP FLOAT
   ============================ */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
    z-index: 999;
    text-decoration: none;
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.wa-float:hover {
    background: #1da851;
    color: #fff;
}

/* ============================
   LIGHTBOX GALLERY
   ============================ */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .92);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    z-index: 10;
    opacity: .7;
    transition: .3s;
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    bottom: 14px;
    top: auto;
    transform: none;
    background: rgba(255, 255, 255, .15);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    opacity: .8;
    backdrop-filter: blur(4px);
}

.lightbox-nav:hover {
    background: var(--orange);
    opacity: 1;
}

.lightbox-prev {
    left: 50%;
    margin-left: -52px;
}

.lightbox-next {
    left: 50%;
    margin-left: 12px;
}

.lightbox-content {
    max-width: 95vw;
    max-height: 90vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    cursor: default;
    pointer-events: auto;
    width: 100%;
}

/* Main image - 70% */
.lightbox-image-wrap {
    flex: 0 0 70%;
    max-width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    position: relative;
}

.lightbox-image-wrap img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    transition: opacity .35s ease;
}

.lightbox-image-wrap img.loading {
    opacity: 0;
}

/* Thumbnail grid - 30% with 4 columns */
.lightbox-thumbs {
    flex: 0 0 28%;
    max-width: 28%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 4px;
    max-height: 80vh;
    overflow-y: auto;
    align-content: start;
    scrollbar-width: thin;
    scrollbar-color: var(--orange) rgba(255,255,255,.1);
}

.lightbox-thumbs::-webkit-scrollbar {
    width: 5px;
}

.lightbox-thumbs::-webkit-scrollbar-track {
    background: rgba(255,255,255,.08);
    border-radius: 4px;
}

.lightbox-thumbs::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 4px;
}

.lightbox-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    opacity: .5;
    border: 1px solid transparent;
    transition: .3s;
}

.lightbox-thumb:hover {
    opacity: .8;
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--orange);
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Lightbox responsive */
@media (max-width: 1199.98px) {
    .lightbox-image-wrap {
        height: 70vh;
    }
    .lightbox-image-wrap img {
        max-height: 70vh;
    }
    .lightbox-thumbs {
        max-height: 70vh;
    }
}

@media (max-width: 991.98px) {
    .lightbox-content {
        flex-direction: column;
        gap: 10px;
        max-width: 98vw;
    }
    .lightbox-image-wrap {
        flex: none;
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 0;
    }
    .lightbox-image-wrap img {
        max-height: 55vh;
        max-width: 100%;
        width: auto;
    }
    .lightbox-nav {
        width: 36px;
        height: 36px;
        font-size: 14px;
        bottom: 10px;
    }
    .lightbox-prev {
        left: calc(50% - 46px);
        margin-left: 0;
    }
    .lightbox-next {
        left: calc(50% + 10px);
        margin-left: 0;
    }
    .lightbox-thumbs {
        flex: none;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        gap: 6px;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 4px 8px 8px;
        direction: ltr;
    }
    .lightbox-thumbs::-webkit-scrollbar {
        height: 4px;
    }
    .lightbox-thumb {
        flex: 0 0 auto;
        width: 55px;
        height: 42px;
        aspect-ratio: auto;
        min-width: 0;
        border-width: 1px;
    }
}

@media (max-width: 767.98px) {
    .lightbox-overlay {
        padding: 10px;
    }
    .lightbox-close {
        font-size: 28px;
        top: 10px;
        right: 14px;
    }
    .lightbox-image-wrap img {
        max-height: 45vh;
    }
    .lightbox-nav {
        width: 32px;
        height: 32px;
        font-size: 12px;
        bottom: 8px;
    }
    .lightbox-prev {
        left: calc(50% - 40px);
    }
    .lightbox-next {
        left: calc(50% + 8px);
    }
    .lightbox-thumb {
        width: 48px;
        height: 36px;
        border-width: 1px;
    }
}

@media (max-width: 575.98px) {
    .lightbox-image-wrap img {
        max-height: 38vh;
    }
    .lightbox-thumb {
        width: 40px;
        height: 32px;
        border-width: 1px;
    }
    .lightbox-thumbs {
        gap: 4px;
        padding: 2px 6px 6px;
    }
}

/* =============================================
   =========== RESPONSIVE MEDIA QUERIES ===========
   ============================================= */

/* ----- Large devices (1200px and down) ----- */
@media (max-width: 1199.98px) {
    .hero h1 {
        font-size: 68px;
    }

    .section-title {
        font-size: 40px;
    }

    .hero-stat h3 {
        font-size: 36px;
    }

    .counter-box h2 {
        font-size: 46px;
    }
}

/* ----- Medium-large devices (1024px and down) ----- */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 58px;
    }

    .section-title {
        font-size: 36px;
    }

    .cta-section h2 {
        font-size: 36px;
    }

    .newsletter-box h3 {
        font-size: 28px;
    }
}

/* ----- Tablets (991px and down) ----- */
@media (max-width: 991.98px) {
    .hero h1 {
        font-size: 50px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-img-wrap .badge-years {
        left: 10px;
        bottom: -20px;
        padding: 18px 22px;
    }

    .about-img-wrap .badge-years h3 {
        font-size: 42px;
    }

    .contact-info-head {
        display: none;
    }

    .news-form {
        flex-direction: column;
        gap: 10px;
    }

    .news-form input,
    .news-form button {
        border-radius: 2px;
        width: 100%;
        padding: 14px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-stats {
        gap: 25px;
    }

    .hero-stat h3 {
        font-size: 32px;
    }

    .hero p.lead {
        font-size: 17px;
    }

    section {
        padding: 70px 0;
    }

    .strip-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .cert-row {
        gap: 20px;
    }

    .counter-box h2 {
        font-size: 42px;
    }

    .testi-card .testi-text {
        min-height: auto;
    }

    .testimonials-section::before {
        font-size: 200px;
        top: 20px;
        right: 10px;
    }

    .director-img-wrap .quote-mark {
        width: 60px;
        height: 60px;
        font-size: 34px;
        top: -10px;
        left: -10px;
    }

    .footer-cert-strip .fc-item {
        font-size: 12px;
    }

    /* Navbar mobile */
    .navbar-custom {
        padding: 10px 0;
    }

    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        text-align: center;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .btn-orange {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    .company-card .card-body p {
        min-height: auto;
    }

    .brand-logo-box .brand-name {
        font-size: 18px;
    }

    .expo-card .expo-img {
        height: 180px;
    }

    .export-section .map-wrap {
        margin-top: 30px;
    }
}

/* ----- Small tablets / landscape phones (768px and down) ----- */
@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 38px;
    }

    .hero-tag {
        font-size: 11px;
        padding: 6px 14px;
    }

    .hero p.lead {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-stats {
        gap: 20px;
        margin-top: 35px;
    }

    .hero-stat {
        padding-left: 12px;
    }

    .hero-stat h3 {
        font-size: 28px;
    }

    .hero-stat p {
        font-size: 11px;
    }

    .scroll-down {
        display: none;
    }

    .section-title {
        font-size: 28px;
    }

    section {
        padding: 60px 0;
    }

    .btn-orange,
    .btn-outline-light-c,
    .btn-navy {
        padding: 12px 24px;
        font-size: 12px;
    }

    .about-img-wrap img {
        width: 100%;
    }

    .about-img-wrap .badge-years {
        padding: 14px 18px;
    }

    .about-img-wrap .badge-years h3 {
        font-size: 36px;
    }

    .about-img-wrap .badge-years p {
        font-size: 10px;
    }

    .cert-row {
        /* flex-direction: column; */
        gap: 12px;
    }

    .cert-item {
        width: auto;
        justify-content: left;
        padding: 12px 16px;
    }

    .counter-box {
        padding: 15px;
    }

    .counter-box h2 {
        font-size: 38px;
    }

    .counter-box .ic {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .quality-card {
        padding: 24px 20px;
    }

    .award-card {
        padding: 28px 20px;
    }

    .award-card .award-ic {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .expo-card {
        padding: 22px;
    }

    .expo-card .expo-img {
        height: 160px;
    }

    .expo-card h5 {
        font-size: 18px;
    }

    .brand-strip {
        padding: 20px 0;
    }

    .strip-item {
        gap: 10px;
    }

    .strip-item i {
        font-size: 26px;
    }

    .strip-item h5 {
        font-size: 15px;
    }

    .testi-card {
        padding: 30px 24px;
    }

    .testi-card .testi-text {
        font-size: 14px;
        min-height: auto;
    }

    .testimonials-section::before {
        display: none;
    }

    .newsletter-box h3 {
        font-size: 26px;
    }

    .cta-section h2 {
        font-size: 30px;
    }

    .cta-section {
        padding: 50px 0;
    }

    footer {
        padding-top: 60px;
    }

    .footer-bottom {
        margin-top: 40px;
        text-align: center;
    }

    .footer-bottom .pay-ic {
        justify-content: center;
        width: 100%;
    }

    .footer-cert-strip {
        padding: 18px;
    }

    .footer-cert-strip .fc-item {
        justify-content: flex-start;
    }

    .director-img-wrap .quote-mark {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .director-content blockquote {
        font-size: 16px;
    }

    .brand-logo-box {
        padding: 12px;
    }

    .brand-logo-box .brand-name {
        font-size: 16px;
    }

    .brand-logo-box .brand-name small {
        font-size: 9px;
    }

    .company-card .card-body p {
        min-height: auto;
    }

    .about-features .feat h5 {
        font-size: 16px;
    }

    .export-feature {
        gap: 14px;
    }

    .export-feature .ic {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .export-feature h5 {
        font-size: 15px;
    }

    .export-feature p {
        font-size: 13px;
    }

    .map-wrap {
        padding: 16px;
    }
}

/* ----- Phones (576px and down) ----- */
@media (max-width: 575.98px) {
    .hero {
        min-height: 90vh;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero h1 span::after {
        height: 4px;
        bottom: 3px;
    }

    .hero-tag {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 16px;
    }

    .hero p.lead {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-stats {
        gap: 16px;
        margin-top: 28px;
    }

    .hero-stat h3 {
        font-size: 24px;
    }

    .hero-stat p {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-tag {
        font-size: 12px;
        letter-spacing: 2px;
    }

    section {
        padding: 50px 0;
    }

    .btn-orange,
    .btn-outline-light-c {
        padding: 10px 20px;
        font-size: 11px;
    }

    .brand-strip {
        padding: 16px 0;
    }

    .strip-item {
        gap: 8px;
    }

    .strip-item i {
        font-size: 22px;
    }

    .strip-item h5 {
        font-size: 14px;
    }

    .strip-item small {
        font-size: 11px;
    }

    .about-img-wrap .badge-years {
        padding: 12px 14px;
        left: 10px;
        bottom: 10px;
    }

    .about-img-wrap .badge-years h3 {
        font-size: 30px;
    }

    .about-img-wrap .badge-years p {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .about-features .feat {
        gap: 12px;
    }

    .about-features .feat i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .about-features .feat h5 {
        font-size: 15px;
    }

    .about-features .feat p {
        font-size: 13px;
    }

    .company-card .card-head {
        padding: 22px;
    }

    .company-card .card-body {
        padding: 20px;
    }

    .company-logo-box {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .company-card h4 {
        font-size: 18px;
    }

    .product-card {
        padding: 24px 16px;
    }

    .pc-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .product-card h5 {
        font-size: 15px;
    }

    .product-card p {
        font-size: 12px;
    }

    .industry-card {
        padding: 24px 18px;
    }

    .industry-card .ind-ic {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .industry-card h5 {
        font-size: 15px;
    }

    .counter-box h2 {
        font-size: 32px;
    }

    .counter-box p {
        font-size: 12px;
    }

    .counter-box .ic {
        width: 54px;
        height: 54px;
        font-size: 22px;
        margin-bottom: 14px;
    }

    .quality-card .num {
        font-size: 38px;
    }

    .quality-card h5 {
        font-size: 17px;
    }

    .award-card h5 {
        font-size: 16px;
    }

    .expo-card .expo-img {
        height: 140px;
    }

    .expo-card h5 {
        font-size: 16px;
    }

    .expo-card .expo-date {
        font-size: 11px;
    }

    .expo-card p {
        font-size: 13px;
    }

    .testi-card {
        padding: 26px 20px;
    }

    .testi-card .testi-text {
        font-size: 13px;
    }

    .testi-card .testi-author h6 {
        font-size: 15px;
    }

    .testi-card .testi-avatar {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .newsletter-box h3 {
        font-size: 22px;
    }

    .newsletter-box p {
        font-size: 14px;
    }

    .cta-section h2 {
        font-size: 26px;
    }

    .cta-section p {
        font-size: 15px !important;
    }

    .cta-section {
        padding: 40px 0;
    }

    footer h5 {
        font-size: 15px;
        margin-bottom: 16px;
    }

    footer .brand-text {
        font-size: 22px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 16px 0;
        margin-top: 30px;
    }

    .footer-bottom .pay-ic i {
        font-size: 18px;
    }

    .footer-cert-strip {
        padding: 14px;
        margin-top: 20px;
    }

    .footer-cert-strip .fc-item {
        font-size: 11px;
        gap: 8px;
    }

    .footer-cert-strip .fc-item i {
        font-size: 18px;
    }

    .wa-float {
        width: 48px;
        height: 48px;
        font-size: 24px;
        bottom: 16px;
        right: 16px;
    }

    .director-img-wrap .quote-mark {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .director-content blockquote {
        font-size: 15px;
        padding-left: 14px;
    }

    .director-content .sign h5 {
        font-size: 18px;
    }

    .director-content .sign p {
        font-size: 12px;
    }

    .brand-logo-box .brand-name {
        font-size: 14px;
    }

    .brand-logo-box .brand-name i {
        font-size: 24px;
    }

    .brand-logo-box .brand-name small {
        font-size: 8px;
    }

    .export-feature h5 {
        font-size: 14px;
    }

    .map-wrap {
        padding: 12px;
    }

    .award-card {
        padding: 24px 16px;
    }

    .award-card .award-ic {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .award-card .award-year {
        font-size: 10px;
        padding: 3px 10px;
    }

    .award-card p {
        font-size: 12px;
    }

    .contact-li {
        font-size: 13px;
    }

    .footer-cta-box {
        padding: 14px;
    }

    .footer-cta-box h6 {
        font-size: 13px;
    }

    .footer-cta-box p {
        font-size: 12px;
    }
}

/* =============================================
   MOBILE RESPONSIVE BREAKPOINTS
   Mobile L (425px), Mobile M (375px), Mobile S (320px)
   ============================================= */

/* ----- Mobile L (425px and down) ----- */
@media (max-width: 425.98px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-tag {
        font-size: 9px;
        padding: 4px 10px;
        letter-spacing: 2px;
    }

    .hero p.lead {
        font-size: 13px;
    }

    .hero-stat {
        padding-left: 10px;
    }

    .hero-stat h3 {
        font-size: 22px;
    }

    .hero-stat p {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .hero-stats {
        gap: 14px;
        margin-top: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-tag {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    section {
        padding: 40px 0;
    }

    .btn-orange,
    .btn-outline-light-c {
        padding: 9px 16px;
        font-size: 10px;
        letter-spacing: 1px;
    }

    .about-img-wrap .badge-years {
        padding: 10px 12px;
    }

    .about-img-wrap .badge-years h3 {
        font-size: 26px;
    }

    .about-img-wrap .badge-years p {
        font-size: 8px;
    }

    .about-features .feat i {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .about-features .feat h5 {
        font-size: 14px;
    }

    .about-features .feat p {
        font-size: 12px;
    }

    .company-card .card-head {
        padding: 18px;
    }

    .company-card .card-body {
        padding: 16px;
    }

    .company-logo-box {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .company-card h4 {
        font-size: 16px;
    }

    .company-card ul.feat-list li {
        font-size: 12px;
    }

    .product-card {
        padding: 20px 12px;
    }

    .pc-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
        margin-bottom: 12px;
    }

    .product-card h5 {
        font-size: 14px;
    }

    .product-card p {
        font-size: 11px;
    }

    .industry-card {
        padding: 20px 14px;
    }

    .industry-card .ind-ic {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .industry-card h5 {
        font-size: 14px;
    }

    .industry-card p {
        font-size: 12px;
    }

    .brand-logo-box {
        padding: 10px;
    }

    .brand-logo-box .brand-name {
        font-size: 12px;
    }

    .brand-logo-box .brand-name small {
        font-size: 7px;
    }

    .counter-box h2 {
        font-size: 28px;
    }

    .counter-box p {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .counter-box .ic {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .quality-card {
        padding: 20px 16px;
    }

    .quality-card .num {
        font-size: 34px;
    }

    .quality-card h5 {
        font-size: 15px;
    }

    .quality-card p {
        font-size: 13px;
    }

    .award-card {
        padding: 20px 14px;
    }

    .award-card .award-ic {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }

    .award-card h5 {
        font-size: 15px;
    }

    .expo-card {
        padding: 18px;
    }

    .expo-card .expo-img {
        height: 130px;
    }

    .expo-card h5 {
        font-size: 15px;
    }

    .expo-card p {
        font-size: 12px;
    }

    .testi-card {
        padding: 22px 16px;
    }

    .testi-card .testi-text {
        font-size: 12px;
    }

    .testi-card .testi-author h6 {
        font-size: 14px;
    }

    .testi-card .testi-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .newsletter-box h3 {
        font-size: 20px;
    }

    .newsletter-box p {
        font-size: 13px;
    }

    .cta-section h2 {
        font-size: 22px;
    }

    .cta-section p {
        font-size: 14px !important;
    }

    .cta-section {
        padding: 35px 0;
    }

    footer {
        padding-top: 50px;
    }

    footer .brand-text {
        font-size: 20px;
    }

    .footer-bottom {
        font-size: 11px;
        padding: 14px 0;
        margin-top: 25px;
        flex-direction: column;
        text-align: center;
    }

    .director-img-wrap .quote-mark {
        width: 40px;
        height: 40px;
        font-size: 22px;
        top: -8px;
        left: -8px;
    }

    .director-content blockquote {
        font-size: 14px;
        padding-left: 12px;
    }

    .director-content .sign h5 {
        font-size: 16px;
    }

    .export-feature .ic {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .export-feature h5 {
        font-size: 13px;
    }

    .export-feature p {
        font-size: 12px;
    }

    .map-wrap {
        padding: 10px;
    }

    .cert-item {
        padding: 12px 10px;
        gap: 10px;
    }

    .cert-item h6 {
        font-size: 12px;
        text-align: left;
    }

    .cert-item small {
        font-size: 10px;
    }

    .cert-ic {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .wa-float {
        width: 44px;
        height: 44px;
        font-size: 22px;
        bottom: 14px;
        right: 14px;
    }

    .contact-li {
        font-size: 12px;
    }

    .footer-cert-strip .fc-item {
        font-size: 10px;
        gap: 6px;
    }

    .footer-cert-strip .fc-item i {
        font-size: 16px;
    }

    .brand-strip {
        padding: 14px 0;
    }

    .strip-item i {
        font-size: 20px;
    }

    .strip-item h5 {
        font-size: 13px;
    }

    .strip-item small {
        font-size: 10px;
    }

    .news-form input {
        padding: 12px 16px;
        font-size: 13px;
    }

    .news-form button {
        padding: 0 20px;
        font-size: 12px;
    }
}

/* ----- Mobile M (375px and down) ----- */
@media (max-width: 374.98px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero-tag {
        font-size: 8px;
        padding: 3px 8px;
    }

    .hero p.lead {
        font-size: 12px;
    }

    .hero-stat h3 {
        font-size: 20px;
    }

    .hero-stat p {
        font-size: 8px;
    }

    .hero-stats {
        gap: 10px;
    }

    .section-title {
        font-size: 20px;
    }

    .about-img-wrap .badge-years h3 {
        font-size: 22px;
    }

    .counter-box h2 {
        font-size: 24px;
    }

    .counter-box p {
        font-size: 10px;
    }

    .counter-box .ic {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .product-card {
        padding: 16px 10px;
    }

    .pc-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .product-card h5 {
        font-size: 13px;
    }

    .quality-card {
        padding: 16px 12px;
    }

    .award-card .award-ic {
        width: 48px;
        height: 48px;
    }

    .brand-logo-box .brand-name {
        font-size: 11px;
    }

    .company-card .card-head {
        padding: 16px;
    }

    .company-logo-box {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .company-card h4 {
        font-size: 14px;
    }

    .expo-card .expo-img {
        height: 120px;
    }

    .footer-cert-strip {
        padding: 12px;
    }

    .footer-cert-strip .fc-item {
        font-size: 9px;
    }
}

/* ----- Mobile S (320px and down) ----- */
@media (max-width: 319.98px) {
    .hero h1 {
        font-size: 20px;
    }

    .hero-tag {
        font-size: 7px;
        padding: 2px 6px;
        letter-spacing: 1px;
    }

    .hero p.lead {
        font-size: 11px;
        margin-bottom: 18px;
    }

    .hero-stat h3 {
        font-size: 16px;
    }

    .hero-stat p {
        font-size: 7px;
        letter-spacing: 0;
    }

    .hero-stats {
        gap: 8px;
        margin-top: 18px;
    }

    .section-title {
        font-size: 18px;
    }

    .section-tag {
        font-size: 10px;
    }

    .btn-orange,
    .btn-outline-light-c {
        padding: 8px 14px;
        font-size: 9px;
    }

    .counter-box h2 {
        font-size: 20px;
    }

    .counter-box p {
        font-size: 9px;
    }

    .counter-box .ic {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .product-card {
        padding: 14px 8px;
    }

    .pc-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .product-card h5 {
        font-size: 12px;
    }

    .product-card p {
        font-size: 10px;
    }

    .industry-card .ind-ic {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .industry-card h5 {
        font-size: 13px;
    }

    .brand-logo-box .brand-name {
        font-size: 10px;
    }

    .company-card .card-body p {
        font-size: 12px;
    }

    .map-wrap {
        padding: 8px;
    }

    .cta-section h2 {
        font-size: 18px;
    }

    .newsletter-box h3 {
        font-size: 18px;
    }

    .wa-float {
        width: 40px;
        height: 40px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* ============================
   STICKY HEADER
   ============================ */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
}
#google_translate_element{
    z-index: 99999;
    background: #fff;
    padding: 0px 12px;
    border-radius: 0px;

}

.goog-te-gadget{
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
}
.goog-te-gadget-simple{
    border: none !important;
}
.goog-te-gadget select{
    border: 0;
    padding: 6px 10px;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
}
.VIpgJd-ZVi9od-ORHb{
    display: none;
}