.about-home{
    position:relative;
    padding:60px 0 50px;
    background:rgb(242, 242, 242);
    overflow:hidden;
}

/* BACKGROUND EFFECT */

.about-home::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    background:rgba(13,45,63,0.03);
    border-radius:50%;
    top:-200px;
    right:-180px;
}

/* CONTAINER */

.container-about{
    width:80%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:90px;
    position:relative;
    z-index:2;
}


/* =========================
   LEFT
========================= */

.about-left{
    width:42%;
    position:relative;
}

.about-mini{
    display:inline-flex;
    align-items:center;
    gap:12px;
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;
    color:#c00;
    margin-bottom:22px;
    text-transform:uppercase;
}

.about-mini::before{
    content:"";
    width:45px;
    height:2px;
    background:#c00;
}

.about-title{
    font-size:62px;
    line-height:1.08;
    font-weight:800;
    color:#444;
    margin-bottom:28px;
    text-transform:uppercase;
    letter-spacing:-2px;
}

.about-title a{
    font-size: 35px;
    color:#2957a4;
    text-decoration:none;
    transition:0.3s;
}


.about-text{
    font-size:16px;
    line-height:34px;
    color:#666;
    max-width:560px;
    text-align: justify;
}

.about-text p{
    margin-bottom:18px;
}

/* BUTTON */

.about-btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:210px;
    height:62px;
    margin-top:28px;
    background:#2957a4;
    color:#fff;
    text-decoration:none;
    overflow:hidden;
    border-radius:3px;
    transition:0.4s;
    box-shadow:0 15px 35px rgba(13,45,63,0.15);
}

.about-btn span{
    position:relative;
    z-index:2;
    letter-spacing:3px;
    font-size:13px;
    font-weight:700;
}

.about-btn::before{
    content:"";
    position:absolute;
    inset:0;
    background:#222;
    transform:translateX(-100%);
    transition:0.4s;
}

.about-btn:hover::before{
    transform:translateX(0);
}

.about-btn:hover{
    transform:translateY(-4px);
}

/* =========================
   RIGHT
========================= */

.about-right{
    width:58%;
    position:relative;
}

/* FRAME */

.frame-box{
position: absolute;
    height: 420px;
    border: 28px solid #dfdfdf;
    left: -70px;
    top: 188px;
    z-index: 1;
}

/* SLIDER */

.slider-about{
    position:relative;
    overflow:hidden;
    z-index:2;
    border-radius:6px;
    box-shadow:0 30px 60px rgba(0,0,0,0.12);
}

.slide-track{
    display:flex;
    transition:transform 0.7s ease;
}

.slide-item{
    min-width:100%;
    position:relative;
}

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

.slide-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0));
}

/* =========================
   BUTTON SLIDE
========================= */

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:58px;
    height:58px;
    border:none;
    background:rgba(255,255,255,0.18);
    backdrop-filter:blur(8px);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    z-index:10;
    transition:0.3s;
}

.slider-btn:hover{
    background:#2957a4;
}

.prev-btn{
    left:20px;
}

.next-btn{
    right:20px;
}

/* DOT */

.slider-dots{
    position:absolute;
    left:50%;
    bottom:25px;
    transform:translateX(-50%);
    display:none;
    gap:10px;
    z-index:10;
}

.slider-dots span{
    width:11px;
    height:11px;
    border-radius:50%;
    background:rgba(255,255,255,0.45);
    cursor:pointer;
    transition:0.3s;
}

.slider-dots span.active{
    width:34px;
    border-radius:30px;
    background:#fff;
}

/* =========================
   EXPERIENCE
========================= */

.experience-about{
    width:80%;
    margin:55px auto 0;
    display:flex;
    justify-content:flex-end;
}


.experience-box{
    display:flex;
    align-items:flex-end;
    gap:20px;
    position:relative;
}

.experience-box::after{
    content:"";
    width:10px;
    height:120px;
    background:#2957a4;
    margin-left:5px;
}

.experience-box h3{
    font-size:110px;
    color:#e0e0e0;
    margin:0;
    line-height:0.9;
    font-weight:800;
    letter-spacing:-3px;
}

.experience-box span{
    font-size:28px;
    color:#444;
    line-height:1.4;
    padding-bottom:14px;
    font-weight:500;
}

/* =========================
   RESPONSIVE
========================= */


/* Laptop */
@media (min-width: 1000px) and (max-width: 1500px) {
    .container-about{
        width:95% !important;
    }
    
    .experience-about{
        width:95% !important;
    }
    
    .about-title a{
        font-size: 31px;
    }
    .frame-box {
        height: 370px;
    }
}
/* Tablet*/
@media(max-width:991px){

    .container-about{
        flex-direction:column;
        gap:60px;
    }

    .about-left,
    .about-right{
        width:100%;
    }

    .frame-box{
        display:none;
    }

    .about-title{
        font-size:42px;
    }

    .slide-item img{
        height:380px;
    }

    .experience-about{
        justify-content:center;
    }

}

@media(max-width:767px){

    .about-home{
        padding:70px 0;
    }

    .about-title{
        font-size:32px;
        line-height:1.2;
    }

    .about-text{
        font-size:15px;
        line-height:30px;
    }

    .slide-item img{
        height:240px;
    }

    .slider-btn{
        width:44px;
        height:44px;
        font-size:18px;
    }

    .experience-box{
        gap:12px;
    }

    .experience-box h3{
        font-size:60px;
    }

    .experience-box span{
        font-size:18px;
    }

    .experience-box::after{
        height:70px;
    }

}


/* =========================
    SẢN PHẤM
========================= */




/* =========================
   SECTION HEADING
========================= */

.section-heading{
    text-align: center;
    margin-bottom: 55px;
    padding: 0 15px;
}

/* SUBTITLE */

.section-subtitle{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 102, 0, 0.08);
    color: #fe0000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* TITLE */

.section-heading h2{
    font-size: 38px;
    line-height: 1.35;
    font-weight: 800;
    color: #111827;
    margin-bottom: 18px;
}

.section-heading h2::after{
    content: "";
    width: 85px;
    height: 4px;
    background: linear-gradient(90deg,#fe0000,#ff914d);
    display: block;
    margin: 2px auto 0;
    border-radius: 50px;
}

/* DESC */

.section-heading p{

    margin: auto;
    font-size: 16px;
    line-height: 1.9;
    color: #6b7280;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .section-heading{
        margin-bottom: 45px;
    }

    .section-heading h2{
        font-size: 31px;
    }
}

@media(max-width:767px){

    .section-heading h2{
        font-size: 26px;
        line-height: 1.5;
    }

    .section-heading p{
        font-size: 15px;
        line-height: 1.8;
    }

    .section-subtitle{
        font-size: 13px;
        padding: 7px 15px;
    }
}
/* CARD */
/* =========================
   LOCATION SECTION
========================= */

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

.location-section .container{
    width: 80%;
    margin: auto;
    padding: 0 15px;
}


/* =========================
   GRID
========================= */

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

/* =========================
   CARD
========================= */

.location-card{
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition: .45s ease;
}

/* LARGE */

.card-large{
    grid-column: span 2;
    min-height: 420px;
}

/* MEDIUM */

.card-medium{
    min-height: 200px;
}

/* =========================
   IMAGE
========================= */

.location-card img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 440px !important;
    object-fit: cover;
    transition: 0.6s ease;
}

/* DARK OVERLAY */

.location-card::before{
    content: "";
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.25) 45%,
        rgba(0,0,0,.05) 100%
    );

    z-index: 1;
}

/* SHINE EFFECT */

.location-card::after{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transform: skewX(-20deg);
    transition: .8s;
    z-index: 2;
}

/* =========================
   CONTENT
========================= */

.location-content{
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 14px;
}

/* PRODUCT TITLE */

.location-content h3{
      margin: 0 0 10px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
    color: #eeee06;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, .35);
}

/* PRODUCT COUNT */

.location-content span{
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 6px 18px;
    border-radius: 50px;

    background: rgba(255,255,255,.14);
    backdrop-filter: blur(6px);

    color: #fff;
    font-size: 14px;
    font-weight: 600;

    border: 1px solid rgba(255,255,255,.2);
}

/* =========================
   HOVER
========================= */

.location-card:hover{
    transform: translateY(-10px);
    box-shadow:
    0 25px 60px rgba(0,0,0,.18);
}

.location-card:hover img{
    transform: scale(1.08);
}

.location-card:hover::after{
    left: 140%;
}



/* =========================
   RESPONSIVE
========================= */

/* Laptop */
@media (min-width: 1000px) and (max-width: 1500px) {
    .location-section .container{
        width:95% !important;
    }
}

@media(max-width:991px){

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

    .card-large{
        grid-column: span 2;
    }

    .location-content h3{
        font-size: 24px;
    }
}

@media(max-width:767px){

    .location-section{
        padding: 60px 0;
    }

    .location-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .card-large,
    .card-medium{
        grid-column: unset;
        min-height: 260px;
    }

    .location-content{
        padding: 14px;
    }

    .location-content h3{
        font-size: 22px;
    }

    .location-content span{
        font-size: 13px;
        padding: 8px 14px;
    }
}




/* =========================
    SẢN PHẤM
========================= */

/* =========================
   WHY CHOOSE US
========================= */

.why-choose-us{
    padding: 50px 0;
    background: linear-gradient(to bottom, #ffffff, #f7f9fc);
    position: relative;
    overflow: hidden;
}

.why-choose-us .container{
    width: 80%;
    margin: auto;
    padding: 0 15px;
}


/* =========================
   TITLE
========================= */

.section-title{
    text-align: center;
    margin-bottom: 55px;
}

.section-title h2{
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
}

.section-title h2::after{
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg,#c00,#fe0000);
    display: block;
    margin: 6px auto 0;
    border-radius: 50px;
}

.section-title p{
    margin: auto;
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

/* =========================
   GRID
========================= */

.why-choose-us .row{
    row-gap: 30px;
}

/* =========================
   FEATURE BOX
========================= */

.feature-box{
    background: #fff;
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
    border: 1px solid #edf2f7;
    box-shadow:
        0 10px 30px rgba(15,23,42,.05);
}

/* glow effect */
.feature-box::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        135deg,
        rgba(255,91,46,.06),
        rgba(255,140,66,.02)
    );
    opacity: 0;
    transition: .4s;
}

.feature-box:hover{
    transform: translateY(-10px);
    box-shadow:
        0 20px 45px rgba(15,23,42,.12);
}

.feature-box:hover::before{
    opacity: 1;
}

/* =========================
   ICON
========================= */

.icon-circle{
    width: 95px;
    height: 95px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background:
    linear-gradient(135deg,#fff,#fff7f3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;

    box-shadow:
        0 12px 30px rgba(255,91,46,.12);
}

.icon-circle img{
    width: 67px;
    height: 67px;
    object-fit: contain;
    transition: .35s;
}

.feature-box:hover .icon-circle img{
    transform: scale(1.12) rotate(3deg);
}

/* =========================
   TITLE ITEM
========================= */

.feature-box h3{
    font-size: 21px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

/* =========================
   DESC
========================= */

.feature-box p{
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* =========================
   HOVER
========================= */

.feature-box:hover h3{
    color: #ff5b2e;
}

/* =========================
   MOBILE
========================= */

/* Laptop */
@media (min-width: 1000px) and (max-width: 1500px) {
    .why-choose-us .container{
        width:95% !important;
    }
}

@media(max-width:991px){

    .why-choose-us{
        padding: 60px 0;
    }

    .section-title h2{
        font-size: 30px;
    }

    .feature-box{
        padding: 35px 22px;
    }
}

@media(max-width:767px){

    .why-choose-us{
        padding: 50px 0;
    }

    .section-title{
        margin-bottom: 40px;
    }

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

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

    .feature-box{
        border-radius: 20px;
        padding: 30px 20px;
    }

    .icon-circle{
        width: 82px;
        height: 82px;
    }

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

    .feature-box h3{
        font-size: 19px;
    }
}





.service-home{
    position:relative;
    padding:110px 0 90px;
    background:#f2f2f2;
    overflow:hidden;
}

.service-container{
    width:80%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
}



/* =========================
   LEFT
========================= */

.service-left{
    width:40%;
}

.service-mini{
    display:block;
    font-size:22px;
    color:#C00;
    margin-bottom:14px;
    letter-spacing:1px;
}

.service-title{
    font-size:56px;
    line-height:1.08;
    font-weight:800;
    color: #2957a4;
    text-transform:uppercase;
    margin-bottom:28px;
}

.service-text{
    font-size:16px;
    line-height:36px;
    color:#777;
    text-align: justify;
}

.service-text p{
    margin-bottom:18px;
}

/* =========================
   RIGHT
========================= */

.service-right{
    width:60%;
    position:relative;
}

/* FRAME */

.service-frame{
    position:absolute;
    width:680px;
    height:430px;
    border:26px solid #e1e1e1;
    left:-60px;
    top:65px;
    z-index:1;
}

/* SLIDER */

.service-slider{
    position:relative;
    overflow:hidden;
    z-index:2;
    box-shadow:0 30px 60px rgba(0,0,0,0.14);
}

.service-track{
    display:flex;
    transition:transform 0.7s ease;
}

.service-item{
    min-width:100%;
    position:relative;
}

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

/* OVERLAY */

.service-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,0.82),
    rgba(0,0,0,0.08));
    display:flex;
    align-items:flex-end;
    padding:45px;
}

/* INFO */

.service-info{
    position:relative;
    padding-left:22px;
}



.service-info h3{
    font-size:44px;
    color:#fff;
    margin-bottom:14px;
    font-weight:700;
}

.service-info span{
    color:#fff;
    font-size:17px;
}

/* BUTTON */

.service-btn{
    position:absolute;
    bottom:25px;
    width:54px;
    height:54px;
    border:none;
    border-radius:50%;
    background:#2957a4;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    z-index:10;
    transition:0.3s;
}

.service-btn:hover{
    background:#2957a4;
}

.prev-service{
    left:18px;
}

.next-service{
    left:82px;
}

/* =========================
   BRAND
========================= */

.service-brand{
    width:80%;
    margin:70px auto 0;
    display:flex;
    align-items:flex-end;
    gap:25px;
}

.brand-line{
    width:10px;
    height:125px;
    background:#2957a4;
}

.brand-text strong{
    display:block;
    font-size:92px;
    line-height:1;
    color:#e1e1e1;
    font-weight:800;
}

.brand-text span{
    font-size:22px;
    color:#555;
}

/* =========================
   RESPONSIVE
========================= */

/* Laptop */
@media (min-width: 1000px) and (max-width: 1500px) {
    .service-container{
        width:95% !important;
    }
    .container-about{
        width:95% !important;
    }
    .service-brand{
        width:95% !important;
    }
    .brand-text strong{
        font-size: 70px;
    }
    .service-right .service-frame{
        height: 590px;
    }
    .service-title{
        font-size:45px;
    }
}

@media(max-width:991px){

    .service-container{
        flex-direction:column;
    }

    .service-left,
    .service-right{
        width:100%;
    }

    .service-title{
        font-size:42px;
    }

    .service-frame{
        display:none;
    }

    .service-item img{
        height:380px;
    }

    .service-info h3{
        font-size:30px;
    }

    .brand-text strong{
        font-size:56px;
    }

}

@media(max-width:767px){

    .service-home{
        padding:70px 0;
    }

    .service-title{
        font-size:30px;
        line-height:1.2;
    }

    .service-text{
        font-size:15px;
        line-height:30px;
    }

    .service-item img{
        height:260px;
    }

    .service-overlay{
        padding:25px;
    }

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

    .service-info span{
        font-size:14px;
    }

    .service-btn{
        width:42px;
        height:42px;
        font-size:16px;
    }

    .next-service{
        left:68px;
    }

    .brand-line{
        height:70px;
    }

    .brand-text strong{
        font-size:40px;
    }

}
/* =========================
   KHUNG ẨN PHÍA SAU
========================= */
/* =========================
   FRAME LUXURY
========================= */

.service-frame{
    width: 950px;
    height: 665px;
    left: -40px;
    top: -40px;
    z-index: 2;
    position: absolute;

    border-radius:2px;

    /* nền kính */
    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.45),
        rgba(255,255,255,0.12)
    );

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,0.65);

    /* chiều sâu */
    box-shadow:
    0 40px 80px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.55);

    overflow:hidden;
}

/* KHUNG NHỎ PHÍA TRONG */

.service-frame::before{
    content:"";

    position:absolute;

    inset:28px;

    border:1px solid rgba(255,255,255,0.6);

    pointer-events:none;
}

/* GÓC NHẤN */

.service-frame::after{
    content:"";

    position:absolute;

    width:120px;
    height:120px;

    right:28px;
    top:28px;

    border-top:4px solid #2957a4;
    border-right:4px solid #2957a4;

    opacity:0.85;
}

/* SHAPE DECOR */

.service-right .shape-decor{
    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(13,45,63,0.12),
        rgba(13,45,63,0)
    );

    top:-55px;
    right:-65px;

    z-index:0;
}

/* THÊM LINE DECOR */

.service-right .line-decor{
    position:absolute;

    width:160px;
    height:160px;

    left: -65px;
    bottom: -65px;

    border-left:6px solid rgba(13,45,63,0.18);
    border-bottom:6px solid rgba(13,45,63,0.18);

    z-index:0;
}


/* ==============================
ĐỐI TÁC VNEMICO
============================== */


.doitacatv {
    padding: 70px 20px;
    background: #fff;
}

.doitacatv-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.doitacatv-content {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
	margin-bottom: 32px;
}

.doitacatv-lead {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
}

/* LOGO GRID */
.doitacatv-logos {
    list-style: none;
    padding: 0;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.doitacatv-logos li {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px; /* bạn muốn ít bo thì để 8px */
    padding: 10px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.doitacatv-logos img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}
.doitacatv-logos li {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 6px 15px rgba(0,0,0,0.05);

    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* hover sang hơn */
.doitacatv-logos li:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #f0caca;
}
.doitacatv-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #0d47a1;
    position: relative;
    margin-bottom: 45px;
    letter-spacing: 0.5px;
}

/* line dưới title */
.doitacatv-title::after {
    content: "";
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, #b30000, #ff4d4d);
    display: block;
    margin: 12px auto 0;
    border-radius: 3px;
    animation: lineGrow 0.8s ease;
}

@keyframes lineGrow {
    from { width: 0; opacity: 0; }
    to { width: 90px; opacity: 1; }
}
.doitacatv-content {
    font-size: 15px;
    line-height: 1.8;
    color: #444;

    background: #fff;
    padding: 25px;
    border-radius: 12px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.doitacatv-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.doitacatv-lead {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}
/* ánh sáng quét nhẹ */
.doitacatv-logos li::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 120%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );
    transform: rotate(25deg);
    transition: 0.6s;
}

.doitacatv-logos li:hover::before {
    left: 120%;
}

.doitacatv-logos img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;

    filter: grayscale(20%);
    transition: 0.3s;
}

.doitacatv-logos li:hover img {
    filter: grayscale(0%);
}

/* MOBILE */
@media (max-width: 768px) {
    .doitacatv-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* TIN TỨC VNMICO */


/* SECTION */
.titletinatv {
    padding: 70px 20px;
    background: #f7f9fc;
}

/* TITLE */
.titletinatv-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 40px;
    position: relative;
}

.titletinatv-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #b30000, #ff4d4d);
    display: block;
    margin: 10px auto 0;
    border-radius: 3px;
}

/* CARD */
.titletinatv-item {
    margin-bottom: 25px;
}

/* IMAGE */
.titletinatv-img {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.titletinatv-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;

    transition: 0.4s ease;
}

.titletinatv-img:hover img {
    transform: scale(1.08);
}

/* CONTENT */
.titletinatv-content {
    background: #fff;
    padding: 15px 15px 18px;

    border-radius: 0 0 10px 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* TITLE NEWS */
.titletinatv-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    height: 40px;
}

.titletinatv-name a {
    color: #111;
    text-decoration: none;
    transition: 0.3s;
}

.titletinatv-name a:hover {
    color: #c00;
}

/* DESC */
.titletinatv-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* HOVER CARD */
.titletinatv-item:hover .titletinatv-content {
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transform: translateY(-3px);
    transition: 0.3s;
}



/* l;iên hệ */

/* SECTION BACKGROUND */
.titlelienheatv {
    padding: 80px 20px;
    background: linear-gradient(120deg, #f7f9fc, #eef2f7);
	background:url("../hinhmenu/bg-lienhe.jpg") no-repeat center
}

/* BOX FORM */
.titlelienheatv-form {
    background: #fff;
    padding: 30px;
    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

    transition: 0.3s;
}

/* TITLE */
.titlelienheatv-title {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

/* DESC */
.titlelienheatv-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* INPUT */
.titlelienheatv-form input {
    width: 100%;
    padding: 12px 14px;

    border: 1px solid #e5e7eb;
    border-radius: 10px;

    font-size: 14px;
    outline: none;

    transition: 0.3s;
    background: #fafafa;
	margin-bottom: 21px;
}

/* focus */
.titlelienheatv-form input:focus {
    border-color: #c00;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(204,0,0,0.1);
}

/* BUTTON */
.titlelienheatv-btn {
    margin-top: 18px;
    width: 100%;
    padding: 12px;

    border: none;
    border-radius: 10px;

    background: linear-gradient(135deg, #b30000, #ff2e2e);
    color: #fff;

    font-weight: 600;
    cursor: pointer;

    transition: 0.3s;
}

.titlelienheatv-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(204,0,0,0.25);
}




/* SECTION */
.news-section{
    padding:70px 20px;
	 background:#f2f2f2;
}

.container{
    max-width:1450px;
    margin:auto;
}

/* GRID */
.news-grid{
    display:grid;
    grid-template-columns:1.5fr .8fr .75fr;
    gap:28px;
    align-items:start;
}

/* CARD */
.news-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    position:relative;
padding: 10px;
    box-shadow: 0 10px 30px rgba(15,23,42,.05);

    transition:
    transform .45s ease,
    box-shadow .45s ease;

    opacity:0;
    transform:translateY(40px);
}

.news-card.show{
    opacity:1;
    transform:translateY(0);
}

/* Hover */
.news-card:hover{
    transform:translateY(-8px);
    box-shadow:
    0 25px 50px rgba(15,23,42,.12);
}

/* IMAGE */
.news-thumb{
    position:relative;
    overflow:hidden;
    border-radius:6px;
    height:280px; /* chiều cao khung ảnh */
}

.news-thumb img{
    width:100%;
    height:100%;
    object-fit:cover; /* ảnh tự crop đều */
    transform:scale(0.92); /* bóp nhỏ nhẹ */
    transition:transform .5s ease;
}


.news-thumb1tin{
    position:relative;
    overflow:hidden;
    border-radius:6px;
    height:auto; /* chiều cao khung ảnh */
}

.news-thumb1tin img{
    width:100%;
    height:100%;
    object-fit:cover; /* ảnh tự crop đều */
    transform:scale(0.98); /* bóp nhỏ nhẹ */
    transition:transform .5s ease;
}
/* Hover zoom nhẹ */
.news-card:hover .news-thumb img{
    transform:scale(1);
}

.news-thumb img{
    width:100%;
    display:block;
    height:100%;
    object-fit:cover;

    transform:scale(1.22);

    animation:premiumZoomOut 14s ease-out forwards;

    transition:transform 1.5s ease;

    will-change:transform;
}

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

/* Overlay */
.news-thumb::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.35),
    rgba(0,0,0,.02)
    );
    z-index:1;
}

/* CONTENT */
.news-content h3{
    position:relative;
    display:inline-block;
    transition:color .3s ease;
}

.news-content h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:2px;
    background:#c59d5f;
    transition:width .35s ease;
}

.news-card:hover .news-content h3{
    color:#c59d5f;
}

.news-card:hover .news-content h3::after{
    width:100%;
}

.news-contentright{
    padding:1px;
}
.news-contentright h3{
       font-size: 16px;
    margin: 1px;
}

.news-content{
    padding:10px;
}

.news-content h2,
.news-content h3{
    font-weight:700;
    line-height:1.5;
    color:#0f172a;
    margin-bottom:18px;
}

.news-content h2{
    font-size: 20px;
    margin-top: 3px;
}

.news-content h3{
       font-size: 16px;
    margin: 1px;
}

.news-content p{
    color:#64748b;
    line-height:1.9;
    font-size:17px;
}

/* RIGHT LIST */
.news-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

/* SMALL CARD */
.news-small{
    display:flex;
    align-items:center;
    gap:14px;

    background:#fff;

    border-radius:10px;
    overflow:hidden;

    padding:12px;

    box-shadow:
    0 8px 25px rgba(15,23,42,.05);

    transition:
    transform .35s ease,
    box-shadow .35s ease;

    opacity:0;
    transform:translateX(30px);
}

.news-small.show{
    opacity:1;
    transform:translateX(0);
}

.news-small:hover{
    transform:translateY(-5px);
    box-shadow:
    0 18px 35px rgba(15,23,42,.1);
}

/* THUMB */
.news-small-thumb{
    width:100px;
    height:auto;
    border-radius:14px;
    flex-shrink:0;
    position:relative;
}

.news-small-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius: 5px;
    transform:scale(1.18);

    animation:premiumZoomOut 14s ease-out forwards;

    transition:transform 1.5s ease;
}

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

/* INFO */
.news-small-info span{
    display:block;
    color:#94a3b8;
    font-size:13px;
    margin-bottom:8px;
}

.news-small-info h4{
    font-size:21px;
    line-height:1.5;
    font-weight:600;
    color:#0f172a;
}

/* ANIMATION */
@keyframes premiumZoomOut{

    0%{
        transform:scale(1.22);
    }

    100%{
        transform:scale(1);
    }

}

/* TABLET */
@media(max-width:1100px){

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

    .news-content h2{
        font-size:30px;
    }

}

/* MOBILE */
@media(max-width:767px){

    .news-section{
        padding:50px 15px;
    }

    .news-grid{
        gap:20px;
    }

    .news-content{
        padding:20px;
    }

    .news-content h2{
        font-size:24px;
    }

    .news-content h3{
        font-size:21px;
    }

    .news-content p{
        font-size:15px;
        line-height:1.8;
    }

    .news-small{
        align-items:flex-start;
    }

    .news-small-thumb{
        width:95px;
        height:auto;
    }

    .news-small-info h4{
        font-size:15px;
    }

}