/*
Theme Name: Custom Business Theme
Author: Trung Hà
Version: 1.0
*/



.container {
    max-width: 1200px;
    margin: 0 auto;
	padding-right:15px; 
	padding-left:15px;
}

/* Khung bọc ngoài để giữ chỗ, chống giật body */
.header-outer {
    height: 78px;
    position: relative;
    width: 100%;
}

.site-header {
    width: 100%;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    z-index: 9999;
    transition: background 0.3s ease;
}

/* Khi cuộn xuống: Chỉ thay đổi trạng thái của site-header bên trong */
.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    height: 78px; 
    background: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    
    /* Hiệu ứng trượt và mờ dần */
    animation: smoothFadeDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes smoothFadeDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.admin-bar .site-header {
    top: 32px;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
	width:100%;
	gap:15px;
}
.site-header .logo , .footer-logo{
    max-width: 190px;
    max-height: 40px;
}
.logo img, .footer-logo img{max-height:40px;}

.header-cta .btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    height: 38px;
    padding: 0 30px;

    background: linear-gradient(0deg, #d55d44, #fc8236);
    color: #fff;

    font-size: 14px;
    font-weight: bold;

    border-radius: 999px;
    text-decoration: none;
    border: none;
}

.main-menu .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu .menu li {
    display: inline-block;
    position: relative;
}

.main-menu .menu li a {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.main-menu .menu li::after {
    content: "｜";
    color: #000;
	font-size:13px;
}

.main-menu .menu li:last-child::after {
    content: "";
}
.right-header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 20px;
}

/* footer */


.site-footer {
    background: #f2f2f2;
}

.footer-top {
    padding: 38px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
}

/* LEFT */
.footer-left {
    width:75%;
}

.footer-info {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
}
.footer-right{
	width:25%;
}

.footer-right .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-right .footer-menu li {
    margin-bottom: 0;
}

.footer-right .footer-menu li a {
    display: inline-block;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
	    line-height: 35px;

}

.footer-bottom {
    text-align: center;
    background: #fff;
    font-size: 16px;
    color: #000;
    height: 87px;
    display: flex;
    align-items: center;
    justify-content: center;
}
p, h1,h2,h3,h4,h5,h6{
	margin:0
}
.footer-phone , .footer-phone a{
    font-size: 28px;
    font-weight: 500;
    color: #002872;
    padding-top: 10px;
    padding-bottom: 20px;
	text-decoration:none;
}
.footer-phone img{
	width: 26px;
    height: 24px;

}
.btn-contact{
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    height: 49px;
    padding: 0 20px;
    background: linear-gradient(0deg, #d55d44, #fc8236);
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    border: none;
	width:max-content;
}
.icon-but-2{margin-left: 20px;}

/* Home*/

/* ===== HERO ===== */
.section-hero {
    background: url('/wp-content/uploads/2026/03/bg_ss1.png') no-repeat center/cover;
    padding: 60px 0;
    color: #fff;
}

/* content */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-title {
    font-size: 46px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* image */
.hero-image img {
    width: 100%;
    display: block;
}


/* ===== GRID SYSTEM ===== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 0 15px;
    box-sizing: border-box;
}

/* ===== LARGE (DESKTOP) ===== */
.large-1 { width: 8.333%; }
.large-2 { width: 16.666%; }
.large-3 { width: 25%; }
.large-4 { width: 33.333%; }
.large-5 { width: 41.666%; }
.large-6 { width: 50%; }
.large-7 { width: 58.333%; }
.large-8 { width: 66.666%; }
.large-9 { width: 75%; }
.large-10 { width: 83.333%; }
.large-11 { width: 91.666%; }
.large-12 { width: 100%; }

/* ===== MEDIUM (TABLET) ===== */
@media (max-width: 1024px) {
    .medium-1 { width: 8.333%; }
    .medium-2 { width: 16.666%; }
    .medium-3 { width: 25%; }
    .medium-4 { width: 33.333%; }
    .medium-5 { width: 41.666%; }
    .medium-6 { width: 50%; }
    .medium-7 { width: 58.333%; }
    .medium-8 { width: 66.666%; }
    .medium-9 { width: 75%; }
    .medium-10 { width: 83.333%; }
    .medium-11 { width: 91.666%; }
    .medium-12 { width: 100%; }
}

/* ===== SMALL (MOBILE) ===== */
@media (max-width: 768px) {
    .small-1 { width: 8.333%; }
    .small-2 { width: 16.666%; }
    .small-3 { width: 25%; }
    .small-4 { width: 33.333%; }
    .small-5 { width: 41.666%; }
    .small-6 { width: 50%; }
    .small-7 { width: 58.333%; }
    .small-8 { width: 66.666%; }
    .small-9 { width: 75%; }
    .small-10 { width: 83.333%; }
    .small-11 { width: 91.666%; }
    .small-12 { width: 100%; }
}

.hero-image {
    padding-right: 90px;
}

/* ===== SECTION ABOUT ===== */
.section-about {
    padding: 50px 0;
    background: #f5f5f5;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 600;
    color: #002e8b; 
}

/* image */
.about-image img {
    width: 100%;
    display: block;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #000;
}



/* ===== SECTION SERVICES ===== */
.section-services {
    position: relative;
    background: url('/wp-content/uploads/2026/03/bg_police.png') no-repeat center/cover;
    padding: 135px 0 85px;
    color: #fff;
}


/* content nằm trên overlay */
.section-services .container {
    position: relative;
    z-index: 2;
}

/* title trắng */
.section-title.white h2 {
    color: #fff;
}

/* box 818px */
.services-box {
    max-width: 818px;
    margin: 40px auto 0;
}
.services-box .col:first-child .service-item,.services-box .col:nth-child(4) .service-item{
	border-left:none
}
/* item */
.service-item {
    text-align: center;
    margin-bottom: 80px;
    border-left: 2px solid #87a1ca;
}
.services-box .col:nth-child(4) .service-item,
.services-box .col:nth-child(5) .service-item,
.services-box .col:nth-child(6) .service-item{
	margin-bottom:0
}
/* icon tròn */
.service-item .icon {
    width: 130px;
    height: 130px;
    margin: 0 auto 25px;
}
.service-item .icon img{
	width:130px;
    height: 130px;
}
/* text */
.service-item p {
    font-size: 18px;
    line-height: 1.6;
}




/* ===== SECTION CASES ===== */
.section-cases {
    padding: 32px 0;
}

/* container riêng */
.cases-box {
    max-width: 878px;
    margin: 0 auto;
}

/* item */
.case-item {
    position: relative;
    overflow: hidden;
}

/* ảnh */
.case-item img {
    width: 100%;
    display: block;
}

/* content */
.case-content {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    color: #fff;
}

.case-content p {
    font-size: 18px;
    font-weight:500;
}

.case-content .icon {
    width: 18px;
    height: 18px;
}

.cases-box .col{
	padding:0 11px 22px;
}
.cases-box .col:last-child{
	padding-bottom:0;
}
.row-center{
	justify-content:center
}
.cases-box .row .col.no-pad{
	padding-bottom:0
}
/* ===== SECTION CTA ===== */
.section-cta {
    background: url('/wp-content/uploads/2026/03/長方形-1486.png') no-repeat center/cover;
    padding: 35px 0;
}

/* box trắng */
.cta-box {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: space-around;

    padding: 30px;
}

/* phone */
.cta-phone {
    font-size: 22px;
    font-weight: 600;
    color: #1a4fa3;
}
.cta-box .btn-contact{
	font-size: 24.25px;
    font-weight: 400;
    height: 78.75px;
	gap:45px;
	justify-content:space-between
}
.cta-box .svg{
	    margin-left: 35px;
}


.section-cta .footer-phone img {
    width: 42px;
    height: 39px;
	object-fit:contain;
}
.section-cta .footer-phone{
	    font-size: 46px;
    padding: 0;
}
.section-blue{
	background:#002872
}

.section-blue .case-content p{
	color:#002872;
}



/* ===== SECTION NEWS ===== */
.section-news {
    padding: 70px 0 40px;
}

/* title */
.section-news .section-title {
    text-align: center;
    margin-bottom: 95px;
}

.section-news h2 {
	color:#1f292e;
}

/* box 980 */
.news-box {
    max-width: 980px;
    margin: 0 auto;
}

/* item */
.news-item {
    display: flex;
    align-items: center;
    gap: 25px;

    padding: 20px;
    border-bottom: 1px solid #c7c7c7;
    position: relative;
}
.section-news .news-item:first-child{
	border-top:1px solid #c7c7c7
}
/* date */
.news-item .date {
    font-size: 12px;
    color: #1f292e;
    min-width: 60px;
}

.news-item .cat {
    background: #222d63;
    color: #fff;
    font-size: 13.63px;
    padding: 1px 13px;
    border-radius: 999px;
    height: 24px;
	line-height:24px;
	text-align:center;
}

/* title */
.news-item .title {
    flex: 1;
    font-size: 13.36px;
    color: #000;
	text-decoration:none;
}
/* button */
.news-btn {
    text-align: center;
    margin-top: 40px;
}
.news-btn a {
    display: inline-block;
    background: #002268;
    color: #fff;
    padding: 13px 80px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 18px;
}

a.arrow{
	line-height:0
}

/* Service */

/* ===== HERO PAGE ===== */
.section-hero-page {
    height: 560px;
    position: relative;
    color: #fff;
	background-repeat: no-repeat;
    background-position: center;
    background-size: cover;	
}

.hero-page-service {
    background: linear-gradient(rgba(0, 41, 115, 0.2), rgba(0, 41, 115, 0.2)), 
                url('/wp-content/uploads/2026/04/unrecognizable-man-woman-business-suits-looking-laptop-screen-together.png');
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* container full height */
.section-hero-page .container {
    height: 100%;
    position: relative;
}

/* breadcrumb */
.hero-breadcrumb {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 14px;
    color: #fff;
}

/* center content */
.hero-content-page {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* title */
.hero-title-page {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 25px;
}

/* sub */
.hero-sub-page {
    font-size: 22px;
}


/* ===== SECTION INTRO ===== */
.section-intro {
    margin-top: -75px;
	position:relative;
}

/* container 1140 */
.section-intro .container {
    max-width: 1140px;
}

/* box trắng */
.intro-box {
    background: #fff;
    padding: 75px 0;
}

/* text box */
.intro-text {
    max-width: 922.75px;
    margin: 0 auto;
    text-align: center;
}

/* text */
.intro-text p {
    font-size: 18px;
    line-height: 2;
}




/* ===== SECTION SERVICES LIST ===== */
.section-services-list {
    padding: 15px 0 25px;
}

.service-card {
    background: #fff;
    padding: 70px 32px 32px; 
    position: relative;
    border: 3px solid #e5e5e5;
	width:100%;
}
.service-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
	width:119px;
}
.service-icon img{
    width: 88px;
    height: 88px;	
}
.service-title {
    text-align: center;
    font-size: 25px;
	font-weight:400;
	margin-bottom:30px;
}

/* image */
.service-image img {
    width: 100%;
    display: block;
    margin-bottom: 25px;
	height:256px;
}

/* desc */
.service-desc {
    font-size: 16px;
    padding-bottom: 30px;
	margin-bottom:15px;
	border-bottom:1px solid #ebebeb;
}
.desc-line-2{
	height:49px;
}
.sevice-desc2{line-height:1.8}
.section-services-list .row .col{
	padding-bottom:80px;
	display:flex;
}
.section-services-list .row .col:nth-last-child(-n+2) {
	padding-bottom:45px;
}
.section-title-page h2 {
    font-size: 34px;
    font-weight: 600;
    color: #002e8b;
	text-align:center;
}
.section-services-list .section-title-page h2{
		margin-bottom:120px
}

.hero-page-staff {
    background: linear-gradient(rgba(0, 41, 115, 0.3), rgba(0, 41, 115, 0.3)), 
                url('/wp-content/uploads/2026/04/three-professionals-smiling-modern-office-setting.png');
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* ===== SECTION PROFILE ===== */
.section-profile {
    padding: 50px 0 70px;
}
.section-profile .section-title-page{
	margin-bottom:35px
}
/* box 760 */
.profile-box {
    max-width: 760px;
    margin: 0 auto;
}

/* wrapper */
.profile-staff {
    display: flex;
    justify-content: space-between;
    align-items: center; /* căn giữa dọc */
}

/* image */
.profile-image {
    width: 305px;
    flex: 0 0 305px;
}

.profile-image img {
    width: 100%;
    display: block;
}

/* content */
.profile-content {
    width: 309px;
    flex: 0 0 309px;
}
.profile-name{
	font-size:24px;
	border-bottom:2px solid #002973;
	margin-bottom:25px;
	padding-bottom:18px;
}
.profile-name span{
	font-size:16px;
}
.profile-content p{
	font-size:16px;
	margin-bottom:30px;
}
.hero-breadcrumb a{
	color:#fff;
}
.hero-breadcrumb span{
	margin:0 5px
}


.hero-page-blog {
    background: linear-gradient(rgba(0, 41, 115, 0.2), rgba(0, 41, 115, 0.2)), 
                url('/wp-content/uploads/2026/04/business-people-meeting-discuss-situation-market.png');
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section-news-page{
	padding:100px 0;
}
.pagination-custom {
    text-align: center;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
	padding-top:55px;
}
ul.page-numbers{
	    display: flex;
    gap: 10px;
	    list-style: none;
	margin:0;
	padding:0;
}
.page-numbers li {
    height: 35px;
    border: 2px solid #ededed;
    border-radius: 5px;
    width: max-content;
	padding-left:5px;
	padding-right:5px;
	line-height:35px;
	min-width:35px;
	display:flex;
	align-items:center; justify-content:center
}
.page-numbers li a, .page-numbers li{
	color:#282828;
	text-decoration:none;
	font-size:18px;
}
.page-numbers li:has(.current){
	background:#002872;
	color:#fff;
	border-color:#002872;
}
.pagination-custom .last, .pagination-custom .first{
	color:#282828;
	text-decoration:none;
	font-size:18px;	
	    height: 31px;
    border: 2px solid #ededed;
    border-radius: 5px;
    width: max-content;
    min-width: 21px;
	padding-left:5px;
	padding-right:5px;
}
section.single-post{
	padding:50px 0;
}
section.single-post p, section.single-post h1, section.single-post h2, section.single-post h3, section.single-post h4, section.single-post h5, section.single-post h6{
	margin-bottom:1rem;
	line-height:1.7
}
.hero-page-access {
    background: linear-gradient(rgba(0, 41, 115, 0.4), rgba(0, 41, 115, 0.4)), 
                url('/wp-content/uploads/2026/04/beautiful-architecture-business-office-building-exterior.png');
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.map-box{
    max-width: 920px;
    margin: 0 auto;	
}
.access-ss{
	padding:30px 0;
}
.map-box iframe{
	margin-bottom:45px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #ddd;
}

.info-table th,
.info-table td {
    padding: 25px;
    vertical-align: top;
    border-bottom: 1px solid #d8d8d8;
    font-size: 16px;
	text-align:left;
		font-weight:400;
}

.info-table th {
    width: 20%;
    background: #f2f2f2;
}

.info-table td {
    width: 80%;
    line-height: 1.7;
}
.info-table{
	margin-bottom:40px;
}
.hero-page-contact {
    background: linear-gradient(rgba(0, 41, 115, 0.3), rgba(0, 41, 115, 0.3)), 
                url('/wp-content/uploads/2026/04/business-hand-with-mobile-phone.png');
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.contact-box{
    max-width: 920px;
    margin: 0 auto;	
}
.contact-box .section-title-page h2{
	text-align:left;	
	margin-bottom:40px
}
.contact-us{
	padding:70px 0 35px;
}

.cf7-table {
    border-top: 1px solid #ddd;
}

.cf7-row {
    display: flex;
    border-bottom: 2px solid #d8d8d8;
}

.cf7-label {
    width: 30%;
    background: #f2f2f2;
    padding: 25px;
	position:relative
}

.cf7-field {
    width: 70%;
    padding: 25px;
}

.cf7-field input,
.cf7-field textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #d8d8d8;
    border-radius: 5px;
    font-size: 16px;
}
.cf7-field input {
    background: #f0f1ff;	
}
.cf7-field textarea{
	height:119px;
	max-width:469px;
}
/* name 2 cột */
.name-group {
    display: flex;
    gap: 15px;
    align-items: center;
}


/* badge */
.required {
    background: #c8143d;
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
	position:absolute;
	right:25px;
}

.optional {
    background: #8e8e8e;
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
	position:absolute;
	right:25px;
}

/* note */
.cf7-field small {
    display: block;
    margin-top: 8px;
    color: #464a4c;
	font-size:13px;
}

/* submit */
.cf7-submit {
    text-align: center;
    margin-top: 35px;
}

.cf7-submit input {
    background: #002872;
    color: #fff;
    padding: 9px 140px;
    border-radius: 99px;
    border: none;
    font-size: 17px;
    cursor: pointer;
    max-height: 44px;
}


.cf7-field p{
	margin-bottom:10px;
}
input::placeholder {
    color: #b5afb2;
    font-size: 16px;
	font-weight:600;
}



/* container 2 cột */
.name-group {
    display: flex;
    gap: 20px;
}

/* mỗi cột */
.name-group p {
    display: flex;
    gap: 8px;
    margin: 0;
    width: 50%;
}

/* label 姓 名 */
.name-group p > span:first-child {
    min-width: 20px;
    white-space: nowrap;
	padding-top:11px;
}

/* xoá <br> */
.name-group p br {
    display: none;
}

/* wrapper input */
.name-group .wpcf7-form-control-wrap {
    flex: 1;
}

/* input full width */
.name-group input {
    width: 100%;
    max-width: 100%; 
    box-sizing: border-box;
}
.wpcf7 input[type="email"]{
	max-width:391px;
}


.mobile-toggle , .mobile-menu-overlay{
    display: none;
}
.news-time{
	display:flex; 
	align-items:center;
	gap:25px;
	width:20%
}
.news-link{
	    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    width: 80%;
}
.footer-bottom br{
	display:none
}
.service-image img{
	object-fit:cover;
}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #222d63;
    cursor: pointer;
    display: none;
    z-index: 997;
    font-size: 20px;
    line-height: 48px;
    text-align: center;
    transition: all 0.3s ease;
}

#backToTop:hover {
    background: #222d63;
	color:#fff;
}