/* ====================================================
   Main Banner Slider
   ==================================================== */
.home-text-slider-section {
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    background-color: #fafafa;
}

.home-text-slider-section .banner-grid-wrapper,
.home-text-slider-section .banner-main-col,
.home-text-slider-section .banner-slider-box {
    width: 100%;
    position: relative;
}

.home-text-slider-section .text-image-slider {
    width: 100%;
    position: relative;
}

.home-text-slider-section .slider-item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.home-text-slider-section .slider-bg-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.home-text-slider-section .img-mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .home-text-slider-section .img-pc {
        display: none !important;
    }

    .home-text-slider-section .img-mobile {
        display: block !important;
    }

    .home-text-slider-section .slider-bg-image {
        height: auto;
    }
}

/* Custom Slick Arrows */
.home-text-slider-section .slick-prev,
.home-text-slider-section .slick-next {
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.35) !important;
    border-radius: 50%;
    z-index: 10;
    color: #ffffff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.home-text-slider-section .slick-prev:hover,
.home-text-slider-section .slick-next:hover {
    background: rgba(0, 0, 0, 0.65) !important;
    transform: translateY(-50%) scale(1.05);
}

.home-text-slider-section .slick-prev {
    left: 20px;
}

.home-text-slider-section .slick-next {
    right: 20px;
}

.home-text-slider-section .slick-prev::before,
.home-text-slider-section .slick-next::before {
    display: none !important;
    content: '' !important;
}

.home-text-slider-section .slick-arrow svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 576px) {

    .home-text-slider-section .slick-prev,
    .home-text-slider-section .slick-next {
        display: none !important;
    }
}


/* Categories Overlap Slider */
.home-categories-overlap {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    /* Overlaps the slider */
    margin-bottom: 50px;
    background-color: transparent !important;
}

.categories-slider {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    padding: 20px 15px 15px;
}

.categories-slider .cat-item {
    text-align: center;
    padding: 0px 10px;
}

.categories-slider .cat-link {
    display: block;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}

.categories-slider .cat-link:hover {
    transform: translateY(-5px);
}

.categories-slider .cat-link:hover .cat-title {
    color: #0056b3;
}

.categories-slider .cat-img-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    /* border-radius: 50%; */
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05); */
}

.categories-slider .cat-img-wrap img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.categories-slider .cat-title {
    font-size: 15px;
    font-weight: bold;
    margin: 0;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .home-categories-overlap {
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .categories-slider {
        padding: 15px 5px;
    }

    .categories-slider .cat-img-wrap {
        width: 70px;
        height: 70px;
    }
}

/* Why Choose Us Section */

.why-choose-section {
    padding: 56px 0 64px;
    /* background: #f7f9fc; */
}

.why-choose-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-3);
    margin: 0 0 40px;
    text-transform: uppercase;
    position: relative;
}

.why-choose-title::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    background: var(--color-3);
    border-radius: 2px;
    margin: 12px auto 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-choose-card {
    background: #ffffff;
    border: 1px solid #e4eaf3;
    border-radius: 10px;
    padding: 32px 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
    cursor: default;
}

.why-choose-card:hover {
    box-shadow: 0 8px 28px rgba(26, 60, 122, 0.12);
    transform: translateY(-4px);
    border-color: #c2d0ea;
}

.why-choose-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #eef2fb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.28s ease;
}

.why-choose-card:hover .why-choose-icon-wrap {
    background: #d8e3f5;
}

.why-choose-icon {
    width: 34px;
    height: 34px;
    color: var(--color-3);
    display: block;
    transition: color 0.28s ease, transform 0.32s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1);
    color: #1551b5;
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.why-choose-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-3);
    margin: 0;
    line-height: 1.35;
}

.why-choose-card-desc {
    font-size: 13px;
    color: #6b7a96;
    margin: 0;
    line-height: 1.5;
}

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

@media (max-width: 480px) {
    .why-choose-section {
        padding: 30px 0;
    }

    .why-choose-title {
        font-size: 18px;
    }

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

    .why-choose-card {
        flex-direction: row;
        text-align: left;
        padding: 20px 16px;
        gap: 14px;
    }

    .why-choose-icon-wrap {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }

    .why-choose-icon {
        width: 28px;
        height: 28px;
    }
}

/* Products Section */

.products-section {
    padding: 50px 0;
    background: #ffffff;
}

.section-head {
    text-align: center;
    margin-bottom: 35px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    /* text-transform: uppercase; */
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    background: var(--color-3);
    border-radius: 2px;
    margin: 12px auto 0;
    display: none;
}

.section-desc {
    margin-top: 5px;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 36px;
    border-bottom: 1px solid #e8eef8;
    padding-bottom: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    /* -webkit-overflow-scrolling: touch;
    scrollbar-width: none; */
    /* Firefox */
}

.products-tab-btn {
    position: relative;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
    color: #6b7a96;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    transition: color 0.22s ease, background 0.22s ease;
    white-space: nowrap;
}

.products-tab-btn::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -12px;
    z-index: 1;
    background-color: transparent;
}

.products-tab-btn:hover {
    color: var(--color-3);
    background: #f0f4fc;
}

.products-tab-btn.active {
    color: var(--color-3);
    font-weight: 700;
    background: #f0f6ff;
}

.products-tab-btn.active::before {
    background-color: var(--color-3);
}

.products-tab-panel {
    display: none;
    animation: fadeInUp 0.35s ease;
}

.products-tab-panel.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Products Section */
.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.products-grid>* {
    width: calc((100% - 64px) / 5);
}

/* Products Section */
.products-slider .product-card {
    margin: 30px 8px;
    transition: 0.35s ease;
    border: 2px solid #f1f1f1;
}

/* Testimonials Section */
#products-slider.has-center-mode .slick-slide.product-card:not(.slick-center) {
    opacity: 0.9;
    filter: brightness(0.98);
    transform: scale(0.98);
}

#products-slider.has-center-mode .slick-center.product-card {
    opacity: 1;
    filter: brightness(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    border: 2px solid var(--color-3);
    position: relative;
    z-index: 2;
    /* padding: 10px 0; */
    /* transform: translateY(-10px); */
    transform: scale(1.05);
}

/* Products Section */
#products-slider.has-center-mode .slick-center.product-card::after {
    content: "BÃƒÆ’Ã†â€™Ãƒâ€šÃ‚ÂN\nCHÃƒÆ’Ã‚Â¡Ãƒâ€šÃ‚ÂºÃƒâ€šÃ‚Â Y";
    white-space: pre;
    position: absolute;
    top: -10px;
    right: 5px;
    width: 45px;
    height: 45px;
    background: var(--color-3);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 4;
    text-transform: uppercase;
    pointer-events: none;
}

/* Testimonials Section */
.products-slider .slick-list {
    overflow: visible;
    margin: 0 -8px;
}

.home-products-section .ctnr {
    overflow: hidden;
}

.products-view-all {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.products-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: var(--color-3);
    color: #FFF;
    border: 2px solid var(--color-3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.products-view-all-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.24s ease;
}

.products-view-all-btn:hover {
    background: #FFF;
    color: var(--color-3);
    box-shadow: 0 6px 24px rgba(26, 60, 122, 0.25);
}

.products-view-all-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .products-grid>* {
        width: calc((100% - 32px) / 3);
    }

    .products-tabs-nav {
        justify-content: left;
    }
}

@media (max-width: 700px) {
    .products-grid>* {
        width: calc((100% - 16px) / 2);
    }

    .products-tab-panel .products-grid .product-card:nth-child(5) {
        display: none;
    }

    .products-tab-btn {
        padding: 8px 14px 10px;
        font-size: 13px;
    }

    .products-view-all-btn {
        padding: 8px 22px;
    }
}

@media (max-width: 420px) {
    .products-section {
        padding: 30px 0;
    }

    .products-grid {
        gap: 8px;
    }

    .products-grid>* {
        width: calc((100% - 8px) / 2);
    }

    .products-view-all {
        margin-top: 25px;
    }
}

@media (max-width: 375px) {
    .products-grid>* {
        width: 100%;
    }
}

.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-3);
    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-3);
    border-radius: 2px;
}

.news-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-3);
    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: 20px;
    font-weight: 400;
    color: #000;
    line-height: 1.45;
    margin: 0 0 10px 0;
    height: 60px;
}

.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-3, #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-3);
    flex-shrink: 0;
}

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

/* Excerpt */
.news-card-excerpt {
    font-size: 16px;
    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;
    }
}

/* FAQ Section */

.faq-section {
    padding: 60px 0;
    background: #f7f9fc;
}

.faq-heading {
    text-align: center;
    margin-bottom: 15px;
}

.faq-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-3);
    text-transform: uppercase;
    margin: 0 0 10px;
    position: relative;
    display: inline-block;
}

.faq-title::after,
.partners-title::after {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    background: var(--color-3);
    border-radius: 2px;
    margin: 10px auto 0;
}

.faq-subtitle {
    font-size: 14.5px;
    color: #6b7a96;
    margin: 0;
}

/* FAQ Section */
.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-image-wrap {
    text-align: center;
    padding: 10px;
}

@media (max-width: 768px) {
    .faq-image-wrap {
        margin-top: 20px;
        padding: 0;
    }
}

.faq-side-img {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

/* FAQ Section */
.faq-item {
    background: #ffffff;
    border: 1px solid #e4eaf3;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.24s ease, border-color 0.24s ease;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
    border-color: #b8ccee;
    box-shadow: 0 4px 20px rgba(26, 60, 122, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 8px 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #1a2e55;
    line-height: 1.4;
    transition: color 0.2s ease, background 0.2s ease;
}

.faq-question:hover {
    color: var(--color-3);
    background: #f5f8ff;
}

.faq-question[aria-expanded="true"] {
    color: var(--color-3);
    background: #f0f5ff;
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--color-3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.28s ease;
}

.faq-question[aria-expanded="true"] .faq-icon svg {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
}

.faq-answer:not([hidden]) {
    max-height: 400px;
    padding: 12px 22px;
}

.faq-answer p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.72;
    margin: 0;
}

.faq-answer p strong {
    color: var(--color-3);
    font-weight: 700;
}

.home-products-section {
    padding: 0 0 40px 0
}

@media (max-width: 480px) {
    .faq-section {
        padding: 30px 0;
    }

    .faq-question {
        font-size: 14px;
        padding: 15px 16px;
    }

    .faq-answer:not([hidden]) {
        padding: 0 16px 16px;
    }

    .products-slider .product-card {
        margin: 8px 4px;
    }

    .products-slider .slick-list {
        margin: 0 -4px;
    }

    .home-products-section {
        padding: 0 0 25px 0;
    }

    .faq-title {
        font-size: 22px;
        margin-bottom: 0;
    }

    .product-card-price-row {
        gap: 5px;
    }
}

/* Policy Bar Section */
.policy-bar {
    background: linear-gradient(90deg, #0e2150 0%, var(--color-3) 60%, #1551b5 100%);
    padding: 16px 0;
    /* border-bottom: 1px solid #ddddddaf; */
}

.policy-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

/* Policy Bar Section */
.policy-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 22px 20px;
    flex: 1;
    min-width: 0;
    transition: background 0.22s ease;
}

.policy-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.policy-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.18);
    align-self: stretch;
    margin: 14px 0;
    flex-shrink: 0;
}

.policy-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: #ffffff;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-icon svg {
    width: 40px;
    height: 40px;
    display: block;
}

.policy-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.policy-content strong {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
}

.policy-content span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
}

@media (max-width: 860px) {
    .policy-list {
        flex-wrap: wrap;
    }

    .policy-item {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 18px 16px;
    }

    .policy-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .policy-item {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 14px 12px;
        border-right: none !important;
    }
}

/* News & Articles Section */
.newsletter-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #0e2150 0%, var(--color-3) 50%, #1551b5 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.newsletter-section::before,
.newsletter-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.newsletter-section::before {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
}

.newsletter-section::after {
    width: 300px;
    height: 300px;
    bottom: -120px;
    left: -80px;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.newsletter-text {
    flex: 1;
}

.newsletter-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
}

.newsletter-eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1px;
}

.newsletter-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
}

.newsletter-form-wrap {
    flex: 0 0 50%;
    max-width: 50%;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Input + button pill group */
.newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    overflow: hidden;
    transition: border-color 0.22s ease, background 0.22s ease;
    backdrop-filter: blur(8px);
}

.newsletter-input-group:focus-within {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.18);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 13px 20px;
    font-size: 14px;
    color: #ffffff;
    min-width: 0;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 22px;
    background: #ffffff;
    color: var(--color-3);
    border: none;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    margin: 4px;
    transition: background 0.22s ease, transform 0.22s ease;
}

.newsletter-btn svg {
    width: 15px;
    height: 15px;
    transition: transform 0.22s ease;
}

.newsletter-btn:hover {
    background: #e8f0fe;
    transform: translateX(2px);
}

.newsletter-btn:hover svg {
    transform: translateX(3px);
}

/* Privacy note */
.newsletter-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

.newsletter-note svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
    .newsletter-inner {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .newsletter-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .newsletter-eyebrow::before {
        display: none;
    }

    .newsletter-form-wrap {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 30px 0;
    }

    .newsletter-title {
        font-size: 22px;
    }

    .newsletter-input-group {
        flex-direction: column;
        border-radius: 14px;
        gap: 0;
    }

    .newsletter-input {
        padding: 14px 18px;
        text-align: center;
    }

    .newsletter-btn {
        margin: 0 6px 6px;
        justify-content: center;
        border-radius: 10px;
    }
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background: #ffffff;
    border-top: 1px solid #f0f3f8;
}

.partners-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--color-3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 35px;
}

.partners-slider {
    width: 100%;
    position: relative;
    /* Optional: add mask for fade effect at edges */
    /* -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); */
}

.partners-slider .slick-slide {
    margin: 0 10px;
    /* Adds gap between items */
}

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

.partner-item {
    /* height: 70px; */
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e8eef8;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(26, 60, 122, 0.05);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.partner-item:hover {
    box-shadow: 0 8px 24px rgba(26, 60, 122, 0.12);
    border-color: #c2d0ea;
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* filter: grayscale(100%) opacity(0.7); */
    transition: filter 0.3s ease;
    transition: transform 0.3s ease;
}

.partner-item:hover img {
    /* filter: grayscale(0%) opacity(1); */
    transform: scale(1.05);
}

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

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

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

    .section-desc {
        font-size: 15px;
    }

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

/* Policy Bar Section */
.policy-slider {
    margin: 0 -10px;
}

.policy-slider .policy-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 12px 10px;
    outline: none;
}

.policy-slider .policy-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

/* ====== SECTION: DỊCH VỤ CUNG CẤP (HOME SERVICES SHOWCASE) ====== */
.home-services-showcase {
    padding: 70px 0 65px;
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

/* .home-services-showcase::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.7;
    pointer-events: none;
}

.home-services-showcase::after {
    content: "";
    position: absolute;
    bottom: 30px;
    right: 20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.7;
    pointer-events: none;
} */

.hss-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.hss-badge-subtitle {
    display: inline-block;
    font-size: clamp(20px, 1.6vw, 30px);
    font-weight: 700;
    color: var(--color-3);
    margin-bottom: 6px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.hss-main-title {
    font-size: clamp(20px, 2.6vw, 30px);
    font-weight: 700;
    color: #1e293b;
    margin: 4px 0 16px 0;
    line-height: 1.35;
}

.hss-divider-line {
    width: 80px;
    height: 3.5px;
    background: var(--color-3);
    margin: 0 auto;
    border-radius: 4px;
}

.hss-showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.hss-col {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.hss-col-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.hss-illustration-box {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 360px;
    height: 360px; */
    max-width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 50%;
    background: #027887;
    background: linear-gradient(135deg, #1fa4b4, #027887);
    padding: 5px;
    border: 4px solid rgba(31, 164, 180, 0.35);
    box-shadow: 0 16px 36px rgba(2, 120, 135, 0.22);
    position: relative;
    animation: hssFloat 4.5s ease-in-out infinite;
}

.hss-center-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #e6f6f8;
    background: linear-gradient(135deg, #e6f6f8, #d1eff3);
    padding: 8px;
    border: 5px solid #ffffff;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.08);
    display: block;
    transition: transform 0.4s ease;
}

.hss-illustration-box:hover .hss-center-img {
    transform: scale(1.03);
}

@keyframes hssFloat {

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

    50% {
        transform: translateY(-8px);
    }
}

.hss-service-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    padding: 20px 22px;
    border-radius: 14px;
    border: 1px solid #e0f0f2;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    background: linear-gradient(90deg, #1fa4b4, #027887);
}

.hss-service-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-3);
    box-shadow: 0 12px 28px rgba(2, 120, 135, 0.15);
}

@media (min-width: 992px) {
    .hss-col-left .hss-service-card:nth-child(odd) {
        margin-left: 35px;
    }

    .hss-col-left .hss-service-card:nth-child(even) {
        margin-right: 35px;
    }

    .hss-col-right .hss-service-card:nth-child(odd) {
        margin-right: 35px;
    }

    .hss-col-right .hss-service-card:nth-child(even) {
        margin-left: 35px;
    }
}

.hss-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.hss-card-icon img {
    filter: brightness(0) invert(1);
}

.hss-service-card:hover .hss-card-icon {
    transform: scale(1.08);
}

.hss-card-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.hss-card-content {
    flex: 1;
}

.hss-card-title {
    font-size: 17.5px;
    font-weight: 700;
    color: #FFF;
    margin: 0 0 5px 0;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.hss-service-card:hover .hss-card-title {
    color: #FFF;
}

.hss-card-desc {
    font-size: 13.5px;
    line-height: 1.5;
    color: #fff;
    margin: 0;
    text-align: justify;
}

/* Responsive */
@media (max-width: 1199px) {
    .hss-showcase-wrapper {
        gap: 20px;
    }

    .hss-service-card {
        padding: 16px 18px;
        gap: 14px;
    }

    .hss-card-title {
        font-size: 16px;
    }

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

@media (max-width: 991px) {
    .home-services-showcase {
        padding: 55px 0 45px;
    }

    .hss-showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hss-col-center {
        order: -1;
        margin-bottom: 10px;
    }

    .hss-illustration-box {
        width: 300px;
        height: 300px;
    }

    .hss-col {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 680px) {
    .hss-col {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hss-illustration-box {
        /* width: 250px;
        height: 250px; */
        padding: 8px;
    }

    .hss-center-img {
        padding: 6px;
    }
}

@media (max-width: 540px) {
    .home-services-showcase {
        padding: 40px 0 35px;
    }

    .hss-header {
        margin-bottom: 30px;
    }

    .hss-service-card {
        padding: 14px 16px;
        gap: 12px;
        border-radius: 12px;
    }

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

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

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

/* Featured Section */
.home-featured-section {
    padding: 50px 0 40px;
    background: #f5f6f8;
}

.hfs-main-title {
    text-align: center;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    color: #111;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

/* ---- Tab Panel ---- */
.hfs-tab-panel {
    display: none;
    animation: hfsFadeIn 0.3s ease;
}

.hfs-tab-panel.active {
    display: block;
}

@keyframes hfsFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Panel inner card ---- */
.hfs-panel-inner {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.hfs-banner {
    margin-bottom: 16px;
}

.hfs-banner-link {
    display: flex;
    align-items: stretch;
    gap: 0;
    text-decoration: none;
    color: inherit;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    min-height: 280px;
}

.hfs-banner-link:hover {
    text-decoration: none;
    color: inherit;
}

.hfs-banner-left {
    flex: 0 0 50%;
    max-width: 50%;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

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

.hfs-banner-link:hover .hfs-banner-img {
    transform: scale(1.03);
}

.hfs-banner-right {
    flex: 1;
    background: #f7f8fa;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.hfs-banner-name {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.2;
}

.hfs-brand-lower {
    text-transform: lowercase;
    font-weight: 700;
}

.hfs-banner-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #444;
    margin-top: 2px;
}

.hfs-leica-badge {
    background: #e30613;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
    font-style: italic;
    padding: 1px 7px;
    border-radius: 10px;
    display: inline-block;
    line-height: 1.4;
}

.hfs-banner-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.hfs-price-new {
    font-size: 18px;
    font-weight: 500;
}

.hfs-price-new strong {
    font-weight: 500;
}

.hfs-price-old {
    font-size: 14px;
    color: #5e5e5e;
    text-decoration: line-through;
}

.hfs-banner-desc {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    color: #666;
}

.hfs-unit {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hfs-banner-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 28px;
    background: #1c1c1c;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hfs-banner-link:hover .hfs-banner-btn {
    background: #333;
    color: #fff;
}

/* Products Section */
.hfs-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hfs-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f7f7f7;
    border-radius: 12px;
    padding: 24px 16px 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
}

.hfs-product-card:hover {
    background: #f0f2f5;
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.hfs-prod-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    width: 100%;
    margin-bottom: 16px;
}

.hfs-prod-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.hfs-product-card:hover .hfs-prod-img-wrap img {
    transform: scale(1.06);
}

.hfs-prod-name {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.hfs-prod-price {
    font-size: 18px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hfs-prod-price strong {
    font-weight: 500;
}

.hfs-from {
    color: #777;
    font-size: 14px;
    font-weight: 400;
    margin-right: 2px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .hfs-banner-link {
        flex-direction: column;
        min-height: unset;
    }

    .hfs-banner-left {
        flex: none;
        max-width: 100%;
        width: 100%;
        border-radius: 12px 12px 0 0;
    }

    .hfs-banner-right {
        padding: 24px 20px;
        align-items: center;
        text-align: center;
        border-radius: 0 0 12px 12px;
    }

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

@media (max-width: 540px) {
    .home-featured-section {
        padding: 36px 0 20px;
        background-color: #FFF !important;
    }

    .hfs-panel-inner {
        padding: 5px;
        border-radius: 0px;
        box-shadow: unset;
    }

    .hfs-product-card {
        padding: 13px 10px;
    }

    .hfs-banner-right {
        padding: 20px 14px;
        gap: 10px;
    }

    .hfs-banner-btn {
        padding: 8px 24px;
    }

    .hfs-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .hfs-prod-img-wrap {
        height: 80px;
    }

    .hfs-prod-name {
        font-size: 14px;
        margin: 0 0 5px 0;
    }

    .hfs-prod-price {
        font-size: 12px;
    }

    .hfs-price-old {
        font-size: 10px;
    }
}

.industrial-parks-section {
    padding: 35px 0 45px 0;
    background-color: #ffffff;
}

.ip-title-wrapper {
    text-align: center;
    margin-bottom: 28px;
}

.ip-section-title {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--color-3);
    text-transform: uppercase;
    margin: 0;
    position: relative;
    display: inline-block;
}

.ip-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--color-3);
    border-radius: 3px;
    margin: 12px auto 0;
}

/* Slider layout */
.ip-slider {
    margin: 0 -8px;
    position: relative;
}

.ip-slider:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
    gap: 16px;
}

.ip-slider:not(.slick-initialized) .ip-slide-item {
    flex: 0 0 calc(20% - 13px);
}

.ip-slider .slick-list {
    padding: 10px 0;
    overflow: hidden;
}

.ip-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.ip-slider .slick-slide {
    padding: 0 8px;
    height: auto;
    display: flex !important;
    flex-direction: column;
}

.ip-slider .slick-slide>div {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ip-slider .ip-slide-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ip-slider .ip-card {
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Slick Arrows */
.ip-slider .slick-prev,
.ip-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 38px;
    height: 38px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    color: #1e293b;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
    padding: 0;
}

.ip-slider .slick-prev {
    left: -14px;
}

.ip-slider .slick-next {
    right: -14px;
}

.ip-slider .slick-prev:hover,
.ip-slider .slick-next:hover {
    background: var(--color-3);
    color: #ffffff;
    border-color: var(--color-3);
}

.ip-slider .slick-prev svg,
.ip-slider .slick-next svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

/* Grid layout fallback */
.ip-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

/* Card */
.ip-card {
    background-color: #ffffff;
    border: 1px solid #e2ecee;
    border-radius: 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.ip-card:hover {
    border-color: var(--color-3);
    box-shadow: 0 10px 24px rgba(0, 168, 181, 0.14);
    transform: translateY(-4px);
}

/* Image Wrap */
.ip-card-img-wrap {
    width: 100%;
    /* height: 180px; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
    background: #f8fafc;
    position: relative;
}

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

.ip-card:hover .ip-card-img {
    transform: scale(1.06);
}

/* Card Body (Bottom text + arrow) */
.ip-card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 14px 16px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    box-sizing: border-box;
}

.ip-card-info {
    flex: 1;
    min-width: 0;
}

/* Title */
.ip-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
    line-height: 1.3;
    transition: color 0.25s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ip-card:hover .ip-card-title {
    color: var(--color-3);
}

/* Subtitle / Desc */
.ip-card-desc {
    font-size: 12px;
    color: #7b8f92;
    margin: 0;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Arrow Circle Button */
.ip-card-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--color-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-3);
    background-color: transparent;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.ip-card:hover .ip-card-btn {
    background-color: var(--color-3);
    color: #ffffff;
    transform: translateX(2px);
}

.ip-card-btn svg {
    transition: transform 0.25s ease;
}

.ip-card:hover .ip-card-btn svg {
    transform: translateX(1px);
}

@media (max-width: 1200px) {
    .ip-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .industrial-parks-section {
        padding: 24px 0 32px;
    }

    .ip-title-wrapper {
        margin-bottom: 16px;
    }

    .ip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ip-card {
        padding: 0;
        border-radius: 10px;
    }

    .ip-card-img-wrap {
        /* height: 135px; */
        margin-bottom: 0;
    }

    .ip-card-body {
        padding: 10px 12px;
    }

    .ip-card-title {
        font-size: 13.5px;
    }

    .ip-card-desc {
        font-size: 11px;
    }

    .ip-card-btn {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .ip-card-btn svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .ip-grid {
        grid-template-columns: 1fr;
    }

    .ip-card {
        padding: 0;
    }

    .ip-card-img-wrap {
        /* height: 180px; */
    }

    .ip-card-body {
        padding: 12px 14px;
    }
}

/* About Us Section */
.hp-about-section {
    padding: 40px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.hp-about-wrapper {
    display: flex;
    align-items: center;
    gap: 35px;
}

/* Left Media Column */
.hp-about-media {
    flex: 0 0 45%;
    max-width: 45%;
}

.hp-about-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 75, 150, 0.12);
    border: 1px solid #e2e8f0;
}

.hp-card-img {
    width: 100%;
    height: auto;
    /* max-height: 540px; */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hp-about-card:hover .hp-card-img {
    transform: scale(1.03);
}

/* Right Content Column */
.hp-about-content {
    flex: 1;
    min-width: 0;
}

/* Sub label */
.hp-about-sub-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hp-sub-line {
    width: 28px;
    height: 3px;
    background-color: var(--color-3);
    border-radius: 2px;
    display: inline-block;
}

.hp-sub-text {
    font-size: 17px;
    font-weight: 400;
    color: #475569;
    letter-spacing: 0.3px;
}

/* Main Heading */
.hp-about-heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-3);
    line-height: 1.3;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Description */
.hp-about-desc {
    color: #334155;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hp-about-desc p {
    margin-bottom: 14px;
}

.hp-about-desc p:last-child {
    margin-bottom: 0;
    line-height: 1.5;
}

.hp-about-desc strong {
    color: #0f172a;
    font-weight: 700;
}

/* Features List */
.hp-about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 12px;
}

.hp-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.hp-feature-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background-color: #f0f9ff;
    border: 1.5px solid var(--color-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-3);
    transition: all 0.3s ease;
}

.hp-feature-icon-box img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.hp-feature-item:hover .hp-feature-icon-box {
    border-color: var(--color-3);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.hp-feature-info {
    flex: 1;
}

.hp-feature-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.hp-feature-text {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Action Button */
.hp-about-action {
    display: flex;
    /* justify-content: right; */
}

.hp-btn-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--color-3);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.hp-btn-more::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    top: calc(50% - 17.5px);
    right: -17.5px;
    opacity: 0.2;
    pointer-events: none;
}

.hp-btn-more:hover {
    background: var(--color-3);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hp-btn-more svg {
    transition: transform 0.3s ease;
}

.hp-btn-more:hover svg {
    transform: translateX(4px);
}

/* Stats / Achievements Bar */
.hp-about-stats-bar {
    margin-top: 28px;
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.hp-stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 12px;
    transition: transform 0.25s ease;
}

.hp-stat-item:hover {
    transform: translateY(-2px);
}

.hp-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #e5e7eb;
}

.hp-stat-icon {
    color: var(--color-3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
}

.hp-stat-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.hp-stat-icon svg {
    width: 34px;
    height: 34px;
}

.hp-stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hp-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-3);
    line-height: 1.15;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.hp-stat-label {
    font-size: 15px;
    color: #334155;
    line-height: 1.4;
    font-weight: 500;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hp-about-wrapper {
        gap: 32px;
    }

    .hp-about-heading {
        font-size: 26px;
    }

    .hp-card-image-wrap {
        height: 320px;
    }

    .hp-about-stats-bar {
        padding: 20px 12px;
    }

    .hp-stat-number {
        font-size: 26px;
    }

    .hp-stat-label {
        font-size: 13.5px;
    }
}

@media (max-width: 868px) {
    .hp-about-wrapper {
        flex-direction: column;
        gap: 36px;
    }

    .hp-about-media {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .hp-about-heading {
        font-size: 24px;
    }

    .hp-card-image-wrap {
        height: 350px;
    }
}

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

    .hp-card-title {
        font-size: 20px;
    }

    .hp-card-subtitle {
        font-size: 13.5px;
    }

    .hp-card-image-wrap {
        height: 260px;
    }

    .hp-about-heading {
        font-size: 21px;
    }

    .hp-about-desc {
        font-size: 14px;
    }

    .hp-feature-icon-box {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .hp-feature-icon-box svg {
        width: 22px;
        height: 22px;
    }

    .hp-feature-title {
        font-size: 15px;
    }

    .hp-feature-text {
        font-size: 13.5px;
    }

    .hp-btn-more {
        padding: 10px 22px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .hp-about-stats-bar {
        padding: 16px 8px;
        margin-top: 20px;
        border-radius: 12px;
    }

    .hp-stat-item {
        padding: 0 6px;
    }

    .hp-stat-number {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .hp-stat-label {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .hp-about-stats-bar {
        padding: 12px 4px;
    }

    .hp-stat-item {
        padding: 0 3px;
    }

    .hp-stat-number {
        font-size: 17px;
    }

    .hp-stat-label {
        font-size: 10.5px;
    }
}

/* ====================================================
   Green Sustainability Section (Bao Bì Xanh)
   ==================================================== */
.green-sustainability-section {
    position: relative;
    background-color: #062f35;
    background-image: linear-gradient(to right, rgba(4, 34, 38, 0.88) 0%, rgba(4, 34, 38, 0.5) 55%, rgba(4, 34, 38, 0.75) 100%), url('/storage/baobihongphat/bg/2026/09/sec04-bg-rLmOvZB0.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 75px 0;
    color: #ffffff;
    overflow: hidden;
}

.gss-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left Column */
.gss-content {
    flex: 1;
    max-width: 630px;
}

.gss-tagline {
    display: inline-block;
    font-size: 26px;
    font-weight: 700;
    color: #FFF;
    /* letter-spacing: 0.8px; */
    text-transform: uppercase;
    margin-bottom: 12px;
}

.gss-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gss-desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: #d1dedf;
    margin: 0 0 26px 0;
    text-align: justify;
}

.gss-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #009aa6;
    background: linear-gradient(90deg, #1fa4b4, #027887);
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gss-btn:hover {
    background: #00b2c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 154, 166, 0.4);
    color: #ffffff !important;
}

.gss-btn svg {
    transition: transform 0.25s ease;
}

.gss-btn:hover svg {
    transform: translateX(4px);
}

/* Right Column (Glassmorphism Card) */
.gss-features-card {
    background: linear-gradient(135deg, rgba(31, 164, 180, 0.6), rgba(2, 120, 135, 0.6));
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */
    /* border: 1px solid rgba(255, 255, 255, 0.22); */
    border-radius: 16px;
    padding: 44px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    max-width: 580px;
    width: 100%;
}

.gss-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: transform 0.25s ease;
}

.gss-feature-item:hover {
    transform: translateY(-3px);
}

.gss-feature-item:not(:nth-child(4n)):not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.gss-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 16px;
}

.gss-feature-text {
    font-size: 14px;
    /* font-weight: 600; */
    color: #ffffff;
    line-height: 1.6;
}

/* Responsive for Green Sustainability Section */
@media (max-width: 1100px) {
    .gss-wrapper {
        gap: 30px;
    }

    .gss-features-card {
        max-width: 480px;
        padding: 24px 18px;
        gap: 14px;
    }

    .gss-feature-item:not(:nth-child(4n)):not(:last-child)::after {
        right: -7px;
    }

    .gss-feature-text {
        font-size: 11.5px;
    }
}

@media (max-width: 991px) {
    .green-sustainability-section {
        padding: 55px 0;
        background-image: linear-gradient(to bottom, rgba(4, 34, 38, 0.9) 0%, rgba(4, 34, 38, 0.8) 100%), url('/storage/baobihongphat/bg/2026/09/sec04-bg-rLmOvZB0.webp');
    }

    .gss-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }

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

    .gss-features-card {
        max-width: 100%;
    }
}

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

    .gss-title {
        font-size: 24px;
    }

    .gss-desc {
        font-size: 13.5px;
    }

    .gss-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .gss-features-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 14px;
        padding: 20px 14px;
        border-radius: 12px;
    }

    .gss-feature-item::after {
        display: none;
    }

    .gss-feature-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 8px;
    }

    .gss-feature-icon svg {
        width: 30px;
        height: 30px;
    }

    .gss-feature-text {
        font-size: 12px;
    }
}

/* Products Section */
.production-process-section {
    background-color: #f8fafc;
    padding: 60px 0;
}

.pps-header {
    margin-bottom: 50px;
    text-align: center;
}

.pps-title {
    font-size: 45px;
    font-weight: 700;
    color: var(--color-3);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pps-subtitle {
    font-size: 26px;
    color: #FFF;
    margin: 0 0 10px 0;
}

.pps-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.pps-step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px;
    position: relative;
    z-index: 2;
}

.pps-icon-wrapper {
    margin-bottom: 18px;
    position: relative;
}

.pps-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--color-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 0 0 5px #ffffff, 0 4px 16px rgba(0, 0, 0, 0.12);
    border: 2px solid #eeddcc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
    font-size: 40px;
}

.pps-step-item:hover .pps-icon-circle {
    transform: translateY(-4px);
    box-shadow: 0 0 0 5px #ffffff, 0 8px 22px rgba(0, 0, 0, 0.18);
}

.pps-icon-circle svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
}

.pps-connector {
    /* flex: 1; */
    height: 2px;
    width: 65px;
    background-color: #cbd5e1;
    margin-top: 36px;
    position: relative;
    z-index: 1;
    align-self: flex-start;
    min-width: 20px;
}

.pps-diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background-color: var(--color-3);
    box-shadow: 0 0 0 2px #f8fafc;
}

.pps-step-content {
    max-width: 220px;
}

.pps-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-3);
    margin: 0 0 8px 0;
}

.pps-step-desc {
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .pps-timeline {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .pps-step-item {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 16px;
        padding: 12px 0;
    }

    .pps-icon-wrapper {
        margin-bottom: 0;
    }

    .pps-icon-circle {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .pps-icon-circle svg {
        width: 24px;
        height: 24px;
    }

    .pps-connector {
        width: 2px;
        height: 28px;
        min-width: unset;
        margin-top: 0;
        margin-left: 29px;
        align-self: flex-start;
    }

    .pps-diamond {
        top: 50%;
        left: 50%;
    }

    .pps-step-content {
        max-width: 100%;
        padding-top: 4px;
    }
}

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

    .pps-header {
        margin-bottom: 24px;
    }

    .pps-title {
        font-size: 22px;
    }

    .pps-subtitle {
        font-size: 13.5px;
    }
}

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

.testimonial-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 30px;
    padding-top: 50px;
    /* 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-3);
    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-3);
    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-3);
    color: #ffffff;
    background-color: var(--color-3);
    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: -15px;
        left: -2px;
    }

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

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

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

    .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: 30px;
    font-weight: 700;
    color: var(--color-3);
    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: 80px;
    height: 3px;
    background: var(--color-3);
    border-radius: 3px;
    margin: 12px auto 16px;
}

.partners-grid-desc {
    font-size: 18px;
    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;
    }
}