/*STYLE CŨ*/

/* 🌐 Khung tổng */
.category-section {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* 📦 Lưới danh mục */
.category-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  width: 90%;
  max-width: 1100px;
}

/* 🔹 Từng ô danh mục */
.category-item {
  display: flex;
  align-items: flex-start; /* 🧭 Căn icon lên cùng đỉnh chữ */
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  min-height: 70px; /* 🟢 Giữ chiều cao tối thiểu để ô 1 dòng = ô 2 dòng */
  margin-bottom: 20px;
}

/* 🧩 Icon */
.category-item i {
  color: #1a73e8;
  font-size: 24px;
  min-width: 28px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px; /* 👌 Giúp icon trông cân hơn với chữ 2 dòng */
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

/* ✏️ Chữ */
.category-item img {
  width: 100%;
  height: auto;
  transition: 0.4s ease;
  filter: grayscale(100%);
  opacity: 0.8;
}
/* 💫 Hiệu ứng hover ảnh */
.category-item:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* 💫 Hiệu ứng hover */
.category-item:hover {
  background: #e3f5e5;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgb(57 181 74 / 32%);
}

.category-item:hover i {
  color: #0b57d0;
  transform: scale(1.15);
}

.category-item:hover p {
  color: #c00;
  font-weight: bolder;
}
/* giới thiệu */
.dv-home-2 {
  background: url(../images/bg_gtt.png) top 0 left no-repeat;
  background-size: 100% 850px;
  z-index: 2 !important;
  margin-top: -280px;
  padding-top: 0px;
  display: block;
}
.gioithieu {
  margin-top: 0px;
  background: #fff;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .section-full {
    padding-top: 0px;
  }
  .dv-home-2 {
    background: url(../images/hinhdidong.png) top 0 left no-repeat;
    background-size: 100% 0px;
    z-index: 2 !important;
    margin-top: -20px;
    padding-top: 0px;
    display: none;
  }

  .category-item {
    padding: 16px;
    gap: 14px;
  }
  .hilite-title {
    border: 0px;
  }
  .hilite-title strong {
    display: block;
    font-size: 40px;
    line-height: 50px;
    font-weight: bold;
    color: rgba(191, 191, 191, 0.3);
  }

  .hilite-title span {
    display: block;
    font-size: 24px;
    line-height: 24px;
  }

  .hilite-title.bdr-left {
    border-left: 10px;
    border-style: solid;
  }
  .hilite-title.bdr-right {
    border-right: 10px;
    border-style: solid;
    margin-top: 30px;
  }
  .hilite-title strong {
    font-size: 39px;
    line-height: 46px;
  }
  .hilite-title span {
    font-size: 18px;
    line-height: 18px;
  }
  .category-item i {
    font-size: 20px;
    min-width: 24px;
  }

  .category-item span {
    font-size: 15px;
  }
}

/*STYLE GIỚI THIỆU*/

/* Khung tổng */

.container {
  max-width: 80%;
  margin: 0 auto;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

/* Hình trôi nhẹ */
.image-box img {
  width: 85%;
  height: auto;
}

.floating-img {
  animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Nội dung */
.text-box {
  max-width: 600px;
}

.text-box h1 {
  font-size: 22px;
  font-weight: 800;
  color: #39b54a;
  line-height: 1.5;
  text-align: justify;
}

.text-box p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 14px;
  text-align: justify;
}

.sub-text {
  color: #c00;
  font-weight: 500;
}

/* Nút */
.btn-group {
  margin-top: 25px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.btn.red {
  background: #e63946;
  padding: 10px 30px;
  border-radius: 30px !important;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn.green {
  background: #39b54a;
  padding: 10px 30px;
  border-radius: 30px !important;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn.red:hover {
  opacity: 0.85;
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  color: #fff;
}
.btn.green:hover {
  opacity: 0.85;
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  color: #fff;
}

/* Icon nhỏ trong nút */
.icon {
  font-size: 20px;
}

/* ============================================
   RESPONSIVE - MOBILE
================================================*/

@media (max-width: 992px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 0 10px;
  }

  .text-box h1 {
    font-size: 20px;
  }

  .text-box p {
    font-size: 17px;
  }

  .btn-group {
    justify-content: center;
  }
}

@media (max-width: 790px) {
  .container {
    max-width: 100% !important;
  }
  .text-box h1 {
    font-size: 18px;
  }

  .btn {
    font-size: 16px;
    padding: 12px 20px;
  }
}

/* STYLE CHẠY SỐ*/

.stats-section {
  padding: 60px 0px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.stat-card {
  padding: 30px 20px;
  text-align: center;
  border-radius: 12px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgb(215 211 211);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  border: 2px solid #c00;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c00;
  font-size: 22px;
}

.stat-card .number {
  font-size: 28px;
  color: #c00;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-card p {
  font-size: 16px;
  font-weight: bold;
}

/* Responsive chỉnh riêng mobile */
@media (max-width: 768px) {
  .stats-section {
    padding: 40px 15px;
  }

  .stat-card {
    padding: 25px 15px;
  }

  .stat-card h3 {
    font-size: 24px;
  }

  .stat-card p {
    font-size: 14px;
  }
}

/*STYLE DỊCH VỤ*/

.dichvu-section {
  padding-bottom: 60px;
}
.section-title {
  font-weight: 700;
  letter-spacing: 1px;
  color: #444;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-weight: 600;
  color: #39b44b;
  margin-bottom: 15px;
  padding-top: 20px;
}

.divider {
  width: 60px;
  height: 3px;
  background: #39b44b;
  margin: 15px auto 20px;
}

.service-card p {
  font-size: 18px;
  min-height: 110px;
  padding-bottom: 20px;
}

.btn-orange {
  background: #c00;
  color: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-orange:hover {
  background: #39b44b;
  color: #fff;
}

/* Responsive text adjust */
@media (max-width: 768px) {
  .service-card {
    padding: 25px 20px;
  }
  .service-card p {
    min-height: auto;
  }
}

/* STYLE MẪU HỒ SƠ NĂNG LỰC */

/* SECTION */
.hsnl-section {
  padding: 0 0 60px 0px;
  background: linear-gradient(180deg, #ffffff, #5af03138, #ffbdbd8a);
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #c00;
  margin-bottom: 25px;
  position: relative;
  text-transform: uppercase;
}

/* GRID */
.hsnl-grid {
  display: grid;
  gap: 25px;
}

/* ITEM */
.hsnl-item {
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  transition: 0.4s ease;
}

.hsnl-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hsnl-item:hover img {
  transform: scale(1.05);
}

.hsnl-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hsnl-section .btn-group {
  padding: 0 45%;
}
/* RESPONSIVE */

/* Mobile */
@media (max-width: 767px) {
  .hsnl-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 22px;
  }
  .hsnl-section .btn-group {
    padding: 0 27%;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .hsnl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .hsnl-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*STYLE TẠI SAO CHỌN CHÚNG TÔI*/

/* Responsive */
@media (max-width: 900px) {
  .quality-section .sec-title h2 {
    font-size: 28px !important;
  }
}

/*STYLE BẢNG GIÁ*/

    .banner-section{
        padding:0!important;
    }
    
.pricing-section {
    padding: 0 0 40px 0;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #C00;
    margin-bottom: 40px;
    text-transform: uppercase;
}


.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.pricing-grid {
    display: grid;
    gap: 30px;
}

/* Card chung */
.pricing-card {
    border-radius: 20px;
    padding: 20px 30px;
    color: #fff;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #fff;
}

.pricing-card .sub-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
    background: rgba(255,255,255,0.15);
    padding: 20px 10px;
    border-radius: 6px;
    color: #fff;
    font-style: italic;
}


/* Gradient màu */
.basic {
    background: linear-gradient(180deg, #ffb300, #e65100);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.pro {
    background: linear-gradient(180deg, #ff7043, #d84315);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.premium {
    background: linear-gradient(180deg, #ffb300, #d84315);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Hover */
.pricing-card:hover {
    transform: translateY(-10px);
}

.note-title {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 50px;
}

.note-title strong {
    color: #d32f2f;
}

.highlight {
    color: #d32f2f;
    font-weight: 700;
}

.price {
    font-weight: 700;
    color: #000;
}

.note-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.note-list li {
    padding: 8px 0;
    padding-left: 22px;
    position: relative;
    line-height: 1.6;
    font-size: 18px;
}

.note-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-size: 18px;
}


/* Responsive */

/* Mobile */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pro {
        transform: scale(1);
    }
    .section-title {
        font-size: 21px;
    }
    .note-title {
        font-size: 16px;
    }
}


/* Desktop */
@media (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*STYLE ĐÁNH GIÁ KHÁCH HÀNG*/

.auto-container .title {
  position: relative;
  font-weight: 500;
  padding: 6px 18px;
  font-size: var(--font-14);
  text-transform: capitalize;
  color: var(--white-color);
  transform-origin: top;
  display: inline-block;
  margin-bottom: var(--margin-bottom-20);
  font-family: var(--font-family-Roboto);
}
.auto-container .title:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: -1;
  transform: skewX(-10deg);
  background-color: #c00;
}

@media (max-width: 790px) {
  .testimonial-section {
    display: none;
  }
}

/*STYLE BANNER*/

/* BANNER */
.catalogue-banner {
  background: #c00;
  padding: 60px 0px;
  text-align: center;
  color: #fff;
}

.banner-container {
  max-width: 80%;
  margin: 0 auto;
}

/* SUB TITLE */
.sub-title {
  font-style: italic;
  font-size: 18px;
  margin-bottom: 15px;
  opacity: 0.9;
  color: #fff;
}

/* MAIN TITLE */
.main-title {
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #fff;
  font-size: 32px;
}

/* DESCRIPTION */
.desc {
  font-size: 18px;
  margin-bottom: 35px;
  font-weight: 500;
  color: #fff;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  background: linear-gradient(9deg, #ff9900, #39b54a);
  color: #fff;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
  border: 1px solid #fff;
  position: relative; /* thêm */
  overflow: hidden;
}
/* lớp ánh sáng */
.cta-btn::before {
  content: '';
  position: absolute;
  top: -150%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 60%
  );
  transform: rotate(25deg);
  transition: 1.7s ease;
}
.cta-btn:hover::before {
  top: 100%;
  left: 100%;
}

.cta-btn span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

/* Mobile */
@media (max-width: 790px) {
  .catalogue-banner {
    padding: 50px 15px;
  }

  .sub-title {
    font-size: 15px;
  }

  .main-title {
    font-size: 20px;
    line-height: 1.5;
  }

  .desc {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .cta-btn {
    font-size: 16px;
    padding: 14px 20px;
  }

  .cta-btn span {
    font-size: 12px;
  }
}

/*STYLE TIN TỨC*/

.grid-section {
  padding: 60px 0;
}
.featured-imagebox {
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 0px 15px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
/* lớp ánh sáng */
.featured-imagebox::before {
  content: '';
  position: absolute;
  top: -150%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 60%
  );
  transform: rotate(25deg);
  transition: 1.5s ease;
}
/* hover */
.featured-imagebox:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.featured-imagebox:hover::before {
  top: 100%;
  left: 100%;
}
.img-fluid {
  border-radius: 10px;
}
.featured-content {
  padding: 10px 0;
}
.featured-title .tieude-tintuc {
  font-size: 22px;
  text-align: left;
  line-height: 30px;
  margin: 10px 0;
  height: 55px;
  color: #c00;
  font-weight: 600;
}
.featured-title p {
  margin-bottom: 23px;
  line-height: 28px;
  overflow: hidden;
  height: 80px;
}

.services-section-two .inner-box h3 {
  font-size: 20px !important;
  font-weight: bold !important;
  color: #000 !important;
  padding-top: 15px !important;
}

/* Responsive */
@media (max-width: 900px) {
  .auto-container {
    max-width: 100% !important;
  }
  .grid-section .ttm-box-col-wrapper {
    padding-bottom: 30px;
  }
  .grid-section {
    padding: 30px 0;
  }
  .featured-title .tieude-tintuc {
    font-size: 18px;
  }
  .featured-title p {
    font-size: 16px;
  }
  .services-section-two .inner-container {
    padding-left: 0 !important;
  }
  .faq-section {
    padding: 0px 0px 35px !important;
  }
}

/*STYLE KHÁCH HÀNG TIỀM NĂNG*/
/*STYLE ĐỐI TÁC*/

    .projects{
    text-align:center;
    padding:60px 0px;
    background:#f5f5f5;
}

.projects h2{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #c00;
    text-transform: uppercase;
}

.projects h2 span{
    color:#39b54a;
}

/* GRID LOGO */

.logo-grid{
    list-style:none;
    padding:0;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
    max-width:80%;
}

.logo-grid li{
    background:#fff;
    border-radius:12px;
    padding:20px;
    box-shadow:0 6px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.logo-grid li:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.logo-grid img{
    width:100%;
    height:100px;
    object-fit:contain;
}

/* TABLET */

@media (max-width:992px){
    .logo-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

/* MOBILE */

@media (max-width:790px){
    .logo-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .projects h2{
        font-size:20px;
    }

    .logo-grid img{
        height:40px;
    }
    
}

