		@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Montserrat:wght@300;400;500;700;900&family=Open+Sans:wght@300;700;800&family=Quicksand:wght@300;400;500;700&family=Roboto:ital,wght@0,100;0,500;1,300&display=swap");
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.bp_search_item_link_active{
    font-weight: bold !important;
    color: #000 !important;
}
a {
    text-decoration: none;
}
ul,li {
    list-style-type: none;
}


/* Slide tổng thể */
.slide-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.slide.active img:hover {
  transform: scale(1.05);
}

.slide-text {
  position: absolute;
  bottom: 10%;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}

.slide.active .slide-text {
  opacity: 1;
  transform: translateY(0);
}

/* ẢNH BANNER */

.swiper-slide img{
width:100%;
height:850px;
object-fit:cover;
transform:scale(1);
transition:transform 8s ease;
}

.swiper-slide-active img{
transform:scale(1.08);
}

/* KHUNG CHỮ */

.text_slide_left_5{
position:absolute;
top:75%;
left:8%;
width:720px;
padding:12px 26px;
/* Nền xanh dương */
border-radius:14px;
background:rgba(0, 102, 204, 0.12); /* xanh da trời */
/* Tăng độ đậm bằng viền + hiệu ứng */
  border-left:4px solid #0066cc;
  backdrop-filter:blur(2px);
  -webkit-backdrop-filter:blur(2px);
 box-shadow:0 10px 35px rgba(0, 170, 255, 0.25);
z-index:10;
opacity:0;
transform:translateY(40px);
transition:all 2.2s ease;
}

/* khi slide active thì hiện ra */
.swiper-slide-active .text_slide_left_5{
opacity:1;
transform:translateY(0);
}

/* bỏ nền div bên trong */

.text_slide_left_5 .bp_slide_title_note,
.text_slide_left_5 .content-highlight-box{
background:transparent !important;
box-shadow:none !important;
max-width:none !important;
width:100%;
padding:0 !important;
}

.text_slide_left_5 h2{
font-size:34px;
font-weight:700;
color:white;
margin-bottom:10px;
letter-spacing:0.5px;
}

/* CHỮ */

.main-title{
font-size:28px;
line-height:1.3;
color:white;
}

.description{
font-size:16px;
line-height:1.7;
color:white;
}

.text_slide_left_5 p{
max-width:none !important;
width:100%;
}

/* HIỆU ỨNG CHỮ */

@keyframes slideText{
0%{
opacity:0;
transform:translateX(-40px);
}

100%{
opacity:1;
transform:translateX(0);
}
}

.swiper-slide-active .main-title{
animation:slideText 1s ease forwards;
}

.swiper-slide-active .description{
animation:slideText 1.2s ease forwards;
}

/* NÚT NHẬN TƯ VẤN CHO SLIDER - chuẩn responsive */
.btn-slider {
  display: inline-block;
  background:#0066cc;
  color: #fff;
  padding: 6px 12px;       /* padding mặc định */
  font-size: 12px;         /* chữ nhỏ */
  font-weight: 400;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;

  /* Animation nhấp nháy nền + scale */
  animation: blinkBtn 2s infinite;
  transition: all 0.3s ease;  /* bao gồm màu chữ hover */
}

/* Hover: phồng nhẹ + đổi màu chữ */
.btn-slider:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  color: #fff;       /* chữ đổi màu vàng khi hover */
}

/* Nhấp nháy nền + scale */
@keyframes blinkBtn {
  0%{
    box-shadow:0 0 0 rgba(0,102,204,0.4);
  }
  50%{
    box-shadow:0 0 15px rgba(0,102,204,0.6);
  }
  100%{
    box-shadow:0 0 0 rgba(0,102,204,0.4);
  }
  50% { background-color: #2f7db3; transform: scale(1.05); }
}


/* ===== MOBILE SLIDER FIX CHUẨN ===== */
@media (max-width:768px){

  /* KHUNG SLIDER */
  .swiper,
  .swiper-container{
    height:220px !important;
  }

  .swiper-slide{
    position: relative;
    overflow: hidden;
    max-width:100%;
    display:flex;
    align-items:flex-end; /* chữ nằm dưới */
  }

  /* ẢNH */
  .swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    position:absolute;
    top:0;
    left:0;
  }

  .text_slide_left_5{
    width:90% !important;        /* 👈 QUAN TRỌNG */
    left:5% !important;          /* căn giữa */
    top:auto !important;
    bottom:10px !important;      /* kéo xuống dưới */

    padding:8px 12px !important;
    border-radius:10px;

    transform:none !important;   /* tránh lỗi scale */
  }

  /* GIẢM CHỮ ĐÚNG CHỖ */
  .text_slide_left_5 h2{
    font-size:16px !important;
    margin-bottom:6px;
  }

  .main-title{
    font-size:13px !important;
  }

  .description{
    font-size:11px !important;
    line-height:1.4;
  }

  /* NÚT */
  .btn-slider{
    font-size:11px !important;
    padding:5px 10px !important;
  }

}
/* ================================
   4️⃣ SEARCH / CART / MISC
================================= */

.bp_cls_cart_item { position: relative; }
.bp_cls_cart_item:hover .bp_cart_items_list {
    opacity: 1;
    visibility: visible;
}
.bp_cart_items_list {
    position: absolute;
    top: 100%;
    right: 0;
    width: 270px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

/* Box Dự Án Ngoài Trang Chủ */

.project-box{
flex:0 0 calc(33.333% - 20px);
background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.35s;
position:relative;
}

.project-box:hover{
transform:translateY(-10px);
box-shadow:0 18px 45px rgba(0,0,0,0.15);
}

/* IMAGE */
.project-slider{
    width:100%;
    max-width:1200px;
    overflow:hidden;
    position:relative;
    margin:40px auto 0;
    border-radius:12px;
}

.project-track{
    display:flex;
    flex-wrap:nowrap;
    gap:30px;
    transition:transform 0.5s ease;
}

.project-box { 
   background: #fff; 
   overflow: hidden; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); 
   transition: transform 0.35s ease, 
   box-shadow 0.35s ease; 
   position: relative; 
   border-radius:12px; 
   width:380px;
}
   
.project-box::after {
  content: "";
  display: block;
  height: 3px; /* độ dày đường line */
  width: 100%;
  background: linear-gradient(90deg, #2c6fb7, #3ec6a8); /* giống border-image hiện tại */
  position: absolute;
  bottom: 0;
  left: 0;
}

.project-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.project-box img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, #2c6fb7, #3ec6a8) 1;
  transition: transform 0.5s ease;
  border-radius: 0; 
}

.project-box:hover img {
  transform: scale(1.08);
}

.project-info {
  font-size: 15px;
  color:#163d6b;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
}

.project-info h3 {
  font-size: 18px;
  color: #2c6fb7;
  margin-bottom: 15px;
}

.project-info p {
  font-size: 14px;
  color: #777;
  text-align: center;
  line-height: 1.4;
}

.project-title {
  font-size: 18px;
  color: #163d6b;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin:-5px 0 4px;
}

/* ===== MOBILE: PROJECT 1 CỘT ===== */
@media (max-width:768px){

.project-track{
    gap:15px; /* giảm khoảng cách */
}

.project-box{
    flex:0 0 100% !important;   /* 👈 QUAN TRỌNG */
    max-width:100% !important;
}

.project-box img{
    height:200px; /* cho gọn mobile */
}

.project-title{
    font-size:16px;
}

.project-info p{
    font-size:13px;
}

}

/* Khung mô tả header của các mục tiêu đề ngoài trang chủ */
.section-subtitle {
  background: #f0f0f0;            /* nền xám nhạt */
  border-left: 4px solid #28a745; /* line bên trái màu xanh logo */
  padding: 12px 16px;              /* khoảng cách chữ và viền */
  margin-top: 5px;                /* cách trên so với tiêu đề */
  color: #555;                     /* màu chữ hơi đậm để đọc dễ */
  line-height: 1.6;                /* khoảng cách dòng thoáng */
  border-radius: 14px;                /* bỏ bo góc */
  font-size: 15px;                 /* chữ vừa phải */
  margin: 5px auto 0 auto; 
  max-width: 820px;
  transition: all 0.3s ease;
  position: relative; /* cần để transform hoạt động */
}

/* Highlight từ khóa trong đoạn mô tả */
.section-subtitle .highlight {
  color: #28a745;  /* xanh lá */
  font-weight: 600;
}

/* MŨI TÊN */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(44,111,183,0.8);
  color: #fff;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 0;
  z-index: 20;
  transition: none;
}

.slider-btn:hover {
  background: rgba(62,198,168,0.9);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 0px; /* ngoài box */
}

.slider-next {
  right: 0px;
}

/* Highlight từ khóa */
.section-subtitle .highlight {
  color: #28a745;  /* xanh lá */
  font-weight: 600;
}

/* Hover hiệu ứng cho khung mô tả */
.section-subtitle:hover {
  background-color: #2c6f3f;               /* xanh lá đậm */
  color: #ffffff;                          /* chữ trắng */
  transform: translateY(-3px);             /* nâng nhẹ khi hover */
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}



/* Chỉnh LoGo Khách hàng */

/* ===== SLIDER LOGO ===== */
.brand-slider {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  position: relative;
}

/* ===== TRACK ===== */
.brand-track {
  display: flex;
  gap: 60px;
  animation: slideLogos 20s linear infinite;
}

/* ===== LOGO ITEM ===== */
.brand-track .brand-item{
  background:transparent;
  box-shadow:none;
  border:none;
}

/* ===== LOGO ===== */
.brand-track img {
  height: 70px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  cursor: pointer;

  /* hiệu ứng mặc định */
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* ===== HOVER (FIX KHÔNG CÒN NỀN XÁM) ===== */
.brand-track img:hover {
  transform: translateY(-6px) scale(1.08);

  /* shadow mềm hơn */
  filter: drop-shadow(0 6px 12px rgba(0, 170, 255, 0.3));

  opacity: 1;
}

/* ===== ANIMATION ===== */
@keyframes slideLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== TITLE LOGO ===== */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px;
  margin-top:20px;
}

/* TEXT */
.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #0066cc; /* xanh dương đậm */
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  transition: 0.4s ease;
}

/* LINE */
.logo-container .line {
  flex: 1;
  height: 3px;
  border-radius: 2px;

  /* gradient xanh */
  background: linear-gradient(90deg, #0066cc, #00AEEF, #0066cc);
  background-size: 200% 100%;

  animation: gradientMove 4s ease infinite;
  transition: 0.4s ease;
}

/* khoảng cách */
.logo-container .line-left {
  margin-right: 10px;
}
.logo-container .line-right {
  margin-left: 10px;
}

/* ===== HOVER TITLE ===== */
.logo-container:hover .line {
  transform: scaleX(1.2);
  background: linear-gradient(90deg, #00AEEF, #0066cc, #00AEEF);
}

.logo-container:hover .logo-text {
  color: #00AEEF;
  transform: translateY(-3px);
}

.brand-item{
    background: #f3f3f3;
}

.brand-item img{
    mix-blend-mode: multiply;
}

/* ===== ANIMATION LINE ===== */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .brand-track {
    gap: 30px;
  }

  .brand-track img {
    height: 60px;
    width: 100px;
  }

  .logo-text {
    font-size: 22px;
  }

  .logo-container .line {
    height: 2px;
  }
}

/* Bảng Thống Kê */
.stats-section {
  max-width:1200px;
  margin:30px auto;
  padding:30px 25px;
  border-radius:10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* FLEX */
.stats-container{
  display:flex;
  justify-content:space-between; /* đều hơn */
  align-items:stretch; /* cao bằng nhau */
  gap:30px;
  flex-wrap:nowrap;
}

/* ITEM */
.stat-item{
  flex:1; /* chia đều 4 ô */
  padding:12px 15px;
  border-radius:10px;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
  transition:0.3s;
  display:flex;
  align-items:center;
  gap:12px;
  background:linear-gradient(135deg, #f8fafc, #eef2f6);
  min-width: 220px;
  margin-top:25px;
}

.stat-item:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 25px rgba(0,0,0,0.12);
}

.stat-item:hover .stat-number{
    color:#16a34a;
}  
/* ICON */
.stat-icon{
  width:42px;
  height:42px;
  stroke:#1e73be;
  stroke-width:2;
  fill:none;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

/* TEXT WRAP */
.stat-content{
  display:flex;
  flex-direction:column;
}

/* SỐ */
.stat-number{
  font-size:22px;
  font-weight:700;
  color:#1e73be;
  line-height:1.2;
}

/* LABEL */
.stat-label{
  font-size:13px;
  color:#666;
  line-height:1.3;
}

@media (max-width:768px){
  .stats-container{
    flex-wrap:wrap; /* cho xuống hàng khi mobile */
  }

   .stat-item{
    flex:0 0 100%; /* 1 cột */
  }
}

/* ICON glow nhẹ */
.stat-item:hover .stat-icon{
  stroke:#00AEEF;
  filter: drop-shadow(0 0 6px rgba(0,170,255,0.6));
  transition:0.3s;
}

/* SỐ */
.stat-number{
  transition:0.3s;
  text-align: center;
}

/* Bounce khi chạy xong */
.stat-number.done{
  animation:bounce 0.6s ease;
}

@keyframes bounce{
  0%{transform:scale(1);}
  50%{transform:scale(1.2);}
  100%{transform:scale(1);}
}


/*  BOX BẢN TIN TIN TỨC - SỰ KIỆN */
/* WRAP */
.news-wrap{
  max-width:1200px;
  margin:50px auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
}

/* BOX */
.news-box{
  background:#fff;
  border-radius:14px;
  padding:15px;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  transition:0.3s;
}

.news-box:hover{
  transform:translateY(-5px);
}

/* TITLE */
.news-title{
  font-size:20px;
  font-weight:700;
  color:#0077b6;
  margin-bottom:15px;
  border-left:4px solid #00b4d8;
  padding-left:10px;
}

/* CONTENT */
.news-content{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:15px;
}

/* BIG */
.news-big img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:10px;
}

.news-big h3{
  font-size:15px;
  margin-top:8px;
  line-height:1.4;
}

/* LIST */
.news-item{
  display:flex;
  gap:10px;
  margin-bottom:12px;
  transition:0.3s;
}

.news-item:hover{
  transform:translateX(5px);
}

.news-item img{
  width:80px;
  height:60px;
  object-fit:cover;
  border-radius:6px;
}

.news-item p{
  font-size:14px;
  line-height:1.4;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* MOBILE */
@media(max-width:768px){
  .news-wrap{
    grid-template-columns:1fr;
  }

  .news-content{
    grid-template-columns:1fr;
  }
}

