.home-slider-top.text-zoom-loop {
    text-align: center;
    margin: auto;
    width: 100%;
    font-size: 20px;
    padding: 20px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    width: 100%;
}

.service-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    /* hoặc 4/3 tùy bố cục */
    cursor: pointer;
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

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

.service-text {
    font-family: 'Times New Roman', Times, serif;
    position: absolute;
    top: 20%;
    left: 15%;
    color: #000;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.service-text h3 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 28px;
    margin: 0;
    font-weight: 500;
}

.service-text span {
    display: block;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.service-grid-title {
    text-align: center;
    margin: auto;
    padding: 5px 20px 20px;
    font-size: 22px;
}

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

.home-slider-main img {
    width: 100%;
    height: 100%;
}

/* Ẩn các chấm mặc định và tự tạo style mới */
.slick-dots {
    position: absolute;
    bottom: 15px;
    /* chỉnh vị trí nếu cần */
    width: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 10;
}

.slick-dots li {
    width: 5px;
    height: 5px;
}

.slick-dots li button {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    /* màu chấm mờ */
    border: none;
    text-indent: -9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
    background-color: #fff;
    /* chấm đang active trắng rõ */
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
    /* viền mờ để nổi trên nền trắng */
    transform: scale(1.1);
}


.section-marieve {
    padding: 80px 0;
    /* max-width: 1200px; */
    margin: 0 auto;
    color: #333;
    line-height: 1.6;
}

/* --- HEADER --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-logo {
    width: 80px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header p {
    font-size: 16px;
    color: #555;
}

/* --- GRID --- */
.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
}

/* --- ITEM --- */
.grid-item {
    background-color: #f9f9f9;
    /* border-radius: 6px; */
    overflow: hidden;
    height: 50%;
    width: 100%;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- TEXT ITEM --- */
.grid-item.text {
    background: #F4F4F5;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.grid-item.text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
    line-height: 1.4;
    font-weight: 600;
}

.grid-item.text p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 22px;
    }

    .section-grid {
        grid-template-columns: 1fr;
    }

    .grid-item.text {
        padding: 20px;
    }
}

.news-section {
    /* padding: 80px 0; */
    /* max-width: 1200px; */
    margin: 0 auto;
    text-align: center;
    color: #333;
}

/* --- TIN TỨC HEADER --- */
.news-header {
    margin-bottom: 100px;
}

.news-logo {
    width: 80px;
    margin-bottom: 15px;
}

.news-header h2 {
    font-size: 28px;
    margin-bottom: 25px;
    letter-spacing: 2px;
    font-weight: 500;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
}

.news-section .btn-primary {
    background-color: #222;
    color: #fff;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 6px;
    display: inline-block;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.news-section .btn-primary:hover {
    background-color: #555;
    color: #fff;
}

/* --- INSTAGRAM SECTION --- */
.instagram-section {
    text-align: center;
}

.instagram-section hr {
    width: 80%;
    max-width: 800px;
    border: none;
    border-top: 1px solid #ddd;
    margin: 25px auto;
}

.instagram-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: #111;
    margin: 15px 0;
}

.instagram-section .desc {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* --- GRID INSTAGRAM --- */
.insta-grid {
    /* display: grid; */
    /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
    gap: 15px;
    margin-bottom: 25px;
}

.insta-item {
    margin: 0 5px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
    background-color: #f7f7f7;
}

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

.insta-item:hover img {
    transform: scale(1.1);
}

.no-data {
    font-size: 14px;
    color: #888;
    margin: 25px 0;
}

/* --- NÚT XEM THÊM --- */
.news-section .btn-secondary {
    background-color: #333;
    color: #fff;
    text-decoration: none;
    padding: 12px 40px;
    border-radius: 6px;
    display: inline-block;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.news-section .btn-secondary:hover {
    background-color: #000;
    color: #fff;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .news-header h2 {
        font-size: 22px;
    }

    .news-section .btn-primary,
    .news-section .btn-secondary {
        width: 80%;
        font-size: 14px;
    }
}

/* ===== WRAPPER ===== */
.news-header {
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 80px 0; */
    color: #333;
}

/* ===== SECTION TITLE ===== */
.hedding-blogs {
    text-align: center;
    margin-bottom: 40px;
}

.block-title .sub-title {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.title-separator {
    position: relative;
    height: 2px;
    background-color: #eee;
    width: 200px;
    margin: 0 auto;
}

.separator-center {
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #000;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* ===== BLOG SLIDER WRAPPER ===== */
.service-slider-blog {
    position: relative;
}

/* ===== CARD CONTAINER ===== */
.news {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.news:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ===== IMAGE WRAPPER ===== */
.news-img {
    position: relative;
    overflow: hidden;
}

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

.news:hover .news-img img {
    transform: scale(1.1);
}

/* ===== CATEGORY TAG ===== */
.news-cat {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #000;
    color: #fff;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.news-cat:hover {
    background-color: #444;
}

/* ===== DATE BADGE ===== */
.news-date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    padding: 5px 8px;
    font-size: 13px;
    color: #000;
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
}

.news-date span:first-child {
    font-size: 16px;
    font-weight: 600;
    display: block;
}

/* ===== CONTENT ===== */
.news-content {
    flex: 1;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-content .velora-hedding {
    font-size: 18px;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.news-content .velora-hedding:hover {
    color: #d1006c;
}

.news-content .news-ext p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ===== LINK BUTTON ===== */
.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.news-link span {
    position: relative;
}

.news-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.news-link:hover svg {
    transform: translateX(4px);
}

.news-link:hover {
    color: #d1006c;
}

/* ===== SPLIDE SUPPORT ===== */
.splide__track {
    overflow: hidden;
    padding: 10px 0;
}

.splide__slide {
    padding: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .news-content {
        padding: 18px;
    }

    .news-content .velora-hedding {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .news {
        margin: 5px;
    }

    .news-img img {
        height: 200px;
    }
}


.news-header-inner {
    text-align: center;
}

.about-gallery {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* --- MỖI HÀNG --- */
.gallery-row {
    display: flex;
    gap: 5px;
}

.gallery-row.bottom {
    justify-content: center;
    /* căn giữa hàng dưới */
}

/* --- MỖI ITEM --- */
.gallery-item {
    position: relative;
    overflow: hidden;
    flex: 1;
    /* border-radius: 6px; */
}

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

/* Hover phóng nhẹ ảnh */
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Caption phủ ngang */
.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 10px;
    text-align: center;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.7);
    color: #333;
    line-height: 1.5;
    backdrop-filter: blur(5px);
    transition: background 0.3s ease;
}

.gallery-item:hover .caption {
    background: rgba(255, 255, 255, 0.85);
}

.grid-item-inner.flex-reverse {
    flex-direction: column-reverse;
}

.grid-item-inner {
    display: flex;
    flex-direction: column;
}


/* --- Responsive --- */
@media (max-width: 992px) {
    .gallery-row {
        flex-wrap: wrap;
    }

    .gallery-item {
        flex: 1 1 calc(50% - 10px);
    }

    .grid-item-inner.flex-reverse {
        flex-direction: column;
    }

    .gallery-row.bottom {
        justify-content: center;
    }

    .section-grid {
        display: flex;
        flex-direction: column;
    }

    .grid-item img {
        width: 100%;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 100%;
    }

    .grid-item-inner.flex-reverse {
        flex-direction: column;
    }

    .caption {
        font-size: 14px;
    }

    .home-slider-top.text-zoom-loop {

        font-size: 14px;

    }

    .service-grid-title h3 {
        font-size: 16px;
    }

    .section-marieve {
        padding: 30px 0;
    }

    .about-gallery {
        padding: 30px 0;
    }
}


.news-header-inner h2 {
    font-size: 36px;
}
