@charset "UTF-8";
 .hero {
  color: #cbd5e1;
  position: relative;
  overflow: hidden;
  z-index: 1;
 }
 .box-square{
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: repeat;
  pointer-events: none;
  zoom: 1;
  z-index: -1;
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% + 150px);
  height: calc(100% + 150px);
  animation: 100s linear 0s infinite normal none running bgZoom;
 }
 .box-faq{
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: repeat;
  pointer-events: none;
  zoom: 1;
  z-index: -1;
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% + 150px);
  height: calc(100% + 150px);
  animation: 100s linear 0s infinite normal none running bgZoom;
  background-image: url("../image/faq_9.jpg");
 }

.overlay {
  background-color: rgb(30 41 59 / 60%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.title {
  font-size: 2.0rem;
  font-weight: bold;
  margin: 1.2rem auto 0.2rem auto;
  line-height: 1.4;
  color: #f8fafc;
  max-width: 440px;
}
.description {
  font-size: 1.0rem;
  line-height: 1.7;
  margin: 12px auto 32px auto;
  max-width: 530px;
  color: #cbd5e1;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 1.4rem;
  border-radius: 30px;
  font-size: 15px;
  border: 1px solid #cbd5e1;
  gap: 5px;
  transition: all 0.3s ease;
  align-items: center;
  display: flex;
}
.feature img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
/*
.feature:hover{
  background-color: transparent;
  cursor: none;
  transform: translateY(-2px);
} */
.feature span{
    color:#f4efef;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border-radius: 6px;
    width: 320px;
    height: 56px;
    justify-content: center;
    border: none;
}
.btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;

}
.primary {
  background-color: #3b82f6;
  color: #ffffff;
}

.primary:hover {
  background-color: #2563eb;
}

.secondary {
  background-color: #eff6ff;
  color: #3b82f6;
}

.secondary:hover {
  background-color: #e0e7ff;
}
@keyframes bgZoom {
  25% {
    transform: translate3d(150px, -150px, 0px) rotate(0.001deg);
}
75% {
    transform: translate3d(0px, 0px, 0px) rotate(0.001deg);
}
}

/* Responsive */
@media (max-width: 600px) {


  .title {
    font-size: 1.5rem;
    margin: 1rem 0;
  }


  .description {
    font-size: 0.7rem;
    margin: 1rem auto;
    max-width: 95%;
  }


  .btn {
    width: 100%;
    text-align: center;
  }

  .features {
    flex-direction: column;
    font-size: 14px;
    padding: 0.5rem 1rem;
  }

  .feature img {
    width: 16px;
    height: 16px;
  }
}

.benefit-section {
  padding: 60px 20px;
  background-color: #fff;
}

.benefit-block{
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-direction: row;
  justify-content: space-around;
}
.benefit-text {
  text-align: start;
  width: 720px;
}

.benefit-text div {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.benefit-text .highlight {
  color: #3b82f6;
}

.benefit-text ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 1.5rem;
}
.benefit-text ul li::before {
    content: '•';
    position: absolute;
    left: -18px;
    top: -2px;
    color: #333;
    font-size: 20px;
    line-height: 1.6;
}
.benefit-text ul li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  display: block;
  position: relative;
}

.btn.small-btn {
  padding: 6px 14px;
  font-size: 0.875rem;
  border-radius: 6px;
}

.btn.small-btn img {
  width: 16px;
  height: 16px;
}
.btn-register {
  display: inline-block;
  background-color: #3b82f6;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-register:hover {
  background-color: #2563eb;
}

.benefit-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 720px;
}

.image-wrapper {
  position: relative;
  display: inline-flex;
}

.image-wrapper::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid #3b82f6;
  z-index: 0;

}

.image-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .benefit-container {
    flex-direction: column;
    text-align: center;
  }

  .benefit-text ul {
    text-align: left;
  }

  .benefit-image {
    margin-top: 20px;
  }

  .image-wrapper::after {
    top: 10px;
    left: 10px;
  }
  .benefit-block{
    flex-wrap: wrap;
  }
}

.features-section {
  padding: 60px 20px;
  background-color: #f9fbfc;
  background-image: url("../image/featureavatar.png"); /* đảm bảo đúng đường dẫn */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.section-title .highlight {
  color: #3b82f6;
}

.container-solution {
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.feature-block {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  /* flex-wrap: wrap; */
  margin-bottom: 60px;
}

.feature-block.reverse {
  flex-direction: row-reverse;
}

.image-frame {
  position: relative;
  display: inline-block;
  max-width: 550px;
  width: 100%;
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  z-index: 3;
  position: relative;
}

/* Vuông xanh trên góc trái */
.image-frame .corner-square {
  position: absolute;
  top: 10px;
  left: -20px;
  width: 60px;
  height: 60px;
  background-color: #3b82f6;
  z-index: 2;
  border-radius: 2px;
}


.image-frame .corner-square-2 {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background-color: #3b82f6;
  z-index: 2;
  border-radius: 2px;
}

.feature-text {
  width: 720px;
  text-align: start;
}
.feature-image {
  width: 720px;
}
.feature-text ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 1.5rem;
}
.feature-text ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 1.5rem;
}
.feature-text ul li::before {
    content: '•';
    position: absolute;
    left: -18px;
    top: -2px;
    color: #333;
    font-size: 20px;
    line-height: 1.6;
}
.feature-text ul li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  display: block;
  position: relative;
}
.feature-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}

.feature-text div {
  font-size: 1.50rem;
  margin-bottom: 12px;
  font-weight: bold;
}

.feature-text p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .feature-block,
  .feature-block.reverse {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .feature-image,
  .feature-text {
    width: 100%;
    padding: 0 1rem;
  }

  .feature-text {
    margin-top: 0;
  }

  .feature-text div {
    font-size: 1.2rem;
    font-weight: 600;
  }

  .feature-text p,
  .feature-text ul li {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .feature-icon {
    width: 28px;
    height: 28px;
  }

  .image-frame .corner-square,
  .image-frame .corner-square-2 {
    width: 24px;
    height: 24px;
    left: -5px;
    top: 25px
  }

  .image-frame img {
    max-width: 100%;
    height: auto;
  }

  .feature-text ul {
    padding-left: 18px;
    text-align: left;
  }

  .feature-text ul li::before {
    font-size: 18px;
    top: -1px;
    left: -16px;
  }
}
@media (max-width: 480px) {
  .feature-text div {
    font-size: 1rem;
  }

  .feature-text p,
  .feature-text ul li {
    font-size: 0.9rem;
  }

  .feature-block {
    margin-bottom: 40px;
  }

  .feature-icon {
    margin-bottom: 8px;
  }
}
.video-section {
  margin-top: -70px; /* đè lên section phía trên */
  position: relative;
  z-index: 10;
  text-align: center;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

#video-frame {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* hỗ trợ responsive iframe */
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .video-section {
    margin-top: -80px;
  }

  #video-frame {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

.pricing-section {
  background-image: url("../image/featureavatar.png"); /* đảm bảo đúng đường dẫn */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  text-align: center;
}

.pricing-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.4;
  position: relative;
  color:rgb(26, 24, 24)

}
.divider-001{
  display: block !important;
  width: 40px !important;
  height: 4px !important;
  background: #3b82f6 !important;
  margin: 0 auto 10px !important;

}

/* .divider-four {
  display: block;
  width: 40px;
  height: 4px;
  background: #3b82f6;
  margin: 0 auto 10px;
} */
.card-corporate-2 .card-title .card-tail
{
    background: #f5f5f5;
}
.card-corporate-2 .card-title .card-tail::before
{
    background: none !important;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.card-001 {
  background-color:rgba(239, 246, 255, 1);
  padding: 30px 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 370px;
  display: flex;
  flex-direction: column;

}

.card-001.featured {
  background: linear-gradient(to bottom right, rgba(37, 89, 235, 1), rgba(30, 58, 138, 1));
  color: #fff;
  transform: scale(1.10);
  z-index: 1;
}

.card-header-001 {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap:5px;
}

.card-header-001 img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.card-001 h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
.features-plus {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 2rem;

}
.features-plus {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 10px;
  text-align: left;
  width: 100%;
}

.features-plus li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap:5px;
}

/* .features-plus li.check::before {

  content: '';
  color: #22c55e;
  margin-right: 10px;
  font-size: 1rem;
}

.features-plus li.uncheck::before {
  content: '';
  color: #94a3b8;
  margin-right: 10px;
  font-size: 1rem;
} */

.card-button-001 {
  padding: 10px 45px;
  background: #fff;
  color: #3b82f6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  border: 2px solid #3b82f6;
  transition: all 0.3s ease;
}

.card-button-001 img {
  width: 18px;
  height:18px;
  object-fit: cover;
}
.card-button-001:hover {
  background: rgba(30, 58, 138, 1);
  color: white;
}

.featured-button {
  background: #221818;
  color: #0f3ab9;
  border-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .card-001 {
    width: 100%;
    max-width: 90%;
  }
}

.contact-section {
  padding: 60px 20px;
  background-color: #f9fbfc;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0)), url(/image/faq_1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.contact-content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #cbd5e1;
}

.contact-content p {
  font-size: 1rem;
  margin: 12px 0px;
  line-height: 2.5;
  color: #f8f9fa;
  max-width: 370px;
  text-align: start;
}

.contact-form {
  display: flex;
  max-width: 400px;
  margin-bottom: 20px;
  color:#f5f5f5;
  flex-wrap: wrap;
}

.contact-form input[type="email"] {
  padding: 10px;
  font-size: 1rem;
  border: none;
  outline: none;
  background-color: transparent;
  color:#f5f5f5;
  border: 1px solid #0561f5;
}

.contact-form button {
  padding: 10px 20px;
  background-color: white;
  color: #002c71;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.contact-info {
  display: flex;
  flex-direction: row;
  gap: 40px;
  font-size: 0.95rem;
  border-right: 1px solid #0561f5;
}

.contact-info div {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}


@media (max-width: 600px) {

  .contact-content {
    padding: 20px;
  }

  .contact-form {
    flex-direction: column;
  }
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 0.95rem;

    }
  .contact-form input,
  .contact-form button {
    width: 100%;
    margin-bottom: 10px;
  }

  .contact-form button {
    margin-bottom: 0;
  }
}
