/* ============================================================
   HERO SLIDER SECTION
============================================================ */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slider .slide-item {
    outline: none;
}

.hero-slider .slide-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider .slide-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-slider .slide-picture {
    display: block;
    width: 100%;
}

.hero-slider .slide-img {
    width: 100%;
    height: auto;
    /* max-height: 650px; */
    object-fit: cover;
    display: block;
    margin: 0 auto;
    aspect-ratio: 1920 / 700;
}

/* Slick Fade & Transition */
.hero-slider .slick-slide {
    outline: none;
}

/* Custom Navigation Arrows (Translucent white circular buttons like sample) */
.hero-slider .slick-prev.hero-arrow,
.hero-slider .slick-next.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ddd8d7cf !important;
    /* backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4); */
    color: var(--color-third);
    font-size: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    opacity: 1;
}

.hero-slider .slick-prev.hero-arrow {
    left: 24px;
}

.hero-slider .slick-next.hero-arrow {
    right: 24px;
}

/* .hero-slider .slick-prev.hero-arrow:hover,
.hero-slider .slick-next.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
} */

.hero-slider .slick-prev.hero-arrow svg,
.hero-slider .slick-next.hero-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Custom Controls Container (Dots Progress + Play/Pause) */
.hero-slider-controls {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 14px;
    /* background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2); */
}

.hero-slider-dots-custom {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dot-item {
    position: relative;
    width: 96px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.hero-dot-item.is-active {
    background: rgba(255, 255, 255, 0.5);
}

.hero-dot-item .hero-dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--color-third);
    border-radius: 4px;
    will-change: width;
}

/* Play / Pause Toggle Button */
.hero-slider-playpause-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
    outline: none;
}

.hero-slider-playpause-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.hero-slider-playpause-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .hero-slider .slick-prev.hero-arrow,
    .hero-slider .slick-next.hero-arrow {
        width: 36px;
        height: 36px;
    }

    .hero-slider .slick-prev.hero-arrow {
        left: 12px;
    }

    .hero-slider .slick-next.hero-arrow {
        right: 12px;
    }

    .hero-slider .slick-prev.hero-arrow svg,
    .hero-slider .slick-next.hero-arrow svg {
        width: 16px;
        height: 16px;
    }

    .hero-slider-controls {
        gap: 10px;
    }

    .hero-dot-item {
        width: 25px;
    }

}

/* ============================================================
   HOME PREFACE (VỀ CHÚNG TÔI) SECTION
============================================================ */
.home-preface {
    padding: 60px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.home-preface__block {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 45px;
    align-items: center;
}

/* --- Left Column: Images --- */
.home-preface__imgs {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-preface__imgs-child {
    position: relative;
    width: 100%;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: #f8fafc;
}

.home-preface__imgs-child img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.hover-effect_1:hover img {
    transform: scale(1.03);
}

/* --- Right Column: Info --- */
.home-preface__info {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Decorative Top-Right Icon */
.home-preface__icon {
    position: absolute;
    top: -10px;
    right: 0;
    width: 75px;
    height: 75px;
    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
}

.home-preface__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Section Title */
.home-preface__ttl {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.home-preface__ttl-lead {
    display: block;
    line-height: .9;
    font-size: 16px;
    padding-left: 85px;
    color: #333;
    position: relative;
    margin-bottom: 8px;
    font-weight: 400;
}

.home-preface__ttl-lead::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    height: 4px;
    width: 76px;
    background: var(--color-third);
}

.home-preface__ttl-lead::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 4px;
    height: 6px;
    width: 12px;
    background: #fff;
}

.home-preface__ttl-ttl {
    font-size: clamp(24px, 3.2vw, 32px);
    font-weight: 800;
    color: var(--color-third);
    text-transform: uppercase;
    line-height: 1.25;
    letter-spacing: 0.5px;
}

/* Section Description */
.home-preface__desc {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.home-preface__desc p {
    margin-bottom: 14px;
    line-height: 1.7;
}

.home-preface__desc p:last-child {
    margin-bottom: 0;
}

/* .home-preface__desc strong {
    color: #1a202c;
    font-weight: 700;
} */

/* Vision & Mission Values */
.home-preface__values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.home-preface__values-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s ease;
}

.home-preface__values-item:hover {
    transform: translateX(4px);
}

.home-preface__values-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.home-preface__values-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-preface__values-ct {
    flex: 1;
}

.home-preface__values-ttl {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.home-preface__values-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.55;
}

/* Button Component */
.c-btn__01 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    background-color: var(--color-third);
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: fit-content;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.c-btn__01:hover {
    background-color: var(--color-third);
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
    color: #ffffff !important;
}

.c-btn__01-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.c-btn__01-icon path {
    fill: #ffffff;
}

.c-btn__01:hover .c-btn__01-icon {
    transform: translateX(4px);
}

/* ============================================================
   HOME PORTFOLIO (SẢN PHẨM & DỊCH VỤ) SECTION
============================================================ */
.home-portfolio {
    position: relative;
    padding: 50px 0 30px;
    background: linear-gradient(180deg, var(--color-third) 0%, var(--color-third) 370px, #ffffff 280px, #ffffff 100%);
}

.home-portfolio .c-ttl__02 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 29px;
}

.home-portfolio .c-ttl__02 .ttl {
    font-size: clamp(26px, 3.5vw, 30px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.home-portfolio .c-ttl__02 .small {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.92;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Slider Track & Cards */
.slider-service .slick-list {
    margin: 0 -7px;
}


.slider-service .slick-slide {
    margin: 0px 7px 15px;
}

.slider-service .slick-track {
    display: flex !important;
}

.slider-service .slick-slide>div {
    height: 100%;
    display: flex;
    width: 100%;
}

.slider-service__wrap {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, .04);
    display: flex !important;
    flex-direction: column;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Card Image */
.slider-service__img {
    position: relative;
    width: 100%;
    padding-top: 66%;
    overflow: hidden;
    margin: 0;
    background-color: #f8fafc;
}

.slider-service__img a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.slider-service__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.slider-service__img:hover img {
    transform: scale(1.05);
}

/* Card Content Body */
.slider-service__ct {
    padding: 22px 20px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.slider-service__cate {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 8px;
}

.slider-service__cate a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.slider-service__cate a:hover {
    color: var(--color-third);
}

.slider-service__ttl {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    height: 48px;
}

.slider-service__ttl a {
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.slider-service__ttl a:hover {
    color: var(--color-hover, var(--color-third));
    filter: brightness(0.85);
}

.slider-service__desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Bottom Action Link */
.slider-service__btn {
    padding: 16px 20px;
    border-top: 1px solid #f1f5f9;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-third);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: background 0.2s ease;
    margin-top: auto;
    position: relative;
}

.slider-service__btn-svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.slider-service__btn-svg polyline,
.slider-service__btn-svg line {
    stroke: currentColor;
}

.slider-service__wrap:hover .slider-service__btn {
    color: white;
}

.slider-service__btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(90deg, var(--color-third) 10%, #4eaae2 100%);
    z-index: 0;
    transition: all .3s ease-in;
}

.slider-service__wrap:hover .slider-service__btn::before {
    height: 100%;
}

.slider-service__btn>* {
    z-index: 2;
}

/* Slick Dots Styling */
.slider-service .slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    gap: 8px;
}

.slider-service .slick-dots li {
    margin: 0;
    padding: 0;
}

.slider-service .slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-service .slick-dots li.slick-active button {
    background: var(--color-third);
    width: 24px;
    border-radius: 6px;
}

/* ============================================================
   HOME ACTIVITIES (HÌNH ẢNH HOẠT ĐỘNG CÔNG TY) SECTION
============================================================ */
.home-activities {
    padding: 50px 0;
    background-color: #f8fafc;
}

.home-activities__head {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.home-activities__ttl {
    font-size: clamp(24px, 2.5vw, 30px);
    font-weight: 700;
    color: var(--color-third);
    text-transform: uppercase;
    margin: 0;
}

.home-activities__more {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-third);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.home-activities__more:hover {
    color: var(--color-hover, var(--color-third));
}

.home-activities__more-icon {
    transition: transform 0.3s ease;
}

.home-activities__more:hover .home-activities__more-icon {
    transform: translateX(3px);
}

/* Grid Layout */
.home-activities__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Item Card */
.home-activities__item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    background-color: #181818;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-activities__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Image container */
.home-activities__img {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
    margin: 0;
}

.home-activities__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-activities__item:hover .home-activities__img img {
    transform: scale(1.06);
}

/* Caption bar at bottom */
.home-activities__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.9);
    padding: 10px 12px;
    text-align: center;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.home-activities__caption span {
    font-size: 14.5px;
    font-weight: 600;
    color: #ffffff;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-activities__item:hover .home-activities__caption {
    background-color: var(--color-third);
}

/* ============================================================
   RESPONSIVE DESIGN
============================================================ */
@media (max-width: 991px) {
    .home-preface {
        padding: 45px 0;
    }

    .home-preface__block {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .home-preface__imgs {
        max-width: 600px;
        margin: 0 auto;
        order: 1;
    }

    .home-preface__icon {
        width: 60px;
        height: 60px;
        opacity: 0.7;
    }

    .home-portfolio {
        padding: 40px 0;
        background: linear-gradient(180deg, var(--color-third) 0%, var(--color-third) 240px, #ffffff 240px, #ffffff 100%);
    }

    .home-portfolio .c-ttl__02 {
        margin-bottom: 30px;
    }

    .home-activities {
        padding: 45px 0;
    }

    .home-activities__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .hero-slider .slick-prev.hero-arrow,
    .hero-slider .slick-next.hero-arrow {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .home-preface {
        padding: 35px 0;
    }

    .home-preface__ttl-lead {
        font-size: 14px;
    }

    .home-preface__ttl-ttl {
        font-size: 22px;
    }

    .home-preface__icon {
        width: 45px;
        height: 45px;
        top: -5px;
        opacity: 0.5;
    }

    .home-preface__desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .home-preface__values {
        gap: 16px;
        margin-bottom: 24px;
    }

    .home-preface__values-icon {
        width: 42px;
        height: 42px;
    }

    .home-preface__values-ttl {
        font-size: 15px;
    }

    .home-preface__values-desc {
        font-size: 13.5px;
    }

    .c-btn__01 {
        width: 100%;
        padding: 11px 20px;
    }

    .home-portfolio {
        padding: 40px 0 50px;
        background: linear-gradient(180deg, var(--color-third) 0%, var(--color-third) 220px, #ffffff 220px, #ffffff 100%);
    }

    .home-portfolio .c-ttl__02 .ttl {
        font-size: 22px;
    }

    .home-portfolio .c-ttl__02 .small {
        font-size: 13.5px;
    }

    .slider-service__ct {
        padding: 18px 16px 14px;
    }

    .slider-service__ttl {
        font-size: 15.5px;
    }

    .slider-service__btn {
        padding: 14px 16px;
    }

    .home-activities {
        padding: 35px 0;
    }

    .home-activities__head {
        margin-bottom: 20px;
    }

    .home-activities__ttl {
        font-size: 20px;
    }

    .home-activities__more {
        font-size: 13.5px;
    }

    .home-activities__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .home-activities__caption {
        padding: 8px 6px;
    }

    .home-activities__caption span {
        font-size: 12.5px;
    }
}

/* ============================================================
   SECTION 1: LOGISTICS SHARING (Top Image Card Style)
============================================================ */
.logistics-sharing {
    padding: 50px 0;
    background-color: #ffffff;
}

.logistics-sharing__head {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 20px;
}

.logistics-sharing__ttl {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-third);
    text-transform: uppercase;
    margin-bottom: 14px;
    line-height: 1.3;
}

.logistics-sharing__sub {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.logistics-sharing__slider {
    margin: 0 -10px;
}

.logistics-sharing__slider .slick-list {
    padding: 10px 0 20px;
}

.logistics-card {
    padding: 0 10px;
    outline: none;
}

.logistics-card__inner {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.logistics-card__inner:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08); */
    border-color: #cbd5e1;
}

.logistics-card__thumb {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.logistics-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.logistics-card__inner:hover .logistics-card__thumb img {
    transform: scale(1.06);
}

.logistics-card__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.logistics-card__ttl {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.45;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 50px;
    transition: color 0.25s ease;
}

.logistics-card__inner:hover .logistics-card__ttl {
    color: var(--color-third, #0284c7);
}

.logistics-card__date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 12px;
}

.logistics-card__date svg {
    color: #94a3b8;
}

.logistics-card__desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logistics-sharing__slider .slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    /* gap: 8px; */
}

.logistics-sharing__slider .slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logistics-sharing__slider .slick-dots li.slick-active button {
    background: var(--color-third, #0284c7);
    width: 26px;
    border-radius: 6px;
}

/* ============================================================
   SECTION 2: NEWS & KNOWLEDGE SHARING (Side-by-side Thumbnail)
============================================================ */
.news-knowledge {
    padding: 50px 0;
    background-color: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

.news-knowledge__head {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.news-knowledge__ttl {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-third);
    text-transform: uppercase;
    margin-bottom: 14px;
    line-height: 1.3;
}

.news-knowledge__sub {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.news-knowledge__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-knowledge__grid .news-card {
    padding: 0;
    outline: none;
}

.news-card__inner {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.news-card__inner:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08); */
    border-color: #cbd5e1;
}

.news-card__ttl {
    font-size: 16.5px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 46px;
    transition: color 0.25s ease;
}

.news-card__inner:hover .news-card__ttl {
    color: var(--color-third, #0284c7);
}

.news-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.news-card__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 6px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 500;
    color: #64748b;
}

.meta-icon {
    width: 14px;
    height: 14px;
    color: #64748b;
    flex-shrink: 0;
}

.news-card__body {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex-grow: 1;
}

.news-card__thumb {
    position: relative;
    width: 110px;
    height: 95px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.news-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.news-card__inner:hover .news-card__thumb img {
    transform: scale(1.08);
}

.news-card__desc {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-knowledge__slider .slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    gap: 8px;
}

.news-knowledge__slider .slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-knowledge__slider .slick-dots li.slick-active button {
    background: var(--color-third, #0284c7);
    width: 26px;
    border-radius: 6px;
}

@media (max-width: 991px) {

    .logistics-sharing,
    .news-knowledge {
        padding: 45px 0;
    }

    .logistics-sharing__ttl,
    .news-knowledge__ttl {
        font-size: 24px;
    }

    .logistics-card__thumb {
        height: 200px;
    }
}

@media (max-width: 576px) {

    .logistics-sharing,
    .news-knowledge {
        padding: 35px 0;
    }

    .logistics-sharing__ttl,
    .news-knowledge__ttl {
        font-size: 20px;
    }

    .logistics-sharing__sub,
    .news-knowledge__sub {
        font-size: 13.5px;
    }

    .logistics-card__thumb {
        height: 190px;
    }

    .logistics-card__content,
    .news-card__inner {
        padding: 16px;
    }

    .logistics-card__ttl,
    .news-card__ttl {
        font-size: 15.5px;
        min-height: 44px;
    }

    .news-knowledge__head,
    .logistics-sharing__head {
        margin: 0 auto 20px;
    }
}

@media (max-width: 991px) {
    .news-knowledge__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .news-knowledge__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}



.news-section {
    padding: 40px 0;
    background: #ffffff;
}

.news-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
    flex-wrap: wrap;
}

.news-titlee {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-third);
    margin: 0;
    text-transform: uppercase;
    position: relative;
    /* padding-bottom: 12px; */
}

.news-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 3px;
    background: var(--color-third);
    border-radius: 2px;
}

.news-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-third);
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.22s ease, color 0.22s ease;
}

.news-view-all svg {
    width: 16px;
    height: 16px;
    transition: transform 0.22s ease;
}

.news-view-all:hover {
    color: #1551b5;
    gap: 10px;
}

.news-view-all:hover svg {
    transform: translateX(3px);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.news-slider {
    display: block;
}

.news-slider .slick-list {
    margin: 0 -10px;
}

.news-slider .slick-slide {
    margin: 10px;
}

/* News & Articles Section */
.news-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

.news-card:hover {
    /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09); */
    transform: translateY(-4px);
    border-color: #e5e7eb;
}

.news-card-img-link {
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.news-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 2.5;
    background: #f8fafc;
}

.news-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.news-card:hover .news-card-img-wrap img {
    transform: scale(1.05);
}

.news-card-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Title */
.news-card-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    margin: 0 0 10px 0;
    height: 48px;
}

.news-card-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-title a:hover {
    color: var(--color-third, #1551b5);
}

/* Date Meta */
.news-card-meta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
}

.news-card-date-icon {
    width: 17px;
    height: 17px;
    color: var(--color-third);
    flex-shrink: 0;
}

.news-card-date {
    font-size: 14px;
    font-weight: 40500;
    color: #666;
    line-height: 1;
    letter-spacing: 0.02em;
}

/* Excerpt */
.news-card-excerpt {
    font-size: 15px;
    color: #666666;
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
}

@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .news-section {
        padding: 30px 0 20px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* .news-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    } */
    .news-titlee {
        font-size: 22px;
    }
}

/* Testimonials Section */
.testimonial-section {
    background-color: #ffffff;
    padding: 40px 0 10px 0;
    border-top: 0px solid #f1f5f9;
}

.testimonial-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 20px;
    padding-top: 20px;
    border-bottom: 1px solid #EDEDED;
}

.testimonial-title-box {
    flex-shrink: 0;
    min-width: 345px;
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: #dc2626;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.testimonial-title-box h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-third);
    margin: 0;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.5px;
    margin-top: 15px;
}

.testimonial-slider-box {
    flex: 1;
    min-width: 0;
    position: relative;
    padding: 0px 40px 10px 40px;
}

.testimonial-quote-left {
    position: absolute;
    top: -12px;
    left: 0;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    pointer-events: none;
    user-select: none;
}

.testimonial-quote-left svg {
    width: 28px;
    height: 28px;
    display: block;
}

.testimonial-quote-right {
    position: absolute;
    top: 35px;
    right: 0;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    pointer-events: none;
    user-select: none;
}

.testimonial-quote-right svg {
    width: 28px;
    height: 28px;
    display: block;
    transform: rotate(180deg);
}

.testimonial-slider {
    position: relative;
}

.testimonial-item {
    outline: none;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #666666;
    line-height: 1.65;
    margin: 0 0 24px 0;
    padding-right: 15px;
    padding-left: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 0;
    position: relative;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #cbd5e1;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.testimonial-role {
    font-size: 13.5px;
    font-style: italic;
    color: #64748b;
    margin: 0;
}

.testimonial-nav {
    position: absolute;
    right: 40px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.testimonial-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: var(--color-third);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.testimonial-nav-btn:hover {
    border-color: var(--color-third);
    color: #ffffff;
    background-color: var(--color-third);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-nav-btn svg {
    width: 18px;
    height: 18px;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .testimonial-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 30px;
    }

    .testimonial-title-box {
        min-width: 100%;
        width: 100%;
        font-size: 20px;
    }

    .testimonial-title-box h2,
    .testimonial-main-title {
        font-size: 32px;
        margin-top: 10px;
    }

    .testimonial-sub-title {
        font-size: 22px;
    }

    .testimonial-slider-box {
        width: 100%;
        padding: 10px 15px 45px 15px;
        box-sizing: border-box;
    }

    .testimonial-text {
        font-size: 15px;
        padding-right: 0;
        padding-left: 0;
    }

    .testimonial-quote-left {
        top: -20px;
        left: 0;
        opacity: 0.5;
    }

    .testimonial-quote-right {
        top: auto;
        bottom: 50px;
        right: 0;
        opacity: 0.5;
    }

    .testimonial-nav {
        right: 0;
        bottom: 0;
    }

    .testimonial-author {
        padding-right: 95px;
    }
}

@media (max-width: 576px) {
    .testimonial-section {
        padding: 0;
    }

    .testimonial-title-box {
        font-size: 16px;
    }

    .testimonial-title-box h2,
    .testimonial-main-title {
        font-size: 24px;
        margin-top: 6px;
    }

    .testimonial-sub-title {
        font-size: 18px;
    }

    .testimonial-slider-box {
        padding: 5px 0 45px 0;
    }

    .testimonial-quote-left {
        top: -18px;
        left: -2px;
    }

    .testimonial-quote-left svg {
        width: 22px;
        height: 22px;
    }

    .testimonial-quote-right {
        bottom: 95px;
        right: -2px;
    }

    .testimonial-quote-right svg {
        width: 22px;
        height: 22px;
    }

    .testimonial-text {
        font-size: 14px;
        margin-bottom: 16px;
        line-height: 1.6;
    }

    .testimonial-avatar {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .testimonial-name {
        font-size: 14px;
    }

    .testimonial-role {
        font-size: 12.5px;
    }

    .testimonial-nav-btn {
        width: 36px;
        height: 36px;
    }

    .testimonial-nav-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* Partners Section */
.partners-grid-section {
    padding: 40px 0 50px;
    background-color: #ffffff;
}

.partners-grid-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 25px;
    /* padding: 0 15px; */
}

.partners-grid-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-third);
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.25;
    position: relative;
    display: inline-block;
}

.partners-grid-title::after {
    content: '';
    display: block;
    width: 84px;
    height: 3px;
    background: #fa0107;
    border-radius: 3px;
    margin: 8px auto 16px;
}

.partners-grid-desc {
    font-size: 16px;
    line-height: 1.4;
    color: #4b5563;
    margin: 0 auto;
    max-width: 770px;
}

.partners-grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid #e2e8f0;
    border-left: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.partner-grid-item {
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    background: #ffffff;
    transition: all 0.25s ease-in-out;
    position: relative;
}

.partner-grid-item:hover {
    /* background-color: #f8fafc; */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    /* transform: translateY(-2px); */
    z-index: 2;
}

.partner-grid-item svg {
    max-width: 88%;
    max-height: 52px;
    width: auto;
    height: auto;
    display: block;
    transition: transform 0.25s ease;
}

.partner-grid-item:hover svg {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .partners-grid-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .partners-grid-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .partners-grid-section {
        padding: 45px 0 50px;
    }

    .partners-grid-header {
        margin-bottom: 26px;
    }

    .partners-grid-title {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .partners-grid-desc {
        font-size: 14px;
    }

    .partners-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .partner-grid-item {
        height: 98px;
        padding: 10px 12px;
    }

    .partner-grid-item svg {
        max-height: 44px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .partners-grid-section {
        padding: 35px 0 40px;
    }

    .partners-grid-title {
        font-size: 22px;
    }

    .partners-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-grid-item {
        height: 84px;
        padding: 8px 10px;
    }

    .partner-grid-item svg {
        max-height: 38px;
    }
}


.home-why-section {
    padding: 45px 0 60px;
}

.why-section-title {
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 32px 0;
    letter-spacing: 0.5px;
}

.why-section-title p {
    margin: 0;
    font-size: 30px;
    color: #fa0107;
    font-weight: 400;
    line-height: 1.35;
}

.why-section-title p strong {
    font-size: 42px;
    font-weight: 800;
}

.why-section-title .text-red {
    color: #e31b23;
}

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.why-card-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 16px 18px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(14, 56, 122, 0.05);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-width: 0;
    text-align: left;
}

.why-card-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(14, 56, 122, 0.1);
    border-color: #e2e8f0;
}

.why-card-icon-wrap {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-card-icon-img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.why-card-box:hover .why-card-icon-img {
    transform: scale(1.05);
}

.why-card-text {
    flex: 1;
    min-width: 0;
}

.why-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
    line-height: 1.35;
}

.why-card-desc {
    font-size: 14.5px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

.why-section-title h2 {
    font-size: 30px;
    color: var(--color-third);
}


/* ====================================================
   Responsive for Home Why Section
   ==================================================== */
@media (max-width: 1024px) {
    .home-why-section {
        padding: 38px 0 48px;
    }

    .why-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .why-section-title {
        margin-bottom: 26px;
    }

    .why-section-title p {
        font-size: 26px;
    }

    .why-section-title p strong {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .home-why-section {
        padding: 30px 0 40px;
    }

    .why-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .why-section-title {
        margin-bottom: 22px;
    }

    .why-section-title p {
        font-size: 22px;
    }

    .why-section-title p strong {
        font-size: 30px;
    }

    .why-card-box {
        padding: 14px;
        gap: 12px;
    }

    .why-card-icon-img {
        width: 50px;
        height: 50px;
    }

    .why-card-title {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .why-card-desc {
        font-size: 13.5px;
        line-height: 1.35;
    }
}

@media (max-width: 576px) {
    .home-why-section {
        padding: 24px 0 36px;
    }

    .why-cards-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .why-section-title {
        margin-bottom: 18px;
        font-size: 18px;
    }

    .why-section-title p {
        font-size: 20px;
    }

    .why-section-title p strong {
        font-size: 26px;
    }

    .why-card-box {
        padding: 12px 14px;
        gap: 12px;
    }

    .why-card-icon-img {
        width: 46px;
        height: 46px;
    }

    .why-card-title {
        font-size: 15.5px;
    }

    .why-card-desc {
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .why-section-title p {
        font-size: 18px;
    }

    .why-section-title p strong {
        font-size: 22px;
    }

    .why-card-box {
        padding: 10px 12px;
        gap: 10px;
    }

    .why-card-icon-img {
        width: 40px;
        height: 40px;
    }

    .why-card-title {
        font-size: 14.5px;
    }

    .why-card-desc {
        font-size: 12.5px;
    }
}




.ck-content {
    font-size: 15px;
    line-height: 1.5;
    /* word-break: break-word; */
}

.ck-content h1,
.ck-content h2,
.ck-content h3,
.ck-content h4,
.ck-content h5,
.ck-content h6 {
    font-weight: 700;
    line-height: 1.35;
    margin-top: 12px;
    margin-bottom: 8px;
}

.ck-content h1 {
    font-size: 32px;
}

.ck-content h2 {
    font-size: 22px;
    /* border-bottom: 2px solid #e2e8f0; */
    padding-bottom: 8px;
    color: var(--color-third);
}

.ck-content h3 {
    font-size: 18px;
    color: var(--color-third);
}

.ck-content h4 {
    font-size: 16px;
}

.ck-content h5,
.ck-content h6 {
    font-size: 14px;
    color: #4a5568;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Paragraph Ã¢â€â‚¬Ã¢â€â‚¬ */
.ck-content p {
    margin: 0 0 12px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Links Ã¢â€â‚¬Ã¢â€â‚¬ */
.ck-content a {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.ck-content a:hover {
    color: #000;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Strong / Em Ã¢â€â‚¬Ã¢â€â‚¬ */
.ck-content strong {
    font-weight: 700;
    /* color: #1a1a1a; */
}

.ck-content em {
    font-style: italic;
    color: #FFF;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Unordered & Ordered Lists Ã¢â€â‚¬Ã¢â€â‚¬ */
.ck-content ul,
.ck-content ol {
    padding-left: 26px;
    margin: 0 0 15px 10px;
}

.ck-content ul {
    list-style: none;
    padding-left: 0;
}

.ck-content ul li {
    position: relative;
    padding-left: 15px !important;
    margin-bottom: 7px !important;
}

.ck-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    background-color: currentColor;
    border-radius: 50%;
}

.ck-content ol {
    list-style: decimal;
}

.ck-content ol li {
    margin-bottom: 7px;
    padding-left: 5px;
}

.ck-content li>ul,
.ck-content li>ol {
    margin-top: 6px;
    margin-bottom: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Blockquote Ã¢â€â‚¬Ã¢â€â‚¬ */
.ck-content blockquote {
    margin: 20px 0;
    padding: 0px 0 0px 15px;
    border-left: 4px solid var(--color-third);
    background-color: transparent;
    border-radius: 0 8px 8px 0;
    /* color: #fff; */
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
}

.ck-content blockquote p {
    margin: 0;
}

.ck-content blockquote h2,
.ck-content blockquote h3,
.ck-content blockquote p {
    padding: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ HÃƒÂ¬nh Ã¡ÂºÂ£nh Ã¢â€â‚¬Ã¢â€â‚¬ */
.ck-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 10px auto;
}

.ck-content figure.image {
    margin: 29px auto;
    text-align: center;
}

.ck-content figure.image figcaption {
    font-size: 13px;
    color: #718096;
    margin-top: 8px;
    font-style: italic;
    text-align: center;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Table Ã¢â€â‚¬Ã¢â€â‚¬ */
.ck-content .table {
    overflow-x: auto;
    margin: 29px 0;
    -webkit-overflow-scrolling: touch;
}

.ck-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
    margin-bottom: 10px;
}

.ck-content table th,
.ck-content table td {
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
    text-align: left;
    vertical-align: top;
}

.ck-content table th {
    background-color: #000;
    color: #ffffff;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.02em;
}

.ck-content table tr:nth-child(even) td {
    background-color: #f8fafc;
}

.ck-content table tr:hover td {
    background-color: #e8f4f6;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Code & Pre Ã¢â€â‚¬Ã¢â€â‚¬ */
.ck-content code {
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 13.5px;
    background-color: #f1f5f9;
    color: #c53030;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.ck-content pre {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 18px 20px;
    border-radius: 10px;
    overflow-x: auto;
    font-size: 13.5px;
    line-height: 1.7;
    margin: 26px 0;
}

.ck-content pre code {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font-size: inherit;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Horizontal Rule Ã¢â€â‚¬Ã¢â€â‚¬ */
.ck-content hr {
    border: none;
    border-top: 2px solid #e2e8f0;
    margin: 32px 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Media (video embed, iframe) Ã¢â€â‚¬Ã¢â€â‚¬ */
.ck-content .media,
.ck-content .raw-html-embed {
    margin: 29px 0;
}

.ck-content iframe {
    max-width: 100%;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Responsive Mobile Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 768px) {
    .ck-content {
        font-size: 15px;
        line-height: 1.8;
    }

    .ck-content h1 {
        font-size: 25px;
    }

    .ck-content h2 {
        font-size: 20px;
    }

    .ck-content h3 {
        font-size: 16px;
    }

    /* .ck-content blockquote {
        padding: 12px 16px 12px 18px;
        font-size: 15px;
    } */

    .ck-content table th,
    .ck-content table td {
        padding: 8px 10px;
        font-size: 13px;
    }

    .ck-content pre {
        font-size: 12.5px;
        padding: 14px 16px;
    }
}

/* Dịch vụ tiêu biểu */

.service-section {
    padding: 40px 0;
}

.service-typical-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.service-typical-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-typical-img {
    display: block;
    width: 100%;
    overflow: hidden;
}

.service-typical-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-typical-item:hover .service-typical-img img {
    transform: scale(1.05);
}

.service-typical-content {
    padding: 12px;
    text-align: left;
}

.service-typical-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 48px;
}

.service-typical-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s;
}

.service-typical-title a:hover {
    color: #ff0000;
}

.service-typical-desc {
    font-size: 15px;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-xemthem {
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-xemthem:hover {
    background-color: #cc0000;
    color: #fff;
}