        :root {
  --primary: #0f8fc7;
  --secondary: #141527;
  --gradient: linear-gradient(135deg, #0f8fc7, #141527);
}
.banner-container {
 padding: 80px 0;
  background: #141527;
  position: relative;
  overflow: hidden;
}
.banner-container .cta-button {
  margin-top: 20px;
}
.animated-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(15, 143, 199, 0.1) 0%, transparent 50%),
    linear-gradient(-120deg, rgba(20, 21, 39, 0.1) 0%, transparent 50%);
  filter: blur(60px);
  animation: bgMove 15s infinite alternate;
}

.grid-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(15, 143, 199, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 143, 199, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: perspective(500px) rotateX(60deg) translateY(-100px);
  opacity: 0.3;
}

.dynamic-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  mask-image: linear-gradient(to bottom, transparent, black, transparent);
}

.shape {
  position: absolute;
  border: 1px solid rgba(15, 143, 199, 0.3);
  animation: shapeFloat 20s infinite linear;
}

.content-wrapper {
  /*position: absolute;*/
  /*width: 100%;*/
  /*height: 100%;*/
  display: flex;
  padding: 0 8%;
  /*z-index: 2;*/
}

.text-content {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.company-name {
  font-size: 4em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1 forwards 3s;
  animation-delay: 1s;
}

.company-name::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: #0f8fc7;
  animation: lineGrow 1s forwards 1.3s;
  animation-delay: 2s;
  transform-origin: left;
  transform: scaleX(0);
}

.tagline {
  font-size: 1.8em;
  font-weight: 300;
  line-height: 1.4;
  margin: 20px 0;
  opacity: 0;
  animation: fadeIn 0.8s forwards 1s;
  animation-delay: 2s;
}

.highlight-text {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
  opacity: 0;
  animation: fadeIn 0.8s forwards 1.5s;
  animation-delay: 2s;
}

.image-section {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.image-section {
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-stack {
  position: relative;
  width: 80%;
  height: 70%;
}

.stack-image {
  position: absolute;
  width: 60%;
  height: 50%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(50px);
  animation: stackIn 1s forwards;
}

.stack-image:nth-child(1) {
  top: 0;
  right: 0;
  animation-delay: 0.8s;
}

.stack-image:nth-child(2) {
  top: 35%;
  left: 0;
  animation-delay: 1s;
}
@keyframes stackIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bgMove {
  0% {
    transform: scale(1) rotate(0deg);
  }
  100% {
    transform: scale(1.2) rotate(5deg);
  }
}

@keyframes shapeFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes lineGrow {
  to {
    transform: scaleX(1);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid white;
  opacity: 0.1;
  border-radius: 15px;
  animation: scrollIndicate 2s infinite;
}

.scroll-indicator::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}

@keyframes scrollIndicate {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.cta-button {
  display: inline-block;
  width: fit-content;
  padding: 1rem 2rem;
  background: #0f8fc7;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards 1.5s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 143, 199, 0.3);
  color: #fff;
}

.about {
  padding: 5rem 5%;
  background: white;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: var(--gradient);
  transform: rotate(-12deg);
  opacity: 0.05;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  /*height: 600px;*/
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-content {
  padding-right: 10%;
}
.about-grid h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0f8fc7;
  margin: 0;
}

.accent-line {
  width: 60px;
  height: 3px;
  background: #0f8fc7;
  margin: 1.5rem 0;
}

.about-grid h3 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #141527;
  margin: 0 0 1.5rem;
}

.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2.5rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.highlight-item {
  text-align: center;
}

.highlight-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: rgba(15, 143, 199, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f8fc7;
  transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
  background: #0f8fc7;
  color: white;
  transform: translateY(-5px);
}

.highlight-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #141527;
}
@media (max-width: 768px) {
  .about-wrapper {
    padding: 4rem 1.5rem;
  }

  h3 {
    font-size: 2rem;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .highlight-item {
    display: flex;
    align-items: center;
    text-align: left;
  }

  .highlight-icon {
    margin: 0 1rem 0 0;
  }
}
/* Services Section */

.pricing-section {
  padding: 80px 0;
  background: #fff;
}
.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-title {
  font-size: 2.5rem;
  color: #0f8fc7;
  margin-bottom: 20px;
}

.pricing-subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  border-color: #0f8fc7;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15, 143, 199, 0.1);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #0f8fc7;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-type {
  font-size: 1.2rem;
  color: #141527;
  margin-bottom: 20px;
  font-weight: 600;
}

.pricing-cost {
  font-size: 2.5rem;
  color: #0f8fc7;
  margin-bottom: 30px;
  font-weight: 700;
}

.pricing-cost span {
  font-size: 1rem;
  color: #666;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-feature {
  color: #666;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.pricing-feature:before {
  content: "✓";
  color: #0f8fc7;
  margin-right: 10px;
  font-weight: bold;
}

.pricing-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #0f8fc7;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s;
  text-align: center;
  width: 100%;
}

.pricing-btn:hover {
  background: #0d7ba9;
  transform: translateY(-2px);
}
/* Projects Section */
.projects {
  padding: 4rem 5%;
  background: var(--secondary);
}
.projects .bp_news_more {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: transparent;
  color: #2d5ca6;
  border: 2px solid #2d5ca6;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin: 0 auto;
  width: auto;
  min-width: 140px;
}
.projects .bp_news_more:hover {
  background: #2d5ca6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 92, 166, 0.2);
}
.projects .bp-news-button-action {
  margin-top: 30px;
}
.projects .section-title {
  color: #fff;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.projects .col {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projects .cls_img_hot_news {
  position: relative;
  padding: 0;
}

.projects .cls_img_hot_news img {
  height: 250px;
  object-fit: cover;
  position: relative;
  border-radius: 0;
}

.projects .cls_content_hot_news {
  padding: 1.5rem;
}
.projects .case-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #e3f2fd;
  color: #1976d2;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.projects .case-details {
  margin-bottom: 1rem;
  color: #666;
  line-height: 1.6;
  min-height: 72px;
}
.projects .case-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.projects .stat-item {
  text-align: center;
}
.projects .stat-value {
  font-size: 16px;
  color: #1976d2;
  font-weight: bold;
}
ss .stat-label {
  font-size: 14px;
  color: #666;
}
.projects .news_title {
  font-size: 18px;

  margin-bottom: 1rem;
  font-weight: bold;
}
.projects .news_title a {
  color: #1a237e;
}
.projects p {
  margin-bottom: 1rem;
  color: #666;
  line-height: 1.6;
}
/* Partners Section */
.partners {
  padding: 4rem 5%;
  background: var(--secondary);
  color: white;
}

.partners-slider {
  margin-top: 4rem;
  display: flex;
  gap: 3rem;
  animation: slidePartners 20s linear infinite;
}

.partner-logo {
  min-width: 200px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

/* Contact Section */
.contact {
  padding: 4rem 5%;
  background: white;
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;

  margin: 0 auto;
  margin-top: 50px;
}

.contact-info {
  padding: 3rem;
  background: var(--gradient);
  color: white;
  border-radius: 20px;
}

#m_112544 {
  padding: 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contact input,
.contact textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
  border-color: var(--primary);
  outline: none;
}
.contact .bp_form_label_up {
  display: none;
}
.bp-btn-send {
  width: 100%;
}
.contact-wrapper > .col-12:first-child,
.contact-wrapper .contact-info {
  height: 100%;
}
#frm-action-112544 > .bp_form_field {
  margin-bottom: 1.5rem;
}

.partners .swiper-slide,
.partners .swiper-slide img {
  border-radius: 8px;
}
/* News Section */
.blog-list {
  padding: 8rem 5%;
  background: #f8f9fa;
}
.blog-list .section-title,
.contact .section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.blog-list .section-title::after,
.contact .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--primary);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.news-grid .col {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.news-grid .col:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.blog-list .news_title {
  font-weight: 700;
  font-size: 20px;
}
.blog-list .news_title a {
  color: #121212;
}
.blog-list .cls_img_hot_news img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.blog-list .bp_news_sub p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-list .bp_news_more,
.bp-btn-send {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #0f8fc7, #141527);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.blog-list .bp_news_more:hover,
.bp-btn-send {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 143, 199, 0.3);
}
.blog-list .bp_news_info {
  display: block;
  order: -1;

  margin-bottom: 10px;
}
.blog-list .cls_img_hot_news {
    padding: 0;
}
.blog-list .bp_lb_user,
.blog-list .bp_lb_comment,
.blog-list .bp_icon_date {
  display: none;
}
.blog-list .cls_content_hot_news {
  display: flex;
  flex-direction: column;
}
.blog-list .bp-date-create {
  color: #0f8fc7;
  font-size: 0.9rem;
}
.blog-list .bp-news-button-action {
  margin-top: 15px;
}
.news-image {
  height: 250px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.blog-list .cls_content_hot_news {
  padding: 2rem;
}

.news-date {
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slidePartners {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Common Styles */
.about .section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.about .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--primary);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width:992px) {
    .service-features {
        display: none;
    }
    .services .bp_news_more {
        padding: 0;
    }
    .about::before {
        content: unset;
    }
    .about-content {
        padding: 0;
    }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .about-grid h3 {
      font-size: 28px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .contact-info,#m_112544 {
      padding: 2rem;
  }
  .blog-list .section-title, .contact .section-title {
      font-size: 28px;
  }
}

.region-section {
  margin-bottom: 6rem;
  position: relative;
}

.region-title {
  font-size: 1.5rem;
  color: #141527;
  margin-bottom: 3rem;
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #f8f9fa;
  border-left: 4px solid #0f8fc7;
}

.packages-timeline {
  position: relative;
  padding-left: 2rem;
}

.packages-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #eee;
}

.package {
  position: relative;
  margin-bottom: 3rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.package::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 2rem;
  width: 1rem;
  height: 1rem;
  background: #0f8fc7;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #0f8fc7;
}

.package:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.package-info {
  flex: 1;
}

.package-name {
  font-size: 1.25rem;
  color: #141527;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.price {
  font-size: 1.5rem;
  color: #0f8fc7;
  font-weight: 700;
}

.price-label {
  font-size: 0.875rem;
  color: #666;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/*.feature-item-price {*/
/*  flex: 1 1 45%;*/
/*  display: flex;*/
/*  align-items: flex-start;*/
/*  padding: 0.5rem;*/
/*  background: #f8f9fa;*/
/*  border-radius: 6px;*/
/*  font-size: 0.95rem;*/
/*  color: #444;*/
/*}*/

.feature-item-price::before {
  content: "✓";
  color: #0f8fc7;
  margin-right: 0.75rem;
  font-weight: bold;
}

.highlight {
  border: 2px solid #0f8fc7;
  background: #f8fbff;
}

.highlight::after {
  content: "Phổ biến nhất";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #0f8fc7;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .feature-list {
    flex-direction: column;
  }

  .feature-item {
    flex: 1 1 100%;
  }
  .case-details {
      display: none;
  }
  .image-stack {
      display: none;
  }
  .text-content {
      width: 100%;
  }
  .tagline {
      font-size: 18px;
  }
  .company-name {
      font-size: 32px;
  }
  .highlight-text {
      font-size: 14px;
  }
  .pricing-title {
      font-size: 28px;
  }
  .news-grid {
      grid-template-columns: unset;
  }
  .blog-list .news_title {
      font-size: 18px;
  }
}

