:root{
--primary-color:#2a5298;
--secondary-color:#FE7214;
--gray:#4c4a4a;
--wp-blue-dark:#1F5F8B;
--wp-blue:#2F7EA8;
--wp-blue-light:#4FA3C7;
/* Accent â€“ Color grading */
--wp-accent-yellow:#FFC700;
--wp-accent-cyan:#1EC9FF;
--wp-accent-red: #FF3B30;
--wp-accent-green: #32E132;
/* Background */
--wp-bg-dark:#0B0F14; 
--wp-bg-section:#0E1A22; 
--wp-bg-light: #FFFFFF;
/* Text */
--wp-text-main:#FFFFFF;
--wp-text-muted:#B6C2CC;
--wp-text-dark:#1C1C1C;	
}
.services-intro__price {
    position: relative;
    border-radius: 18px;
    padding: 24px;
    background: #000;
    z-index: 1;
}
.services-intro__price::before{
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(
        130deg,
        var(--primary-color),
        var(--wp-blue-dark),
        var(--wp-blue),
        var(--wp-blue-light),
        var(--secondary-color)
    );
    background-size: 350% 350%;
    animation: gradientBorder 5s linear infinite;
    z-index: -1;
}
@keyframes gradientBorder {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.services-intro__price::after{
     content: "";
    position: absolute;
    inset: 2px;
    border-radius: 16px;
    background: #fff;
    z-index: -1;
}
.services-intro__price-head {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 14px;
    color:var(--primary-color);
}
.services-intro__price ul {
    margin: 10px 0 18px;
    padding-left: 18px;
}

.services-intro__price ul li {
    margin-bottom: 8px;
    line-height: 1.4;
    color: #222;
}

.services-intro__price-time {
    font-size: 15px;
    line-height: 1.5;
    color: #222;
}
.services-intro__price-head strong {
    font-weight: 700;
}

.services-intro__price ul::after {
    content: "";
    display: block;
    width: 90px;
    height: 1px;
    background: #ccc;
    margin: 20px auto 0;
}

/*ul services*/
.ss_services {
  position: relative;
}

.cls-services {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
 /* background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(233, 236, 239, 0.8);*/
  border-bottom: none;
  padding: 0px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cls-services ul {
  list-style: none;
  margin: 0;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  width: 100%;
}

.cls-services ul li {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  text-align: center;
}

.cls-services ul li a {
  color:#fff;
  text-decoration: none;
  padding: 5px 35px;
  border-radius: 0px 0px 8px 8px;
  transition: all 0.3s ease;
  display: block;
  background-color:rgba(0, 0, 0, 0.3);
  text-align: center;
  white-space: nowrap;
}

.cls-services ul li a:hover {
  color: #ffffff;
  background-color: var(--primary-color, #007bff);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.25);
}

.cls-services ul li.current-menu-item a {
  color: var(--primary-color);
  font-weight: 700;
  background-color: #fff;
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.3);
  transform: translateY(-3px);
}
/*btn-cta*/
.cta-button {
    display: inline-block;
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}
.cta-button {
    animation: slideUp 0.8s ease 0.9s forwards;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    color: white;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ==================== MOBILE: LÆ¯á»šI 2 Cá»˜T ==================== */
@media (max-width: 768px) {
  .cls-services {
    position: relative;  
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: none;   
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .cls-services ul {
    display: grid;
    grid-template-columns: 1fr 1fr;  
    gap: 16px;
    padding: 0 20px;
    justify-items: center;
  }

  .cls-services ul li {
    width: 100%;
  }

  .cls-services ul li a {
    width: 100%;
    padding: 12px 10px;        
    font-size: 12px;
    border-radius: 12px;
    white-space: normal;       
    background-color: rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
  }

  .cls-services ul li a:hover,
  .cls-services ul li.current-menu-item a {
    transform: translateY(-2px);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .cls-services ul {
    gap: 15px;
  }
  .cls-services ul li a {
    padding: 10px 16px;
    font-size: 15px;
  }
}
.row_project_img .gallery-col .col-inner {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transition: all .25s ease;
}

.row_project_img .gallery-col .col-inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}

.row_project_img .box-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .35s ease;
  border-radius: 10px;
}

.row_project_img .col-inner:hover img {
  transform: scale(1.06);
}

.row_project_img .box-text {
  padding: 8px 12px 14px;
}
.row_project_img .gallery-col {
  margin-bottom: -10px;
}
@media (max-width: 768px) {
  .row_project_img.row-small {
    gap: 12px;
  }

  .row_project_img .col-inner {
    border-radius: 10px;
  }
}
/*overlay banner img*/
.ss_banner_service {
    position: relative;
    overflow: hidden;
}

.ss_banner_service img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;   /* chuyá»ƒn Ä‘á»™ng mÆ°á»£t */
}

.ss_banner_service::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);      /* lá»›p phá»§ Ä‘en nháº¹ */
    transition: background .6s ease;  /* mÆ°á»£t */
    pointer-events: none;
}
.ss_banner_service:hover::after {
    background: rgba(0,0,0,.15);
}