@charset "UTF-8";
.hero {
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}
.hero .hero-image {
  width: 100%;
  height: 100%;
}
.hero .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.8);
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.about-section {
  padding: 80px 0;
  background: #fff;
}
.about-section .about-content {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.about-section .about-content h2 {
  text-align: center;
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.4;
}
.about-section .about-content p {
  font-size: 19px;
  color: rgb(0, 0, 0);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-section .about-content p:last-child {
  margin-bottom: 0;
}

.team-section {
  padding: 60px 0;
}
.team-section .team-photo {
  text-align: center;
}
.team-section .team-photo img {
  width: 100%;
  height: auto;
}
.team-section .team-photo .team-caption {
  margin-top: 20px;
}
.team-section .team-photo .team-caption p {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.mission-vision {
  padding: 10px 0 0 0;
}
.mission-vision .mv-grid {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
@media (max-width: 768px) {
  .mission-vision .mv-grid {
    grid-template-columns: 1fr;
  }
}
.mission-vision .mv-grid .mv-item {
  position: relative;
  border-radius: 12px;
  text-align: center;
  height: 440px;
}
.mission-vision .mv-grid .mv-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.mission-vision .mv-grid .mv-item .mv-content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 64px;
  text-align: left;
}
.mission-vision .mv-grid .mv-item .mv-content h3 {
  font-size: 30px;
}
.mission-vision .mv-grid .mv-item .mv-content p {
  font-size: 19px;
  line-height: 1.8;
  opacity: 1;
  width: 50%;
}
.mission-vision .mv-grid .mv-item.sứ-mệnh {
  background: linear-gradient(135deg, #1976d2, #2196f3);
  color: #fff;
}
.mission-vision .mv-grid .mv-item.tầm-nhìn {
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: #fff;
}
.mission-vision .mv-grid .mv-item .mv-content h3 {
  color: #fff;
  width: 50%;
  font-size: 27px;
  line-height: 1.8;
  opacity: 1;
}
.mission-vision .mv-grid .mv-item .mv-content p {
  width: 50%;
  font-size: 19px;
  line-height: 1.8;
  opacity: 1;
  color: #fff;
}

.why-choose {
  padding: 80px 0;
}
.why-choose h2 {
  text-align: left;
  font-size: 27px;
  color: #333;
  margin-bottom: 60px;
  font-weight: 600;
  position: relative;
}
.why-choose .reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.why-choose .reasons-grid .reason-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  transition: transform 0.3s ease;
}
.why-choose .reasons-grid .reason-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.why-choose .reasons-grid .reason-item .reason-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1976d2, #2196f3);
  border-radius: 50%;
  margin: 0 auto 20px;
}
.why-choose .reasons-grid .reason-item .reason-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}
.why-choose .reasons-grid .reason-item h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}
.why-choose .reasons-grid .reason-item p {
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
}

.process-section {
  padding: 80px 0;
}
.process-section h2 {
  text-align: left;
  font-size: 27px;
  color: #333;
  margin-bottom: 60px;
  font-weight: 600;
  position: relative;
}
.process-section .process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .process-section .process-flow {
    flex-direction: column;
    gap: 40px;
  }
}
.process-section .process-flow .process-step {
  text-align: center;
  flex: 1;
}
.process-section .process-flow .process-step .step-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1976d2;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
}
.process-section .process-flow .process-step h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}
.process-section .process-flow .process-step p {
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
}
.process-section .process-flow .process-arrow {
  font-size: 24px;
  color: #1976d2;
  font-weight: bold;
}
@media (max-width: 768px) {
  .process-section .process-flow .process-arrow {
    transform: rotate(90deg);
  }
}

.certificate-section {
  padding: 60px 0;
}
.certificate-section h2 {
  text-align: left;
  text-align: center;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 600;
}
.certificate-section .certificate-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .certificate-section .certificate-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}
.certificate-section .certificate-content .cert-text p {
  font-size: 16px;
  color: #000000;
  margin-bottom: 10px;
}
.certificate-section .certificate-content .cert-text p:last-child {
  margin-bottom: 0;
}
.certificate-section .certificate-content .cert-logos {
  display: flex;
  gap: 20px;
  align-items: center;
}
.certificate-section .certificate-content .cert-logos img {
  height: 60px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.certificate-section .certificate-content .cert-logos img:hover {
  opacity: 1;
}

.timeline-section {
  padding: 80px 0;
}
.timeline-section img {
  width: 100%;
}
.timeline-section h2 {
  text-align: left;
  font-size: 27px;
  margin-bottom: 60px;
  font-weight: 600;
}
.timeline-section .timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline-section .timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .timeline-section .timeline::before {
    left: 30px;
    transform: none;
  }
}
.timeline-section .timeline .timeline-item {
  display: flex;
  margin-bottom: 60px;
  position: relative;
}
@media (max-width: 768px) {
  .timeline-section .timeline .timeline-item {
    padding-left: 60px;
  }
}
.timeline-section .timeline .timeline-item:nth-child(odd) {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .timeline-section .timeline .timeline-item:nth-child(odd) {
    justify-content: flex-start;
  }
}
.timeline-section .timeline .timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .timeline-section .timeline .timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
    padding-right: 0;
  }
}
.timeline-section .timeline .timeline-item:nth-child(even) {
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .timeline-section .timeline .timeline-item:nth-child(even) {
    justify-content: flex-start;
  }
}
.timeline-section .timeline .timeline-item:nth-child(even) .timeline-content {
  text-align: left;
  padding-left: 40px;
}
@media (max-width: 768px) {
  .timeline-section .timeline .timeline-item:nth-child(even) .timeline-content {
    padding-left: 0;
  }
}
.timeline-section .timeline .timeline-item .timeline-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #1976d2;
  border-radius: 50%;
  font-weight: bold;
  font-size: 16px;
  z-index: 2;
}
@media (max-width: 768px) {
  .timeline-section .timeline .timeline-item .timeline-year {
    left: 30px;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    font-size: 14px;
  }
}
.timeline-section .timeline .timeline-item .timeline-content {
  flex: 0 0 calc(50% - 40px);
}
@media (max-width: 768px) {
  .timeline-section .timeline .timeline-item .timeline-content {
    flex: 1;
  }
}
.timeline-section .timeline .timeline-item .timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.timeline-section .timeline .timeline-item .timeline-content p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.meet-team-section {
  padding: 80px 0;
  background: #fff;
}
.meet-team-section h2 {
  text-align: left;
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 600;
}
.meet-team-section .team-slider {
  position: relative;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  margin: 0 auto 30px;
}
.meet-team-section .team-slider .team-slide {
  display: none;
  width: 100%;
}
.meet-team-section .team-slider .team-slide.active {
  display: block;
}
.meet-team-section .team-slider .team-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .meet-team-section .team-slider .team-slide img {
    height: auto;
  }
}
@media (max-width: 480px) {
  .meet-team-section .team-slider .team-slide img {
    height: 250px;
  }
}
.meet-team-section .slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.meet-team-section .slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}
.meet-team-section .slider-dots .dot:hover {
  background: #bbb;
  transform: scale(1.1);
}
.meet-team-section .slider-dots .dot.active {
  background: #1976d2;
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .meet-team-section {
    padding: 60px 0;
  }
  .meet-team-section h2 {
    text-align: left;
    font-size: 1.7rem;
    margin-bottom: 30px;
  }
  .meet-team-section .slider-dots {
    gap: 6px;
  }
  .meet-team-section .slider-dots .dot {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 480px) {
  .meet-team-section {
    padding: 50px 0;
  }
  .meet-team-section h2 {
    text-align: left;
    font-size: 1.5rem;
  }
}

.global-presence-section {
  padding: 80px 0;
  background: #fff;
}
.global-presence-section .global-content {
  text-align: center;
}
.global-presence-section .global-content h2 {
  text-align: left;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}
.global-presence-section .global-content .global-description {
  font-size: 16px;
  color: #000000;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.global-presence-section .global-content .global-features {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .global-presence-section .global-content .global-features {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}
.global-presence-section .global-content .global-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #000000;
  font-weight: 500;
}
.global-presence-section .global-content .global-features .feature-item .feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1976d2, #2196f3);
}
.global-presence-section .global-content .global-features .feature-item .feature-icon svg {
  width: 16px;
  height: 16px;
  color: #fff;
}
.global-presence-section .global-content .global-features .feature-item:first-child .feature-icon {
  background: linear-gradient(135deg, #ff9800, #ffb74d);
}
.global-presence-section .global-content .global-features .feature-item:last-child .feature-icon {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
}
.global-presence-section .global-content .global-features .feature-item span {
  white-space: nowrap;
}
@media (max-width: 480px) {
  .global-presence-section .global-content .global-features .feature-item span {
    white-space: normal;
    text-align: center;
  }
}
.global-presence-section .global-content .global-map {
  position: relative;
  margin: 0 auto;
}
.global-presence-section .global-content .global-map img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.global-presence-section .global-content .global-map img:hover {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .global-presence-section {
    padding: 60px 0;
  }
  .global-presence-section .global-content h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .global-presence-section .global-content .global-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .global-presence-section .global-content .global-features {
    margin-bottom: 40px;
  }
  .global-presence-section .global-content .global-features .feature-item {
    font-size: 13px;
  }
  .global-presence-section .global-content .global-features .feature-item .feature-icon {
    width: 28px;
    height: 28px;
  }
  .global-presence-section .global-content .global-features .feature-item .feature-icon svg {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 480px) {
  .global-presence-section {
    padding: 50px 0;
  }
  .global-presence-section .global-content h2 {
    text-align: left;
    font-size: 1.6rem;
  }
  .global-presence-section .global-content .global-features .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

.core-values-section {
  padding: 80px 0;
  background: #fff;
}
.core-values-section h2 {
  text-align: left;
  font-size: 27px;
  color: #333;
  margin-bottom: 60px;
  font-weight: 600;
  position: relative;
}
.core-values-section .core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.core-values-section .core-values-grid .core-value-item {
  background: #fff;
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
}
.core-values-section .core-values-grid .core-value-item .core-value-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 30px;
  background-color: #0070d6;
}
.core-values-section .core-values-grid .core-value-item .core-value-icon img {
  width: 100%;
  height: auto;
  padding: 0px;
}
.core-values-section .core-values-grid .core-value-item h3 {
  font-size: 18px;
  color: #1976d2;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.core-values-section .core-values-grid .core-value-item .core-value-points {
  text-align: left;
}
.core-values-section .core-values-grid .core-value-item .core-value-points .point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 70%;
  margin: auto;
  margin-bottom: 15px;
  min-width: 270px;
}
.core-values-section .core-values-grid .core-value-item .core-value-points .point:last-child {
  margin-bottom: 0;
}
.core-values-section .core-values-grid .core-value-item .core-value-points .point .check-icon {
  color: #f39c12;
  font-weight: bold;
  font-size: 18px;
  margin-top: 2px;
  min-width: 18px;
}
.core-values-section .core-values-grid .core-value-item .core-value-points .point span:last-child {
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
  flex: 1;
}
@media (max-width: 768px) {
  .core-values-section {
    padding: 60px 0;
  }
  .core-values-section .core-values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .core-values-section .core-values-grid .core-value-item .core-value-icon {
    width: 100px;
    height: 100px;
  }
  .core-values-section .core-values-grid .core-value-item .core-value-icon svg {
    width: 50px;
    height: 50px;
  }
  .core-values-section .core-values-grid .core-value-item h3 {
    font-size: 16px;
  }
  .core-values-section .core-values-grid .core-value-item .core-value-points .point {
    font-size: 14px;
  }
}

.map .text-center .section__title {
  font-size: 30px;
  font-weight: 700;
  color: #2b2c2c;
}
.map .text-center .section__subtitle {
  font-size: 16px;
  color: #2b2c2c;
}
.map .text-center .map__container {
  margin-top: 42px;
}

.stats-section {
  padding: 80px 0;
  background: #fff;
}
.stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}
.stats-section .stats-grid .stat-item .stat-number {
  font-size: 3rem;
  color: #1976d2;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.stats-section .stats-grid .stat-item .stat-label {
  font-size: 16px;
  color: #000000;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1976d2, #0d47a1);
  color: #fff;
  text-align: center;
}
.cta-section .cta-content {
  max-width: 700px;
  margin: 0 auto;
}
.cta-section .cta-content h2 {
  text-align: left;
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.cta-section .cta-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.9;
}
.cta-section .cta-content .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section .cta-content .cta-buttons .btn-primary {
  background: #1976d2;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  background: #fff;
  color: #1976d2;
}
.cta-section .cta-content .cta-buttons .btn-primary:hover {
  background: #0d47a1;
  transform: translateY(-2px);
  background: #f5f5f5;
  color: #1976d2;
}
.cta-section .cta-content .cta-buttons .btn-secondary {
  background: transparent;
  color: #1976d2;
  border: 1px solid #1976d2;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  border-color: #fff;
  color: #fff;
}
.cta-section .cta-content .cta-buttons .btn-secondary:hover {
  background: #1976d2;
  color: #fff;
  background: #fff;
  color: #1976d2;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .hero {
    height: 50vh;
    min-height: 300px;
  }
  .about-section {
    padding: 60px 0;
  }
  .about-section .about-content h2 {
    font-size: 1.5rem;
  }
  .about-section .about-content p {
    font-size: 15px;
  }
  .team-section {
    padding: 0 !important;
  }
  .mission-vision {
    padding: 60px 0;
  }
  .mission-vision .mv-item {
    padding: 30px 20px;
  }
  .mission-vision .mv-item .mv-content h3 {
    font-size: 1.3rem;
  }
  .mission-vision .mv-item .mv-content p {
    font-size: 15px;
  }
  .why-choose,
  .process-section,
  .timeline-section,
  .meet-team-section,
  .global-presence-section,
  .core-values-section,
  .stats-section,
  .cta-section {
    padding: 60px 0;
  }
  .why-choose h2,
  .process-section h2,
  .timeline-section h2,
  .meet-team-section h2,
  .global-presence-section h2,
  .core-values-section h2,
  .stats-section h2,
  .cta-section h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  .reasons-grid,
  .core-values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .reasons-grid .reason-item,
  .reasons-grid .core-value-item,
  .core-values-grid .reason-item,
  .core-values-grid .core-value-item {
    padding: 25px 20px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .stats-grid .stat-item .stat-number {
    font-size: 2.5rem;
  }
  .cta-content h2 {
    text-align: left;
    font-size: 1.8rem;
  }
  .cta-content .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-content .cta-buttons .btn-primary,
  .cta-content .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .hero {
    height: 40vh;
  }
  .about-section,
  .team-section,
  .mission-vision,
  .why-choose,
  .process-section,
  .certificate-section,
  .timeline-section,
  .meet-team-section,
  .global-presence-section,
  .core-values-section,
  .stats-section,
  .cta-section {
    padding: 50px 0;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid .stat-item .stat-number {
    font-size: 2rem;
  }
}
.action-cards-section {
  padding: 80px 0;
  background: #fff;
}
.action-cards-section .action-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .action-cards-section .action-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.action-cards-section .action-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 0px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
}
.action-cards-section .action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.action-cards-section .action-card .action-card-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
.action-cards-section .action-card .action-card-icon svg {
  width: 64px;
  height: 64px;
  stroke: #1976d2;
  transition: all 0.3s ease;
}
.action-cards-section .action-card:hover .action-card-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.2) 0%, rgba(33, 150, 243, 0.2) 100%);
}
.action-cards-section .action-card:hover .action-card-icon svg {
  stroke: #0d47a1;
}
.action-cards-section .action-card h3 {
  font-size: 16.67px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 500;
  flex: 1;
  display: flex;
  align-items: center;
}
.action-cards-section .action-card .btn-action {
  background: transparent;
  color: #1976d2;
  border: 1px solid #1976d2;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  width: 100%;
  max-width: 220px;
  padding: 12px 24px;
  font-size: 15px;
  margin-top: auto;
}
.action-cards-section .action-card .btn-action:hover {
  background: #1976d2;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .about-section .container .about-content h2 {
    text-align: left;
    font-size: 20px;
  }
  .about-section .container .about-content p {
    font-size: 14px;
  }
  /* ===========================
     TEAM PHOTO SECTION
  =========================== */
  .team-section {
    padding: 0;
  }
  /* ===========================
     MISSION & VISION
  =========================== */
  .mission-vision .container .mv-grid .mv-item .mv-content {
    padding: 12px;
  }
  .mission-vision .container .mv-grid .mv-item .mv-content p {
    width: 100%;
    font-size: 14px;
  }
  /* ===========================
     CORE VALUES 1 (Giá trị cốt lõi)
  =========================== */
  .core-values-section .container h2 {
    text-align: left;
    font-size: 20px;
  }
  /* ===========================
     CORE VALUES 2 (Triết lý vận hành)
  =========================== */
  .core-values-section {
    padding-top: 0 !important;
  }
  .core-values-section .container h2 {
    text-align: left;
  }
  /* ===========================
     MAP SECTION
  =========================== */
  .map {
    padding: 24px 0;
  }
  .map .container .section__title {
    font-size: 20px;
  }
  .map .container .section__subtitle {
    font-size: 14px;
  }
  .map .container .map__desc span {
    font-size: 12px;
  }
  .map .container .map__container img {
    width: 100%;
  }
  /* ===========================
     TIMELINE
  =========================== */
  .timeline-section {
    padding: 0 !important;
  }
  .timeline-section .container h2 {
    text-align: left;
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 24px;
  }
  .timeline-section img {
    width: 100%;
  }
  /* ===========================
     MEET TEAM SLIDER
  =========================== */
  .meet-team-section {
    padding: 24px 0;
  }
  .meet-team-section .container h2 {
    text-align: left;
    font-size: 20px;
  }
  /* ===========================
     ACTION CARDS
  =========================== */
  .action-cards-section {
    padding: 12px 0;
  }
}
