/* Khai báo font-family */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Oswald&display=swap');

/* Biến màu sắc */
:root {
  --primary: #263788;
  --secondary: #2DB7FF;
  --tertiary: #008FFF;
  --text-color: #44596F;
  --blue-gray: #44596F;
  --bg-light-blue: #F0F6FF;
}

/* Font cho tiêu đề */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  color: var(--primary);
}

/* Font cho đoạn văn và span */
p, span {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-color);
  text-align: justify;
}

/* Menu items */
#primary-menu .menu-item {
  position: relative;
  list-style: none;
  margin: 0;
}

/* Submenu */
#primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

/* Hiển thị submenu khi hover */
#primary-menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Submenu items */
#primary-menu .sub-menu .menu-item {
  display: block;
  width: 100%;
}

/* Submenu links */
#primary-menu .sub-menu .menu-item a {
  display: block;
  padding: 12px 20px;
  color: var(--text-color, #44596F);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: all 0.3s ease;
  border-radius: 0;
  position: relative;
}

/* Submenu link hover */
#primary-menu .sub-menu .menu-item a:hover {
  color: var(--primary, #263788);
  background-color: var(--bg-light-blue, #F0F6FF);
  padding-left: 24px;
}

/* Submenu separator */
#primary-menu .sub-menu .menu-item:not(:last-child) {
  border-bottom: 1px solid #f3f4f6;
}

/* Animation cho menu item */
#primary-menu .menu-item {
  transform: translateY(0);
  transition: transform 0.2s ease;
}
/* Responsive - Mobile */
@media (max-width: 768px) {
  #primary-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  
  #primary-menu .menu-item {
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
  }
  
  #primary-menu .menu-item > a {
    padding: 15px 20px;
    border-radius: 0;
  }
  
  #primary-menu .sub-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: #f8f9fa;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 0;
  }
  
  #primary-menu .menu-item-has-children:hover .sub-menu {
    display: block;
  }
  
  #primary-menu .sub-menu .menu-item a {
    padding: 12px 30px;
    font-size: 13px;
  }
  
  #primary-menu .menu-item-has-children > a::after {
    float: right;
  }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  #primary-menu {
    gap: 20px;
  }
  
  #primary-menu .menu-item > a {
    padding: 10px 12px;
    font-size: 15px;
  }
  
  #primary-menu .sub-menu {
    min-width: 200px;
  }
}

/* Smooth scrolling cho anchor links */
html {
  scroll-behavior: smooth;
}

/* Menu container wrapper (nếu cần) */
.menu-container {
  position: relative;
  z-index: 999;
}

/*Hover Effect*/
.nav-menu a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--secondary);
}

/* Header Styles - Scoped to prevent conflicts */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.site-header.scrolled .header-main {
    padding: 10px 0;
}

.site-header.scrolled .site-logo img,
.site-header.scrolled .site-logo svg {
    height: 50px;
}

.site-header .header-top-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.site-header .contact-info {
    display: flex;
    gap: 30px;
}

.site-header .contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-size: 12px;
}

.site-header .contact-info a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-header .contact-info a:hover {
    color: var(--primary);
}

.site-header .header-main {
    padding: 15px 0;
}

.site-header .header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.site-header .site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-header .site-logo img,
.site-header .site-logo svg {
    height: 60px;
    width: auto;
}

.site-header .site-info {
    display: flex;
    flex-direction: column;
}

.site-header .site-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
    text-align: center;
}

.site-header .site-title a {
    color: inherit;
    text-decoration: none;
}

.site-header .company-highlight {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.3rem;
}

.site-header .site-description {
    margin: 5px 0 0 0;
    font-size: 10px;
    color: var(--text-color);
}

.site-header .main-navigation {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.site-header .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.site-header .nav-menu li {
    position: relative;
}

.site-header .nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
    display: block;
}

.site-header .nav-menu a:hover,
.site-header .nav-menu .current-menu-item a {
    color: var(--primary);
}

.site-header .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.site-header .menu-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.site-header .menu-icon span {
    width: 100%;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header .header-top, .site-info {
        display: none !important;
    }
    
    .site-header .site-branding {
        justify-content: center;
        text-align: center;
    }
    
    .site-header .site-title {
        font-size: 14px;
    }
    
    .site-header .site-description {
        font-size: 11px;
    }
    
    .site-header .menu-toggle {
        display: block;
        position: absolute;
        top: 12px;
        right: 20px;
    }
    
    .site-header .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .site-header .nav-menu.active {
        display: flex;
    }
    
    .site-header .nav-menu li {
        border-bottom: 1px solid #eee;
    }
    
    .site-header .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .site-header .nav-menu a {
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .site-header .site-branding {
        gap: 10px;
    }
    
    .site-header .site-logo img,
    .site-header .site-logo svg {
        height: 50px;
    }
    
    .site-header .site-title {
        font-size: 13px;
    }
    
    .site-header .site-description {
        font-size: 10px;
    }
    
    .site-header .container {
        padding: 0 15px;
    }
}
/* Scoped CSS chỉ cho hero slider */
.hero-slider-section {
    position: relative;
    min-height: calc(100vh - var(--header-height, 80px));
    background: linear-gradient(135deg, var(--bg-light-blue, #F0F6FF) 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 1;
    transition: background-image 0.8s ease;
}

.hero-slider-section .hero-swiper {
    width: 100%;
    height: calc(100vh - var(--header-height, 80px));
}

.hero-slider-section .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hero-slider-section .slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 60px;
}

.hero-slider-section .slide-left {
    flex: 1;
    max-width: 38%;
    z-index: 1;
}

.hero-slider-section .slide-right {
    flex: 1;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 100%;
}

.hero-slider-section .slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary, #263788);
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
}

.hero-slider-section .slide-description {
    font-size: 1.1rem;
    color: var(--text-color, #44596F);
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: justify;
    max-width: 80%;
}

.hero-slider-section .slide-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--secondary, #2DB7FF);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 183, 255, 0.3);
}

.hero-slider-section .slide-button:hover {
    background: var(--tertiary, #008FFF);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 183, 255, 0.4);
}

.hero-slider-section .image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-section .main-image {
    object-fit: cover;
    border-radius: 50% 50% 0 0;
    border: 8px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    transition: all 0.8s ease;
    max-width: 380px;
    height: 100%;
    max-height: 500px;
}

.hero-slider-section .sub-image {
    display: none;
}

.hero-slider-section .decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-slider-section .outline-building {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 300"><path d="M20 280 L20 50 L60 50 L60 20 L100 20 L100 50 L140 50 L140 80 L180 80 L180 280 Z" fill="none" stroke="%23E5E5E5" stroke-width="2"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.3;
}

.hero-slider-section .geometric-shapes {
    position: absolute;
    right: -50px;
    bottom: 100px;
    width: 100px;
    height: 100px;
}

.hero-slider-section .geometric-shapes::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--secondary, #2DB7FF);
    border-radius: 50%;
    opacity: 0.3;
}

.hero-slider-section .geometric-shapes::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--tertiary, #008FFF);
    border-radius: 4px;
    opacity: 0.2;
}

.hero-slider-section .slider-navigation {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.hero-slider-section .nav-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.hero-slider-section .nav-item.active {
    background: transparent;
    transform: none;
}

.hero-slider-section .nav-item .nav-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color, #44596F);
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.hero-slider-section .nav-item.active .nav-number {
    color: var(--primary, #263788);
}

.hero-slider-section .nav-item.active .nav-number::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary, #263788);
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.hero-slider-section .nav-item .nav-number::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary, #263788);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.hero-slider-section .nav-item:hover .nav-number {
    color: var(--primary, #263788);
}

.hero-slider-section .nav-item:hover .nav-number::after {
    transform: scaleX(1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider-section .slide-content {
        flex-direction: column;
        gap: 40px;
        padding: 20px;
    }
    
    .hero-slider-section .slide-left {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-slider-section .slide-title {
        font-size: 2.5rem;
    }
    
    .hero-slider-section .main-image {
        width: 300px;
        height: 200px;
    }
    
    .hero-slider-section .sub-image {
        width: 200px;
        height: 150px;
        bottom: -30px;
        right: -30px;
    }
    
    .hero-slider-section .slider-navigation {
        bottom: 40px;
        gap: 15px;
    }
    
    .hero-slider-section .nav-item {
        padding: 6px 0;
    }
    
    .hero-slider-section .nav-item .nav-number {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-slider-section .slide-title {
        font-size: 2rem;
    }
    
    .hero-slider-section .main-image {
        width: 250px;
        height: 180px;
    }
    
    .hero-slider-section .sub-image {
        width: 150px;
        height: 120px;
        bottom: -20px;
        right: -20px;
    }
}
/*Section About Home*/
.about-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background-color: #fff;
}

/* Chữ VỀ CHÚNG TÔI dọc bên trái */
.vertical-text {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vertical-title {
    font-size: 7rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #ccc;
    font-family: 'Oswald', sans-serif;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    text-transform: uppercase;
    letter-spacing: 12px;
}


/* Khối 1: Thông tin công ty */
.company-info-block {
    background: white;
    height: 100%;
    min-height: 400px;
}

.info-content {
    width: 100%;
}

.founder-info {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
}

.founder-info strong {
    color: var(--primary);
    font-weight: 600;
}

.highlight-text {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 25px;
    font-style: italic;
    line-height: 1.5;
}

/* Khối 2: Hình ảnh */
.image-block {
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-block:hover img {
    transform: scale(1.05);
}

/* Khối 3: Số 20 NĂM KINH NGHIỆM */
.experience-block {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.big-number-20 {
    font-size: 30rem;
    font-weight: 900;
    font-family: 'Oswald', sans-serif;
    color: var(--primary);
    line-height: 0.8;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.experience-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 5;
    text-transform: uppercase;
    text-align: left;
}

/* Background overlay */
.about-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(38, 55, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(45, 183, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}
@media (max-width: 1500px) {
.big-number-20{
    font-size: 20rem;
}
}
/* Responsive */
@media (max-width: 992px) {
    .vertical-title {
        font-size: 3rem;
        transform: none;
        writing-mode: lr;
    }
    
    .company-info-block,
    .image-block,
    .experience-block {
        min-height: 300px;
        margin-bottom: 20px;
        align-items: center;
    }
    
    .big-number-20 {
        font-size: 10rem;
    }
    
    .experience-text {
        font-size: 1.2rem;
    }
    
    .company-info-block {
        padding: 30px;
    }
    
    .company-description {
        font-size: 1rem;
    }
    
    .founder-info {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }
    
    .vertical-title {
        font-size: 3rem;
        letter-spacing: 1px;
    }
    
    .big-number-20 {
        font-size: 8rem;
    }
    
    .experience-text {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .company-info-block {
        padding: 25px;
    }
    
    .company-description,
    .founder-info {
        font-size: 0.9rem;
    }
    
    .highlight-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .vertical-title {
        font-size: 3rem;
    }
    
    .big-number-20 {
        font-size: 6rem;
    }
    
    .experience-text {
        font-size: 1rem;
    }
    
    .company-info-block {
        padding: 20px;
    }
    
    .company-description,
    .founder-info {
        font-size: 0.85rem;
    }
    
    .highlight-text {
        font-size: 0.95rem;
    }
}
    /* Why Choose Us Section */
.why-choose-us-section {
    padding: 0 !important;
    overflow: hidden;
}

.why-choose-us-section .container-fluid {
    padding: 0;
}

/* Left Content */
.content-left {
    /*background-image: url('../img/bgPattern03.png');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    z-index: 1;
}

/* Geometric pattern overlay */
.background-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/bgPattern03.png');
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem !important;
/*     text-transform: uppercase;
    letter-spacing: 1px; */
}

/* Features Grid */
.features-grid {
    margin-bottom: 2rem;
}

.feature-item {
    padding: 0;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem !important;
    line-height: 1.3;
}

/* CTA Button */
.btn-cta {
    background: linear-gradient(45deg, #00BFFF, #1E90FF);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
/*     letter-spacing: 0.5px; */
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
    background: linear-gradient(45deg, #1E90FF, #00BFFF);
    color: white;
    text-decoration: none;
}

/* Right Image */
.content-right {
    height: 100%;
    min-height: 600px;
}

.image-wrapper {
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.image-wrapper img {
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    object-position: center;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .content-left {
        min-height: 500px;
    }
    
    .content-right {
        min-height: 400px;
    }
    
    .image-wrapper,
    .image-wrapper img {
        min-height: 400px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .content-wrapper {
        max-width: 100%;
        padding: 3rem 2rem !important;
    }
}

@media (max-width: 767.98px) {
    .content-left {
        min-height: 450px;
    }
    
    .content-right {
        min-height: 300px;
        order: -1; /* Move image to top on mobile */
    }
    
    .image-wrapper,
    .image-wrapper img {
        min-height: 300px;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem !important;
    }
    
    .section-description {
        font-size: 0.95rem;
        margin-bottom: 2rem !important;
    }
    
    .content-wrapper {
        padding: 2rem 1.5rem !important;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-desc {
        font-size: 0.9rem;
    }
    
    .btn-cta {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .features-grid .col-md-6 {
        margin-bottom: 1.5rem !important;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .content-wrapper {
        padding: 1.5rem 1rem !important;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-choose-us-section.animate-in .feature-item {
    animation: fadeInUp 0.6s ease forwards;
}

.why-choose-us-section.animate-in .feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.why-choose-us-section.animate-in .feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.why-choose-us-section.animate-in .feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.why-choose-us-section.animate-in .feature-item:nth-child(4) {
    animation-delay: 0.4s;
}
    /* Footer Styling */
.site-footer {
    background: var(--primary);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/home6_img_banner1.jpg');
    opacity: 0.1;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
}

.site-footer .container {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Slogan */
.footer-slogan {
    text-align: center;
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-slogan h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bs-white);
}
.footer-form .wpcf7-form{
    padding: 0;
    background: transparent;
    box-shadow: none;
}
.footer-form .wpcf7-form input{
    font-size: 13px;
    padding: 8px 16px;
}
.footer-form .form-row p{
    margin-bottom: 0;
}
/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 50px 0;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Company Info Column */
.company-info .footer-logo img {
    margin-bottom: 15px;
}

.company-name h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 5px 0;
    line-height: 1.2;
}

.company-name p {
    color: #a8b3d8;
    font-size: 12px;
    font-style: italic;
    margin: 10px 0 20px;
}

.footer-content p {
    color: #c8d0e8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hotline-info {
    margin-bottom: 25px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.phone-number i {
    color: var(--secondary, #2DB7FF);
    font-size: 18px;
}

.phone-number span {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.hotline-text {
    color: var(--secondary, #2DB7FF);
    font-size: 14px;
    margin: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary, #2DB7FF);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(45, 183, 255, 0.3);
}

/* Footer Menus */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #c8d0e8;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--secondary, #2DB7FF);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p, .footer-bottom a {
    text-align: center;
    color: #a8b3d8;
    font-size: 13px;
    margin: 0;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .company-info {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-slogan h2 {
        font-size: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-col h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .site-footer .container {
        padding: 0 15px;
    }
    
    .footer-slogan {
        padding: 40px 0 30px;
    }
    
    .footer-slogan h2 {
        font-size: 20px;
    }
    
    .phone-number span {
        font-size: 18px;
    }
}
    /* Projects Section */
.projects-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 60px 60px;
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/h1-bg02.jpg');
    z-index: 1;
}

.projects-section .container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-prj-header {
    margin-bottom: 4rem !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}
.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Swiper Container */
.projects-slider {
    margin: 0 -15px;
}

.projectsSwiper {
    overflow: visible;
    padding: 20px 0;
}

.projectsSwiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.projectsSwiper .swiper-slide {
    transition: all 0.3s ease;
    opacity: 0.6;
    transform: scale(0.8);
    border-radius: 15px;
    overflow: hidden;
}

.projectsSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.projectsSwiper .swiper-slide-prev,
.projectsSwiper .swiper-slide-next {
    opacity: 0.8;
    transform: scale(0.9);
}

/* Project Item */
.project-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

/* Project Overlay */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: all 0.3s ease;
}

.project-item:hover .project-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.project-info {
    color: white;
    width: 100%;
    text-align: center;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: #fff;
}

/* View All Button */
.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-light:hover {
    background: white;
    color: #2c3e50;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .project-image {
        height: 350px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .project-image {
        height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .project-overlay {
        padding: 20px;
    }
    
    .project-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .projects-section {
        padding: 3rem 0 !important;
    }
    
    .section-header {
        margin-bottom: 2.5rem !important;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .project-image {
        height: 250px;
    }
    
    .project-overlay {
        padding: 15px;
    }
    
    .project-title {
        font-size: 1.1rem;
    }
    
    .projectsSwiper .swiper-slide {
        transform: scale(0.85);
    }
    
    .projectsSwiper .swiper-slide-active {
        transform: scale(1);
    }
    
    .projectsSwiper .swiper-slide-prev,
    .projectsSwiper .swiper-slide-next {
        transform: scale(0.9);
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .project-image {
        height: 220px;
    }
    
    .btn-outline-light {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}
/* Certificate Section Styles */
.mdigi-certificate-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.mdigi-certificate-header {
    text-align: center;
    margin-bottom: 60px;
}

.mdigi-certificate-label {
    display: inline-block;
    color: #007bff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.mdigi-certificate-label::before,
.mdigi-certificate-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background-color: #007bff;
}

.mdigi-certificate-label::before {
    left: -80px;
}

.mdigi-certificate-label::after {
    right: -80px;
}

.mdigi-certificate-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mdigi-certificate-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.mdigi-certificate-swiper {
    padding-bottom: 60px;
    overflow: hidden;
}

/* Scale effect cho slides */
.mdigi-certificate-swiper .swiper-slide {
    opacity: 0.4;
    transform: scale(0.7);
    transition: all 0.4s ease;
}

.mdigi-certificate-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 3;
}

.mdigi-certificate-swiper .swiper-slide-prev,
.mdigi-certificate-swiper .swiper-slide-next {
    opacity: 0.7;
    transform: scale(0.85);
    z-index: 2;
}

.mdigi-certificate-item {
    /*background: #fff;*/
    border-radius: 15px;
    overflow: hidden;
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
    transition: all 0.3s ease;
    /*min-height: 400px;*/
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 300px;
}

.mdigi-certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mdigi-certificate-image {
    position: relative;
    overflow: hidden;
    /*height: 250px;*/
    background: #f8f9fa;
}

.mdigi-certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.mdigi-certificate-item:hover .mdigi-certificate-image img {
    transform: scale(1.05);
}

.mdigi-certificate-content {
    padding: 10px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mdigi-certificate-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.4;
}

.mdigi-certificate-description {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* Navigation */
.mdigi-certificate-next,
.mdigi-certificate-prev {
    width: 50px;
    height: 50px;
    background: #007bff;
    border-radius: 50%;
    color: #fff;
    margin-top: 0;
}

.mdigi-certificate-next:hover,
.mdigi-certificate-prev:hover {
    background: #0056b3;
}

.mdigi-certificate-next::after,
.mdigi-certificate-prev::after {
    font-size: 16px;
    font-weight: 600;
}

/* Pagination */
.mdigi-certificate-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
}

.mdigi-certificate-pagination .swiper-pagination-bullet-active {
    background: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
    .mdigi-certificate-section {
        padding: 60px 0;
    }
    
    .mdigi-certificate-title {
        font-size: 28px;
    }
    
    .mdigi-certificate-label::before,
    .mdigi-certificate-label::after {
        width: 40px;
    }
    
    .mdigi-certificate-label::before {
        left: -60px;
    }
    
    .mdigi-certificate-label::after {
        right: -60px;
    }
    
    .mdigi-certificate-slider-wrapper {
        padding: 0 15px;
    }
    
    .mdigi-certificate-item {
        max-width: 280px;
        height: 350px;
    }
    
    .mdigi-certificate-image {
        height: 200px;
    }
    
    .mdigi-certificate-content {
        padding: 15px;
    }
    
    .mdigi-certificate-name {
        font-size: 15px;
    }
    
    .mdigi-certificate-description {
        font-size: 12px;
    }
    
    .mdigi-certificate-next,
    .mdigi-certificate-prev {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .mdigi-certificate-label::before,
    .mdigi-certificate-label::after {
        display: none;
    }
    
    .mdigi-certificate-title {
        font-size: 24px;
    }
    
    .mdigi-certificate-item {
        max-width: 250px;
    }
}

/* Testimonial Section Styles */
.mdigi-testimonial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
    background-image: url('../img/testimonials-1.png');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

.mdigi-testimonial-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.mdigi-testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.mdigi-testimonial-label {
    display: inline-block;
    color: #1eb2e6;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
}

.mdigi-testimonial-label::before,
.mdigi-testimonial-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background-color: #1eb2e6;
}

.mdigi-testimonial-label::before {
    left: -80px;
}

.mdigi-testimonial-label::after {
    right: -80px;
}

.mdigi-testimonial-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mdigi-testimonial-slider-wrapper {
    position: relative;
}

.mdigi-testimonial-swiper {
    overflow: visible;
}

.mdigi-testimonial-item {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    /*box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);*/
    transition: all 0.3s ease;
    height: auto;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.mdigi-testimonial-item:hover {
    transform: translateY(-10px);
    /*box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);*/
}

.mdigi-testimonial-content {
    padding: 40px 30px 30px;
    flex-grow: 1;
    position: relative;
}

.mdigi-testimonial-quote {
    position: relative;
    text-align: center;
}

.mdigi-testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px;
    color: #1eb2e6;
    font-family: serif;
    line-height: 1;
}

.mdigi-testimonial-quote p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
    font-style: italic;
    text-align: center;
}

.mdigi-testimonial-author {
    display: flex;
    align-items: center;
    padding: 20px 30px 30px;
    background: #f8f9fa;
    margin-top: auto;
}

.mdigi-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
    border: 3px solid #1eb2e6;
}

.mdigi-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mdigi-testimonial-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #1eb2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.mdigi-testimonial-info {
    flex-grow: 1;
}

.mdigi-testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a365d;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.mdigi-testimonial-position {
    font-size: 14px;
    color: #1eb2e6;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

/* Center slide effect - chỉ slide ở giữa được highlight */
.mdigi-testimonial-swiper .swiper-slide {
    opacity: 0.6;
    transform: scale(0.85);
    transition: all 0.4s ease;
}

.mdigi-testimonial-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.mdigi-testimonial-swiper .swiper-slide-next,
.mdigi-testimonial-swiper .swiper-slide-prev {
    opacity: 0.8;
    transform: scale(0.92);
    z-index: 1;
}

/* Fix cho duplicate slides trong loop */
.mdigi-testimonial-swiper .swiper-slide-duplicate-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.mdigi-testimonial-swiper .swiper-slide-duplicate-next,
.mdigi-testimonial-swiper .swiper-slide-duplicate-prev {
    opacity: 0.8;
    transform: scale(0.92);
    z-index: 1;
}

/* Active slide có background màu xanh - chỉ slide giữa */
.mdigi-testimonial-swiper .swiper-slide-active .mdigi-testimonial-item,
.mdigi-testimonial-swiper .swiper-slide-duplicate-active .mdigi-testimonial-item {
    background: linear-gradient(135deg, #1eb2e6 0%, #0ea5e9 100%);
    color: #fff;
}

.mdigi-testimonial-swiper .swiper-slide-active .mdigi-testimonial-quote p,
.mdigi-testimonial-swiper .swiper-slide-duplicate-active .mdigi-testimonial-quote p {
    color: #fff;
}

.mdigi-testimonial-swiper .swiper-slide-active .mdigi-testimonial-quote::before,
.mdigi-testimonial-swiper .swiper-slide-duplicate-active .mdigi-testimonial-quote::before {
    color: rgba(255, 255, 255, 0.3);
}

.mdigi-testimonial-swiper .swiper-slide-active .mdigi-testimonial-name,
.mdigi-testimonial-swiper .swiper-slide-duplicate-active .mdigi-testimonial-name {
    color: #fff;
}

.mdigi-testimonial-swiper .swiper-slide-active .mdigi-testimonial-position,
.mdigi-testimonial-swiper .swiper-slide-duplicate-active .mdigi-testimonial-position {
    color: rgba(255, 255, 255, 0.9);
}

.mdigi-testimonial-swiper .swiper-slide-active .mdigi-testimonial-author,
.mdigi-testimonial-swiper .swiper-slide-duplicate-active .mdigi-testimonial-author {
    background: rgba(255, 255, 255, 0.1);
}

.mdigi-testimonial-swiper .swiper-slide-active .mdigi-testimonial-avatar,
.mdigi-testimonial-swiper .swiper-slide-duplicate-active .mdigi-testimonial-avatar {
    border-color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mdigi-testimonial-section {
        padding: 60px 0;
    }
    
    .mdigi-testimonial-container {
        padding: 0 15px;
    }
    
    .mdigi-testimonial-header {
        margin-bottom: 40px;
    }
    
    .mdigi-testimonial-label::before,
    .mdigi-testimonial-label::after {
        width: 40px;
    }
    
    .mdigi-testimonial-label::before {
        left: -60px;
    }
    
    .mdigi-testimonial-label::after {
        right: -60px;
    }
    
    .mdigi-testimonial-title {
        font-size: 28px;
    }
    
    .mdigi-testimonial-item {
        min-height: 280px;
    }
    
    .mdigi-testimonial-content {
        padding: 30px 20px 20px;
    }
    
    .mdigi-testimonial-quote p {
        font-size: 15px;
    }
    
    .mdigi-testimonial-author {
        padding: 15px 20px 20px;
    }
    
    .mdigi-testimonial-avatar {
        width: 50px;
        height: 50px;
        margin-right: 12px;
    }
    
    .mdigi-testimonial-name {
        font-size: 16px;
    }
    
    .mdigi-testimonial-position {
        font-size: 13px;
    }
    
    /* Mobile: hiển thị 1 slide giữa màn hình */
    .mdigi-testimonial-swiper .swiper-slide {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .mdigi-testimonial-label::before,
    .mdigi-testimonial-label::after {
        display: none;
    }
    
    .mdigi-testimonial-title {
        font-size: 24px;
    }
    
    .mdigi-testimonial-quote::before {
        font-size: 40px;
        top: -15px;
    }
}

/* Partners Section Styles */
.mdigi-partners-section {
    padding: 0 0 80px 0;
    background: #fff;
    position: relative;
}

.mdigi-partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.mdigi-partners-header {
    text-align: center;
    margin-bottom: 60px;
    display:none;
}

.mdigi-partners-label {
    display: inline-block;
    color: #1eb2e6;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
}

.mdigi-partners-label::before,
.mdigi-partners-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background-color: #1eb2e6;
}

.mdigi-partners-label::before {
    left: -80px;
}

.mdigi-partners-label::after {
    right: -80px;
}

.mdigi-partners-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mdigi-partners-slider-wrapper {
    position: relative;
}

.mdigi-partners-swiper {
    overflow: hidden;
    padding: 20px 0;
}

.mdigi-partner-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
}

.mdigi-partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #1eb2e6;
}

.mdigi-partner-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mdigi-partner-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.mdigi-partner-placeholder {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    text-align: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    width: 100%;
}

/* Slider smooth transitions */
.mdigi-partners-swiper .swiper-slide {
    transition: all 0.3s ease;
}

.mdigi-partners-swiper .swiper-slide-active .mdigi-partner-item,
.mdigi-partners-swiper .swiper-slide-next .mdigi-partner-item,
.mdigi-partners-swiper .swiper-slide-prev .mdigi-partner-item {
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .mdigi-partners-container {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .mdigi-partners-section {
        padding: 60px 0;
    }
    
    .mdigi-partners-header {
        margin-bottom: 40px;
    }
    
    .mdigi-partners-label::before,
    .mdigi-partners-label::after {
        width: 40px;
    }
    
    .mdigi-partners-label::before {
        left: -60px;
    }
    
    .mdigi-partners-label::after {
        right: -60px;
    }
    
    .mdigi-partners-title {
        font-size: 28px;
    }
    
    .mdigi-partner-item {
        height: 100px;
        padding: 20px 15px;
    }
    
    .mdigi-partner-logo img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .mdigi-partners-label::before,
    .mdigi-partners-label::after {
        display: none;
    }
    
    .mdigi-partners-title {
        font-size: 24px;
    }
    
    .mdigi-partner-item {
        height: 80px;
        padding: 15px 10px;
    }
    
    .mdigi-partner-logo img {
        max-height: 40px;
    }
    
    .mdigi-partner-placeholder {
        font-size: 14px;
    }
}
/* Contact Section Styles */
.mdigi-contact-section {
    background: var(--primary);
    position: relative;
    background-image: url(../img/bgPattern03.png);
}
.mdigi-contact-form-wrapper .wpcf7-form{
    background: #fff !important;
}
/* Left side - Contact Info */
.mdigi-contact-wrapper {
    display: flex;
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    position: relative;
}

.mdigi-contact-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.mdigi-contact-heading {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    color: #fff;
}

.mdigi-contact-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 40px 0;
    color: rgba(255, 255, 255, 0.9);
}

.mdigi-contact-details {
    space-y: 30px;
}

.mdigi-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.mdigi-contact-item:last-child {
    margin-bottom: 0;
}

.mdigi-contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: #fff;
    backdrop-filter: blur(10px);
}

.mdigi-contact-text {
    flex: 1;
}

.mdigi-contact-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mdigi-contact-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mdigi-contact-value:hover {
    color: #fff;
    opacity: 0.8;
}

.mdigi-contact-form-container {
    width: 100%;
}

.mdigi-contact-form-header {
    margin-bottom: 40px;
}

.mdigi-contact-form-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}
.mdigi-contact-form-section{
    position: absolute;
    right: 0;
    top: 100px;
    z-index: 1;
}
/* Contact Form 7 Styling */
.mdigi-contact-form-wrapper .wpcf7-form {
    display: grid;
    gap: 20px;
}

.mdigi-contact-form-wrapper .wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

.mdigi-contact-form-wrapper input[type="text"],
.mdigi-contact-form-wrapper input[type="email"],
.mdigi-contact-form-wrapper input[type="tel"],
.mdigi-contact-form-wrapper textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
    box-sizing: border-box;
}

.mdigi-contact-form-wrapper input[type="text"]:focus,
.mdigi-contact-form-wrapper input[type="email"]:focus,
.mdigi-contact-form-wrapper input[type="tel"]:focus,
.mdigi-contact-form-wrapper textarea:focus {
    outline: none;
    border-color: #4c6ef5;
    box-shadow: 0 0 0 3px rgba(76, 110, 245, 0.1);
}

.mdigi-contact-form-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

.mdigi-contact-form-wrapper input[type="submit"] {
    background: linear-gradient(135deg, #4c6ef5 0%, #364fc7 100%);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    justify-self: start;
}

.mdigi-contact-form-wrapper input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 110, 245, 0.3);
}

/* Two column layout for form fields */
.mdigi-contact-form-wrapper .wpcf7-form > p:nth-child(1),
.mdigi-contact-form-wrapper .wpcf7-form > p:nth-child(2) {
    display: inline-block;
    width: calc(50% - 10px);
}

.mdigi-contact-form-wrapper .wpcf7-form > p:nth-child(1) {
    margin-right: 20px;
}

/* Google Map Section */
.mdigi-contact-map-section {
    height: 500px;
    position: relative;
}

.mdigi-contact-map-container {
    width: 100%;
    height: 100%;
}

.mdigi-contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mdigi-contact-info,
    .mdigi-contact-form-section {
        padding: 60px 40px;
    }
    
    .mdigi-contact-heading {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .mdigi-contact-wrapper {
        flex-direction: column;
        padding: 0;
    }
    
    .mdigi-contact-info,
    .mdigi-contact-form-section {
        padding: 50px 30px;
    }
    
    .mdigi-contact-heading {
        font-size: 28px;
    }
    
    .mdigi-contact-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }
    
    .mdigi-contact-value {
        font-size: 16px;
    }
    
    /* Stack form fields on mobile */
    .mdigi-contact-form-wrapper .wpcf7-form > p:nth-child(1),
    .mdigi-contact-form-wrapper .wpcf7-form > p:nth-child(2) {
        display: block;
        width: 100%;
        margin-right: 0;
    }
    
    .mdigi-contact-map-section {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .mdigi-contact-info,
    .mdigi-contact-form-section {
        padding: 40px 20px;
    }
    .mdigi-contact-form-container{
    display:none;
    }
    .mdigi-contact-heading {
        font-size: 24px;
    }
    
    .mdigi-contact-description,
    .mdigi-contact-form-text {
        font-size: 15px;
    }
    
    .mdigi-contact-form-wrapper input[type="text"],
    .mdigi-contact-form-wrapper input[type="email"],
    .mdigi-contact-form-wrapper input[type="tel"],
    .mdigi-contact-form-wrapper textarea {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .mdigi-contact-form-wrapper input[type="submit"] {
        width: 100%;
        justify-self: stretch;
    }
}

/* Contact Form 7 Error Messages */
.mdigi-contact-form-wrapper .wpcf7-not-valid-tip {
    color: #e53e3e;
    font-size: 14px;
    margin-top: 5px;
}

.mdigi-contact-form-wrapper .wpcf7-validation-errors {
    background: #fed7d7;
    border: 1px solid #fc8181;
    color: #c53030;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.mdigi-contact-form-wrapper .wpcf7-mail-sent-ok {
    background: #c6f6d5;
    border: 1px solid #68d391;
    color: #2f855a;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}
/* CSS cho page header */
.cs-page_header {
    position: relative;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    background-image: url('../img/about-banner.jpg');
}

.cs-page_header_in {
    position: relative;
    z-index: 2;
}

.cs-page_title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cs-page_subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cs-page_nav {
    margin-top: 20px;
}

.cs-opacity_7 {
    opacity: 0.7;
}

.cs-font_48 {
    font-size: 48px;
}

.cs-font_18 {
    font-size: 18px;
}

.cs-center {
    text-align: center;
}

/* Breadcrumb styles */
.breadcrumb {
    display: inline-block;
}

.breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.breadcrumb li {
    margin: 0 5px;
}

.breadcrumb li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb li a:hover {
    color: #007cba;
}

.cs-text_b_line {
    position: relative;
}

.cs-text_b_line:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .cs-page_header {
        padding: 80px 0 60px;
    }
    
    .cs-page_title {
        font-size: 32px;
    }
    
    .cs-page_subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cs-page_title {
        font-size: 28px;
    }
    
    .cs-page_subtitle {
        font-size: 14px;
    }
}
.about-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.about-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.about-bg {
    position: absolute;
    width: 88%;
    height: 88%;
    background: var(--secondary);
    transform: rotate(-20deg);
    border-radius: 60px;
    z-index: 0;
}

.about-main-image {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 4;
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(45, 183, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

.experience-badge {
    position: absolute;
    bottom: 80px;
    left: 50px;
    z-index: 1;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.experience-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.experience-text {
    text-align: left;
}

.experience-number {
    font-size: 18px;
    font-weight: bold;
    color: var(--secondary);
    line-height: 1;
}

.about-content {
    padding-left: 40px;
}

.section-subtitle {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-description {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
}

.feature-item i {
    color: var(--secondary);
    font-size: 18px;
}

.about-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light-blue);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-download:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(38, 55, 136, 0.2);
}

.btn-about {
    display: inline-flex;
    align-items: center;
    background: var(--secondary);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background: var(--tertiary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 183, 255, 0.3);
}
.about-features a{
    text-decoration: none;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-left {
        min-height: 400px;
    }
    
    .experience-badge {
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .about-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-download,
    .btn-about {
        width: 100%;
        justify-content: center;
    }
    
    .about-main-image {
        max-width: 300px;
    }
    
    .experience-badge {
        padding: 15px 20px;
        left: 10px;
        bottom: 10px;
    }
    
    .experience-number {
        font-size: 16px;
    }
    
    .experience-label {
        font-size: 12px;
    }
    .about-icon{
        right: 0;
    }
}
.value-card {
    background: white;
    /*border-radius: 15px;*/
    padding: 30px 25px;
    height: 100%;
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);*/
    transition: all 0.3s ease;
    /*border: 1px solid rgba(45, 183, 255, 0.1);*/
}

.value-header {
    margin-bottom: 25px;
    text-align: center;
}

.value-content {
    space-y: 20px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.value-icon i {
    color: var(--secondary);
    font-size: 18px;
}

.value-text {
    flex: 1;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Animation cho các item */
.value-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.value-item:nth-child(1) { animation-delay: 0.1s; }
.value-item:nth-child(2) { animation-delay: 0.2s; }
.value-item:nth-child(3) { animation-delay: 0.3s; }
.value-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .company-values-section {
        padding: 60px 0;
    }
    
    .value-card {
        padding: 25px 20px;
    }
    
    .value-text {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .company-values-section {
        padding: 50px 0;
    }
    
    .value-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .value-item {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .value-icon {
        width: 20px;
        height: 20px;
    }
    
    .value-icon i {
        font-size: 16px;
    }
    
    .value-text {
        font-size: 13px;
        line-height: 1.5;
    }
}
.stats-counter-section {
    background-color: var(--secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-image: url(../img/bgPattern03.png);
}
.stats-counter-section .stat-item *{
    font-family: 'Oswald', sans-serif !important;
}
.stats-counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="60" cy="40" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1;
}

.counter {
    font-size: 68px;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.stat-suffix {
    font-size: 68px;
    font-weight: 700;
    color: var(--primary);
    margin-left: 2px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.stat-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-unit, .stat-desc {
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

/* Animation classes */
.stat-item.animate .counter {
    animation: pulseScale 0.6s ease-out;
}

@keyframes pulseScale {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 767px) {
    .stats-counter-section .row{
        display: grid;
    grid-template-columns: repeat(2, 1fr);
    }
    .stat-item{
        flex-direction: column;
    }
}
/* MDIGI Hero Banner Styles */
.mdigi-hero-banner-wrapper {
    position: relative;
    height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mdigi-main-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.mdigi-banner-layout {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Left Section - Text Content */
.mdigi-text-section {
    width: 50%;
    background-color: var(--primary);
    background-size: 50px 50px;
    display: flex;
    justify-content: center;
    padding: 3rem;
    position: relative;
    align-items: center;
    height: 100%;
    max-height: 88vh;
}

.mdigi-text-content {
    max-width: 500px;
    z-index: 2;
}

.mdigi-main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mdigi-intro-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.mdigi-cta-btn {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mdigi-cta-btn:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 183, 255, 0.4);
}

/* Right Section - Image */
.mdigi-visual-section {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.mdigi-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* MDIGI Navigation Arrows */
.mdigi-carousel-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 20;
}

.mdigi-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.mdigi-nav-btn:hover {
    background-color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.mdigi-nav-btn:active {
    transform: scale(0.95);
}

.mdigi-nav-btn svg {
    transition: transform 0.2s ease;
    width: 28px;
    height: 28px;
}

.mdigi-nav-btn:hover svg {
    transform: translateX(3px);
}

.mdigi-prev-btn:hover svg {
    transform: translateX(-3px);
}

/* Grid Pattern Overlay for Text Section */
.mdigi-text-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/rev_home1_1.png'); 
    background-repeat: no-repeat;
    /*background-image: */
    /*    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),*/
    /*    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);*/
    background-size: contain;
    z-index: 1;
}

/* MDIGI Responsive Styles */
@media (max-width: 1024px) {
    .mdigi-main-heading {
        font-size: 3rem;
    }
    
    .mdigi-text-section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .mdigi-banner-layout {
        flex-direction: column;
    }
    
    .mdigi-text-section,
    .mdigi-visual-section {
        width: 100%;
        height: 50vh;
    }
    
    .mdigi-text-section {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .mdigi-main-heading {
        font-size: 2.5rem;
    }
    
    .mdigi-intro-text {
        font-size: 1rem;
    }
    
    .mdigi-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .mdigi-nav-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .mdigi-carousel-controls {
        bottom: 30px;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .mdigi-main-heading {
        font-size: 2rem;
    }
    
    .mdigi-cta-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .mdigi-text-section {
        padding: 1.5rem 1rem;
    }
}
/* MDIGI About Section Enhanced */
.mdigi-about-enhanced{
    background-image: url('../img/h8-bg-2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
}
.mdigi-about-enhanced .mdigi-image-wrapper {
    position: relative;
}

.mdigi-about-enhanced .mdigi-images-stack {
    /*position: relative;*/
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* Main Image - Ảnh lớn bên trái */
.mdigi-about-enhanced .mdigi-main-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: absolute;
    left: 0;
    top: 0;
}

/* Secondary Image - Ảnh nhỏ bên phải, chồng lên */
.mdigi-about-enhanced .mdigi-secondary-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 80px;
    right: 0px;
    z-index: 3;
    border: 6px solid white;
}

/* Điều chỉnh background để phù hợp với layout mới */
.mdigi-about-enhanced .about-bg {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 70%;
    height: 350px;
    background-color: var(--bg-light-blue);
    border-radius: 12px;
    z-index: 1;
}

/* Điều chỉnh icon và badge để không bị che */
.mdigi-about-enhanced .about-icon {
    top: 15px;
    right: -15px;
    z-index: 4;
}

.mdigi-about-enhanced .experience-badge {
    bottom: 30px;
    left: 30px;
    z-index: 4;
}

/* Hover Effects */
.mdigi-about-enhanced .mdigi-main-img:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.mdigi-about-enhanced .mdigi-secondary-img:hover {
    transform: translateY(-3px) scale(1.02);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Responsive cho layout mới */
@media (max-width: 992px) {
    .mdigi-about-enhanced .mdigi-images-stack {
        flex-direction: column;
        align-items: center;
    }
    
    .mdigi-about-enhanced .mdigi-main-img {
        width: 80%;
        height: 300px;
    }
    
    .mdigi-about-enhanced .mdigi-secondary-img {
        width: 70%;
        height: 220px;
        position: relative;
        top: -50px;
        right: 0;
        margin-bottom: -30px;
    }
    
    .mdigi-about-enhanced .about-bg {
        width: 85%;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .mdigi-about-enhanced .mdigi-main-img {
        width: 100%;
        height: 250px;
    }
    
    .mdigi-about-enhanced .mdigi-secondary-img {
        width: 80%;
        height: 180px;
        top: -40px;
    }
    
    .mdigi-about-enhanced .about-bg {
        width: 100%;
        height: 220px;
        top: -20px;
        left: -20px;
    }
    
    .mdigi-about-enhanced .about-icon {
        top: 10px;
        right: 10px;
    }
    
    .mdigi-about-enhanced .experience-badge {
        bottom: 20px;
        left: 20px;
    }
}
/* MDIGI Why Choose Us Section - Unique styling */
.mdigi-why-choose-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    background-image: 
        linear-gradient(45deg, rgba(38, 55, 136, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(38, 55, 136, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(38, 55, 136, 0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(38, 55, 136, 0.02) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    position: relative;
    overflow: hidden;
}

/* Background Pattern Overlay */
.mdigi-why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M10 10h20v20H10zm30 0h20v20H40zm30 0h20v20H70zM10 40h20v20H10zm60 0h20v20H70zM10 70h20v20H10zm30 0h20v20H40zm30 0h20v20H70z" fill="%23263788" opacity="0.03"/></svg>');
    background-size: 100px 100px;
    z-index: 1;
}

.mdigi-why-choose-section .container {
    position: relative;
    z-index: 2;
}

/* Feature Cards */
.mdigi-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(38, 55, 136, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mdigi-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 183, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.mdigi-feature-card:hover::before {
    left: 100%;
}

.mdigi-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary);
}

/* Feature Icons */
.mdigi-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.mdigi-feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--secondary), var(--primary)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.3s ease;
}

.mdigi-feature-card:hover .mdigi-feature-icon::after {
    opacity: 1;
    transform: rotate(180deg);
}

.mdigi-feature-icon i {
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.mdigi-feature-card:hover .mdigi-feature-icon {
    transform: scale(1.1) rotate(-10deg);
}

/* Feature Text */
.mdigi-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.mdigi-feature-card:hover .mdigi-feature-title {
    color: var(--secondary);
}

.mdigi-feature-desc {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mdigi-why-choose-section {
        padding: 60px 0;
    }
    
    .mdigi-feature-card {
        padding: 35px 25px;
        margin-bottom: 30px;
    }
    
    .mdigi-feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .mdigi-feature-icon i {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .mdigi-why-choose-section {
        padding: 50px 0;
    }
    
    .mdigi-feature-card {
        padding: 30px 20px;
    }
    
    .mdigi-feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }
    
    .mdigi-feature-icon i {
        font-size: 24px;
    }
    
    .mdigi-feature-title {
        font-size: 1.1rem;
    }
    
    .mdigi-feature-desc {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .mdigi-feature-card {
        padding: 25px 15px;
    }
    
    .mdigi-feature-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
}
/* MDIGI Video Introduction Section */
.mdigi-video-intro-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Background Setup */
.mdigi-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mdigi-video-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.mdigi-video-intro-section .container {
    position: relative;
    z-index: 3;
}

/* Left Content Styling */
.mdigi-video-content {
    color: white;
    max-width: 500px;
}

.mdigi-video-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.mdigi-video-description {
    margin-bottom: 2.5rem;
}

.mdigi-video-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.mdigi-video-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--tertiary));
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(45, 183, 255, 0.3);
    border: 2px solid transparent;
}

.mdigi-video-btn:hover {
    background: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 183, 255, 0.4);
}

/* Video Player Styling */
.mdigi-video-player-wrapper {
    position: relative;
    max-width: 500px;
    margin-left: auto;
}

.mdigi-video-thumbnail {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mdigi-video-thumbnail:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.mdigi-video-thumb-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.mdigi-video-thumbnail:hover .mdigi-video-thumb-img {
    transform: scale(1.05);
}

/* Play Button */
.mdigi-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 5;
}

.mdigi-play-icon {
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.mdigi-video-play-btn:hover .mdigi-play-icon {
    transform: scale(1.1);
}

/* Ripple Effect */
.mdigi-play-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: mdigi-ripple 2s infinite;
}

.mdigi-play-ripple-2 {
    animation-delay: 1s;
}

@keyframes mdigi-ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Video Modal */
.mdigi-video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.mdigi-video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 900px;
}

.mdigi-video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.mdigi-video-close:hover {
    color: var(--secondary);
}

.mdigi-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.mdigi-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mdigi-video-intro-section {
        padding: 80px 0;
    }
    
    .mdigi-video-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .mdigi-video-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .mdigi-video-player-wrapper {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mdigi-video-intro-section {
        padding: 60px 0;
    }
    
    .mdigi-video-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .mdigi-video-description p {
        font-size: 1rem;
    }
    
    .mdigi-video-thumb-img {
        height: 250px;
    }
    
    .mdigi-video-modal-content {
        width: 95%;
        margin: 10% auto;
        top: 30%;
    }
}

@media (max-width: 576px) {
    .mdigi-video-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .mdigi-video-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .mdigi-video-thumb-img {
        height: 200px;
    }
    
    .mdigi-play-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .mdigi-play-ripple {
        width: 50px;
        height: 50px;
    }
}
/* CSS cho popup */
.quote-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quote-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quote-popup {
    background: white;
    border-radius: 16px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-50px) scale(0.9);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.quote-popup-overlay.active .quote-popup {
    transform: translateY(0) scale(1);
}

.quote-popup-header {
    color: white;
    padding: 25px 30px;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.quote-popup-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    padding-right: 40px;
}

.quote-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.quote-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.quote-popup-body {
    padding: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .quote-popup {
        width: 95%;
        margin: 20px;
        max-height: calc(100vh - 40px);
    }

    .quote-popup-header {
        padding: 20px 25px;
    }

    .quote-popup-body {
        padding: 0;
    }

    .quote-popup-title {
        font-size: 18px;
    }
}
.taxonomy-filter {
    padding: 20px;
    border-radius: 8px;
}
.no-products p, #posts-container p{
    text-align: center;
}
.product-card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product-image img {
    height: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-title a:hover {
    color: var(--primary) !important;
}

.loading {
    opacity: 0.5;
    pointer-events: none;
}

.results-info {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

@media (max-width: 768px) {
    .results-info {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch !important;
    }
    
    .filter-tabs {
        justify-content: flex-start !important;
    }
    
    .product-actions {
        flex-direction: column;
    }
}

.filter-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 20px;
    margin: 0 5px 10px 0;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn:focus,
.filter-btn:active {
    text-decoration: none !important;
    outline: none;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

.results-info {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
}

.post-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image {
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 2rem;
}

.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.post-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

.post-category span {
    background: var(--bg-light-blue);
    color: var(--primary);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.post-title {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
}

.post-title a {
    color: var(--primary);
    text-decoration: none;
}

.post-title a:hover {
    color: var(--secondary);
}

.post-excerpt {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 15px;
}

.btn-quote {
    background: var(--secondary) !important;
    border: none !important;
    color: white !important;
    padding: 10px;
    border-radius: 4px;
    font-weight: 500;
    margin-top: auto;
    cursor: pointer;
    text-decoration: none !important;
    display: block;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-quote:hover,
.btn-quote:focus,
.btn-quote:active {
    background: var(--tertiary) !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

.btn-loadmore {
    background: var(--primary) !important;
    border: none !important;
    color: white !important;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-loadmore:hover,
.btn-loadmore:focus,
.btn-loadmore:active {
    background: var(--secondary) !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

.loading {
    opacity: 0.5;
    pointer-events: none;
}

@media (max-width: 768px) {
    .results-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-tabs {
        justify-content: center;
    }
}
/* Contact Info Section */
.contact-info-section {
    padding: 60px 0;
    background-image: url(/wp-content/uploads/2025/07/bgPattern07.jpg);
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-description {
    color: var(--text-color);
    font-size: 18px;
    line-height: 1.6;
}

.contact-info-row {
    gap: 40px 0;
    margin-bottom: -120px;
}

.contact-iconbox {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	min-height: 100%;
}

.contact-iconbox:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.iconbox-icon {
    margin-bottom: 30px;
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    background-color: var(--bg-light-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.contact-iconbox:hover .icon-wrapper {
    transform: scale(1.1);
}

.iconbox-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.iconbox-content {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.iconbox-content a {
    color: var(--text-color);
    text-decoration: none;
	word-wrap: break-word;
}

.iconbox-content a:hover {
    color: var(--secondary);
}

/* Quote Form Section */
.quote-form-section {
    padding: 140px 0;
}

.quote-form-section .section-heading {
    margin-bottom: 60px;
}

/* Map Section */
.map-section {
    margin-top: 0;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0);
    transition: all 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0);
}

/* Responsive */
@media (max-width: 1199px) {
    .contact-info-section,
    .quote-form-section {
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    
    .map-wrapper {
        height: 350px;
    }
    .contact-info-row{
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
    
    .contact-iconbox {
        padding: 40px 20px 30px;
    }
    
    .iconbox-title {
        font-size: 20px;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .contact-info-section,
    .quote-form-section {
        padding: 60px 0;
    }
}
/* Custom styles for single post */
.cs-post_thumb_wrapper {
    position: relative;
    margin-bottom: 20px;
}

.cs-post_thumb {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.cs-post_badge {
    position: absolute;
    top: 20px;
    left: 20px;
}

.cs-badge {
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.cs-post_meta {
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
}

.cs-post_meta_item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 14px;
}

.cs-post_meta_item i {
    color: var(--primary);
}

.cs-post_title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 20px;
}

.cs-post_content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.cs-post_content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.cs-post_tags {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.cs-post_tags h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.cs-tags_wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cs-tag {
    background: var(--bg-light-blue);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cs-tag:hover {
    background: var(--primary);
    color: white;
    text-decoration: none;
}

.cs-social_share {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.cs-social_share h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.cs-social_btns {
    display: flex;
    gap: 10px;
}

.cs-social_btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cs-social_btn:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.cs-facebook { background: #1877f2; }
.cs-twitter { background: #1da1f2; }
.cs-linkedin { background: #0077b5; }
.cs-email { background: #ea4335; }

.cs-author_box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light-blue);
    border-radius: 10px;
    align-items: center;
    margin: 50px 0;
}

.cs-author_avatar img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.cs-author_name {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.cs-author_description {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cs-nav_link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cs-nav_link:hover {
    text-decoration: none;
}

.cs-nav_label {
    font-size: 14px;
    color: var(--text-color);
    display: block;
    margin-bottom: 8px;
}

.cs-nav_title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    line-height: 1.4;
}

.cs-nav_link:hover .cs-nav_title {
    color: var(--secondary);
}

.cs-related_posts .cs-section_title {
    padding-bottom: 10px;
    margin: 50px 0 10px 0;
}

.cs-related_post_item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.cs-related_post_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cs-related_post_thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cs-related_post_content {
    padding: 20px;
}

.cs-related_post_meta {
    margin-bottom: 10px;
}

.cs-related_post_date {
    font-size: 12px;
    color: var(--text-color);
}

.cs-related_post_title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cs-related_post_title a {
    color: var(--primary);
    text-decoration: none;
}

.cs-related_post_title a:hover {
    color: var(--secondary);
    text-decoration: none;
}

.cs-related_post_excerpt {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Sidebar Styles */
.cs-sidebar {
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.cs-sidebar_widget {
    margin-bottom: 40px;
}

.cs-sidebar_widget_title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}
.cs-sidebar_widget_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}
.cs-search_form {
    position: relative;
}

.cs-search_form input {
    width: 100%;
    padding: 15px 60px 15px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.cs-search_form input:focus {
    border-color: var(--primary);
}

.cs-search_form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cs-search_form button:hover {
    background: var(--secondary);
}

.cs-category_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-category_item {
    border-bottom: 1px solid #f0f0f0;
}

.cs-category_link {
    display: flex;
    justify-content: between;
    align-items: center;
    padding: 12px 0;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.cs-category_link:hover {
    color: var(--primary);
    text-decoration: none;
    padding-left: 10px;
}

.cs-category_count {
    color: var(--primary);
    font-weight: 600;
    margin-left: auto;
}

.cs-recent_post_item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.cs-recent_post_item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cs-recent_post_thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.cs-recent_post_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cs-recent_post_content {
    flex: 1;
}

.cs-recent_post_title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.cs-recent_post_title a {
    color: var(--primary);
    text-decoration: none;
}

.cs-recent_post_title a:hover {
    color: var(--secondary);
    text-decoration: none;
}

.cs-recent_post_meta {
    font-size: 12px;
    color: var(--text-color);
}

.cs-recent_post_meta i {
    color: var(--primary);
    margin-right: 5px;
}

.cs-quote_banner {
    background-color: var(--primary);
    background-image: url(../img/bgPattern03.png);
    background-size: contain;
    background-repeat: no-repeat;
    color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.cs-quote_icon {
    font-size: 30px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.cs-quote_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.cs-quote_text {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cs-quote_hotline {
    margin-bottom: 20px;
}

.cs-hotline_number {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.cs-hotline_number:hover {
    color: white;
    text-decoration: none;
}

.cs-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--secondary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    --text-color: #fff;
}

.cs-btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .cs-post_title {
        font-size: 24px;
    }
    
    .cs-post_meta {
        gap: 15px;
    }
    
    .cs-author_box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .cs-social_btns {
        justify-content: center;
    }
    
    .cs-sidebar {
        margin-top: 50px;
        padding: 20px;
    }
    
    .cs-recent_post_item {
        flex-direction: column;
        gap: 10px;
    }
    
    .cs-recent_post_thumb {
        width: 100%;
        height: 200px;
    }
}
/* Product Details Section */
.cs-product_details {
    padding: 50px 0;
}

.cs-product_image {
    text-align: center;
}

.cs-product_main_img {
    max-height: 500px;
    object-fit: contain;
}

.cs-product_info {
    padding-left: 40px;
}

.cs-rating_stars {
    color: #ffc107;
}

.cs-rating_text {
    color: var(--text-color);
    font-size: 14px;
}

.cs-product_title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.cs-product_description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.cs-product_action .cs-btn {
    background: var(--secondary);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 10; 
    pointer-events: auto;
}

.cs-product_action .cs-btn:hover {
    background: var(--primary);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.cs-product_action .cs-btn span {
    pointer-events: none;
    display: inline-block;
    width: 100%;
    height: 100%;
}
.cs-product_category {
    font-size: 16px;
    color: var(--text-color);
}

.cs-category_label {
    font-weight: 600;
    color: var(--primary);
    margin-right: 10px;
}

.cs-product_category a {
    color: var(--secondary);
    text-decoration: none;
}

.cs-product_category a:hover {
    text-decoration: underline;
}

/* Product Tabs */
.cs-product_tabs {
    background: #fff;
    padding: 40px 0;
}

/* Tab Navigation */
.cs-tabs_nav {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0;
}

.cs-tabs_nav .nav-tabs {
    border: none;
    justify-content: flex-start;
    margin-bottom: 0;
    padding-left: 0;
}

.cs-tabs_nav .nav-tabs .nav-item {
    margin-bottom: 0;
}

.cs-tabs_nav .nav-tabs .nav-link {
    background: transparent;
    border: none;
    color: #6c757d;
    font-weight: 500;
    font-size: 16px;
    padding: 15px 25px;
    margin: 0;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

.cs-tabs_nav .nav-tabs .nav-link:hover {
    color: var(--secondary);
    background: transparent;
    border-color: transparent;
}

.cs-tabs_nav .nav-tabs .nav-link.active {
    background: transparent;
    border: none;
    color: var(--primary);
    font-weight: 600;
    border-bottom: 3px solid var(--secondary);
}

/* Tab Content */
.cs-tab_content {
    background: #fff;
    padding: 30px 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.cs-product_content {
    font-size: 15px;
    line-height: 1.7;
    color: #6c757d;
    text-align: justify;
    padding: 15px;
}

.cs-product_content p {
    margin-bottom: 1rem;
}

.cs-product_content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.cs-product_reviews h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 20px;
}

/* Container wrapper */
.container {
    max-width: 1200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cs-tabs_nav .nav-tabs {
        flex-direction: row;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .cs-tabs_nav .nav-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .cs-tabs_nav .nav-tabs .nav-link {
        padding: 12px 20px;
        font-size: 15px;
        flex-shrink: 0;
    }
    
    .cs-tab_content {
        padding: 20px 0;
    }
    
    .cs-product_content {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .cs-tabs_nav .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Related Products Section */
.cs-related_products {
    padding: 60px 0;
}

.cs-section_title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.cs-related_products_slider {
    padding: 20px 0 60px;
}

.cs-product_item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: solid 1px rgba(0, 0, 0, 0.1);
}

.cs-product_thumb {
    position: relative;
    overflow: hidden;
}

.cs-product_thumb img {
    height: 250px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.cs-product_item:hover .cs-product_thumb img {
    transform: scale(1.05);
}

.cs-product_badge {
    position: absolute;
    top: 15px;
    left: 15px;
}

.cs-badge {
    background: #ff4757;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.cs-product_category_name {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cs-product_name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cs-product_name a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.cs-product_name a:hover {
    color: var(--secondary);
    text-decoration: none;
}

.cs-product_action .cs-btn.cs-style2 {
    background: var(--secondary);
    color: #fff;
    border: 1px solid var(--primary);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    display: inline-block;
    text-align: center;
}

.cs-product_action .cs-btn.cs-style2:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Swiper Custom Styles */
.cs-swiper_btn {
    color: var(--primary);
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.cs-swiper_btn:hover {
    background: var(--primary);
    color: white;
}

.cs-swiper_btn::after {
    font-size: 18px;
    font-weight: 700;
}

.cs-swiper_pagination {
    bottom: 10px;
}

.cs-swiper_pagination .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
    width: 12px;
    height: 12px;
}

.cs-swiper_pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .cs-product_info {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .cs-product_title {
        font-size: 28px;
    }
    
    .cs-tabs_nav .nav-tabs .nav-link {
        padding: 12px 25px;
        font-size: 16px;
        margin: 0 5px;
    }
    
    
    .cs-section_title {
        font-size: 28px;
    }
    
    .cs-swiper_btn {
        display: none;
    }
}

@media (max-width: 576px) {
    .cs-tabs_nav .nav-tabs {
        flex-direction: column;
        align-items: start;
    }
    
    .cs-tabs_nav .nav-tabs .nav-link {
        margin: 5px 0;
        width: 200px;
        text-align: center;
    }
}