2* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

:root {
    --primary-color: #c1272e;
}

body {
    font-family: 'Pathway Extreme', sans-serif;
    line-height: 1.4;
    color: #333;
	margin: 0;
}

h5 {
    font-size: 18px;
    font-weight: 500;
}

h4 {
    font-size: 24px;
    font-weight: 500;
}

h3 {
    font-size: 28px;
    font-weight: 500;
}

h2 {
    font-size: 42px;
    font-weight: 500;
}

.font_Inter, p {
    font-family: 'Inter', sans-serif;
    /* color: #666666; */
    /* text-align : justify; */
}

p {
    font-size: 16px;
    line-height: 24px;
	margin-top: 0;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none !important;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 20px;
    }

.header-left {
    width: 20%;
}

    .header-left img {
        width: 100px;
        height: 70px;
    }

.header-right {
    display: flex;
    height: 80px;
    width: 80%;
    justify-content: space-between;
    align-items: center;
    margin-left: 7%;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
	padding: 0;
}

    .nav ul li a {
        font-weight: 600;
    }

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

    .nav a:hover .submenu a,
    .box_dmmenu li.active a {
        color: #c41e3a;
    }
.box_dmmenu li.active .submenu a {
	color: #333;
}
/* Submenu styles */
.nav > ul > li {
    position: relative;
}

.nav a {
    display: flex;
    align-items: center;
    gap: 5px;
	font-size: 18px;
}

/* .submenu{
    display: flex;
    flex-direction: column;   
    gap: 0px !important;
} */

.submenu li {
    /* border-bottom: 1px 1px solid #ccc; */
}
.has-submenu {
	padding-right: 20px;
}
.has-submenu .nv-ico {
	border: 2px solid transparent;
    border-radius: 1px;
    border-right: 0;
    border-top: 0;
    content: " ";
    display: block;
    height: .5em;
    pointer-events: none;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    width: .5em;
    border-color: #334155;
    margin-top: -8px;
    right: 0;
}
.has-submenu.active .nv-ico {
	border-color: #c41e3a;
}
.nav a:hover {
    color: #c41e3a;
}
.has-submenu .submenu { 
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
	width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    /* border-radius: 4px; */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    
    gap: 0px !important;
    /*margin-top: 10px; 
	padding: 10px 0;*/
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
} */
.submenu {
    position: absolute;
    z-index: 10;
    width: 250px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
}

    .submenu li {
        display: block;
        margin: 0;
    }

    .submenu a {
        padding: 14px 20px;
        display: block;
        white-space: nowrap;
        font-size: 16px;
        text-transform: none;
        color: #333;
        transition: all 0.2s ease;
		background: #fff;
    }

        .submenu a:hover {
            background: #f8f8f8;
            color: #c41e3a !important;
            padding-left: 25px;
        }

/* Dropdown arrow */
.has-submenu > a i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.has-submenu:hover > a i {
    transform: rotate(180deg);
}

.cta-button {
    background: transparent;
    color: #c41e3a;
    border: none;
    padding: 5px 15px;
    border: 1px solid #c41e3a;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 13px;
}
.cta-button i{
	margin-right: 5px;
}
    .cta-button:hover {
        background: #a01729;
        color: #fff;
    }

.search-button {
    height: 100%;
    background: #c41e3a;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    display: flex;
    align-items: center;
}

    .search-button i {
        padding: 12px 15px;
    }

    .search-button:hover {
        background: #a01729;
    }

.searchform_dropdown {
    position: absolute;
    z-index: 5;
    right: 0;
    background: white;
    top: 100%;
    right: 0;
    padding: 15px;
    border-radius: 6px;
    width: 360px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
    display: block;
    transition: all 0.25s ease-in-out;
}

    .searchform_dropdown input {
        display: block;
        outline: 0;
        border: 0;
        width: 100%;
        background: #f4f4f4;
        height: auto;
        line-height: 1.65;
        padding: 10px;
        border-radius: 6px;
    }

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

    .hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(22, 22, 22, 0.85) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo img {
    width: 188px;
    height: auto;
    margin: 0 auto 20px;
}

.hero .hero_ttl {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 60px;
    line-height: 1.2;
	text-align:center;
}

.hero .hero_des {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.2;
	text-align:center;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-align: justify;
}

.hero-cta {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

    .hero-cta .arrow {
        /* margin-left: 15px; */
        background: url(/assets/images//vec1.png) right center/5px 10px no-repeat;
        padding-right: 25px;
    }

    .hero-cta:hover {
        background: #a01729;
    }

/* Search Bar */
.search-container {
    max-width: 1000px;
    margin: 30px auto 50px;
}

.search-bar {
    display: flex;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-select {
    flex: 1;
    position: relative;
    padding: 7px;
    border-right: 1px solid #e8e8e8;
}

    .search-select:last-child {
        border-right: none;
    }

    .search-select select {
        width: 100%;
        padding: 12px 35px;
        border: none;
        background: transparent;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        font-size: 14px;
        color: #333;
        cursor: pointer;
        outline: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 12px;
    }

        .search-select select:focus {
            outline: none;
        }

    .search-select::after {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 10px;
        color: #666;
        pointer-events: none;
    }

.search-bar .search-btn {
    width: 10%;
    border-radius: 0 10px 10px 0;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

    .search-bar .search-btn:hover {
        background: #ff4d4f;
    }

    .search-bar .search-btn i {
        font-size: 18px;
    }

/* Property Showcase */
.property-showcase {
    padding: 0;
    background: white;
}

    .property-showcase .box1 {
        /*max-width: 100% !important;*/
    }

.box1 {
    /*margin: 0 !important;*/
    padding: 0 !important;
    display: flex;
    flex-direction: row;
	align-items: center;
}

    .box1 .left {
        width: 50%;
    }

.cover_left {
    width: 100%;
    height: 100%;
    /* padding: 18% 0 10% 0; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-badge {
    position: absolute;
    padding-bottom: 30%;
    left: 0;
    top: 60%;
    transform: translateY(-50%) rotate(-90deg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.experience-number {
    font-family: "Pathway Extreme", sans-serif;
    font-weight: 700;
    color: #c1272e;
    font-size: clamp(3rem, 8vw, 96px);
    text-transform: uppercase;
}

.experience-text {
    font-family: "Pathway Extreme", sans-serif;
    font-weight: 700;
    color: #000;
    font-size: clamp(1.5rem, 4vw, 36px);
    text-transform: uppercase;
    line-height: 1.25;
}

.logo-overlay {
    position: absolute;
    top: 8%;
	left: 10%;
    width: 240px;
    height: 240px;
    border-radius: 10%;
    /*background: url(/assets/images//bg_over1.png) center center/cover no-repeat;*/
}

    .logo-overlay .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.616);
        border-radius: 10%;
        z-index: 1;
    }

    .logo-overlay .logo-overlay-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 150px;
        height: 100px;
        background: url(/assets/images//logo_pro.png) center center/cover no-repeat;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }


.box1 .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box1 .right {
    width: 50%;
    background: url(/assets/images//bg_s1.png) center center/cover no-repeat;
}

    .box1 .right .showcase-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* height: 100%; 
        width: 100%;*/
        padding: 5% 0 5% 5%;
        margin: 10% 0;
    }
.about-image-side {
    position: relative;
    margin: 0 0 0 auto;
    height: 100%;
}

.about-main-image {
    height: 100%;
    padding: 20% 0 15% 0;
}

    .about-main-image .img_1 {
        /*width: 65% !important;*/
        object-fit: cover !important;
        float: right;
        border-radius: 36px;
    }
.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-image {
    height: 100%;
}

.badge {
    background: #c41e3a;
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.showcase-info h2 {
    margin: 40px 0;
    color: #333;
    line-height: 1.2;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: url(/assets/images//dot.png) center center/contain no-repeat;
}

h2 .dot {
    margin-left: 15px;
    margin-bottom: 0 !important;
}

.showcase-info p {
    line-height: 30px;
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    /*width: 75%;*/
}

.info_bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.learn-more {
    background: #c41e3a;
    color: white;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    margin-right: 15px;
    font-size: 20px;
}

.play-button, .play-button2 {
    color: white;
    border: none;
    margin-left: 15px;
    width: 55px;
    height: 55px;
    cursor: pointer;
    position: relative;
    -webkit-animation: ripple 0.7s linear infinite;
    animation: ripple 0.7s linear infinite;
    border-radius: 50%;
}


    /* Tạo hiệu ứng ripple */
    .play-button::after, .play-button2::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        background: rgba(255, 1, 1, 0.629);
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
        /* animation: ripple 1.5s infinite; */
        z-index: 1;
    }

/* Animation ripple */
/* @keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
} */
@-webkit-keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(234, 16, 16, 0.593), 0 0 0 3em rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(213, 1, 1, 0.433), 0 0 0 3em rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 3em rgba(245, 8, 8, 0.575), 0 0 0 5em rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 3em rgba(223, 11, 11, 0.2), 0 0 0 5em rgba(255, 255, 255, 0);
    }
}

@keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(245, 8, 8, 0.575), 0 0 0 1em rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(223, 11, 11, 0.2), 0 0 0 1em rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 1em rgba(245, 8, 8, 0.575), 0 0 0 2em rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 1em rgba(255, 255, 255, 0.2), 0 0 0 2em rgba(255, 255, 255, 0);
    }
}

/* Đảm bảo hình ảnh play nằm trên cùng */
.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/images//play_top.png) center center/cover no-repeat;
    z-index: 2;
}

.play-button2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/images//play_bot.png) center center/cover no-repeat;
    z-index: 2;
}

/* Thêm hiệu ứng khi hover */
.play-button:hover {
    transform: scale(1.05);
}

.play-button:active {
    transform: scale(0.95);
}

/* Projects Section */
.search-select {
    color: #666666 !important;
}

.custom-select:first-child {
    color: #666666 !important;
}

.projects {
    padding: 60px 0;
    background: #f8f9fa;
}

    .projects h2 {
        text-align: center;
        margin-bottom: 50px;
        color: #333;
		margin-top: 0;
    }

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.project-card:nth-child(1),
.project-card:nth-child(6),
.project-card:nth-child(7),
.project-card:nth-child(12) {
    grid-column: span 2;
}


.project-card {
    grid-column: span 1;
}

.project-card {
    height: 370px;
    background: white;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

/*.project-card.col1 {
    grid-column: span 1;
}

.project-card.col2 {
    grid-column: span 2;
    position: relative;
}*/

.status {
    position: absolute;
    top: 10px;
    left: 25px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 99;
}

    .status.in-progress {
        color: #f39c12;
        background: #fff5e4;
    }

    .status.completed {
        color: #006d3c;
        background: #e7fff4;
    }

.project-card a {
    position: relative;
    display: block;
}

    .project-card a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(42, 125, 219, 0) 35.67%, #111111 100%);
        z-index: 1;
    }

/* first child adjustments */
/*.project-card a::before {
    background: unset !important;
}*/

.project-card a .project-info {
    position: relative;
}
.project-card a .project-info .boder_cover {
	transition: all .5s;
	border: 2px solid transparent;	
    text-align: center;
    position: absolute;
    bottom: 30px;
    color: white;
    padding: 15px 0;
    height: 80%;
    width: 90%;
	    left: 5%;
    z-index: 2;

	
}
.project-card a .project-info .project-txt{transition: all .5s; bottom: 0;
        color: #fff;
        padding: 10px 0;
		    position: absolute;
    width: 100%;}
	
    .project-card:hover a .project-info .boder_cover {
        border: 2px solid white;
        color: #333;
        width: 90%;
        height: 80%;
        position: absolute;
        z-index: 10;
		    left: 5%;
    }

    .project-card:hover a .project-info .project-txt {
		 color: #333;
        background: rgba(255, 255, 255, 0.822);
       
    }

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    overflow: hidden;
}

.project-info h3 {
    /*text-align: center;
    position: absolute;
    bottom: 30px;
    color: white;
    padding: 15px 0;
    width: 100%;
    z-index: 2;*/
	    margin: 0;
}
.project-txt p {
	margin:0;
}
/* Why Choose Us */
.why-choose-us {
    padding: 60px 0;
    background: url(/assets/images//18.png) center center/cover no-repeat;
    color: white;
    text-align: center;
    position: relative;
}

.why-choose-us-title {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000a8;
    z-index: 1;
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.section-badge {
    background: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 300;
}

.why-choose-us h2 {
    margin: 0 0 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    color: #333;
    border-radius: 15%;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

    /* .top_special{
    width: 65%;
    padding: 5px;
    border-radius: 0 0 125px 125px;
    background: var(--primary-color);
} */

    .feature-card .top_card {
        width: 100%;
        height: 150px;
        padding: 0 0 10px;
        background: url(/assets/images//bg_dot_WCU.png) center center/cover no-repeat;
    }

.top_card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

    .top_card .top_special {
        background: var(--primary-color);
        height: 31px;
        margin-top: -35px;
        width: 80%;
        margin-bottom: 45px;
        border-radius: 0 0 200px 200px;
    }

.feature-icon {
    width: 100px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .feature-icon img {
        width: 100px;
        height: auto;
    }

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    margin: 20px 0;
    line-height: 1.6;
    font-size: 16px;
}

.feature-card .bottom_card {
    width: 90%;
    padding: 10px 20px 25px;
}

.bottom_card_h3 {
    font-size: 18px !important;
    font-weight: 500 !important;
    margin-bottom: 15px;
    color: #333;
}

.feature-btn {
    font-family: 'Pathway Extreme', sans-serif;
    height: 35px;
    width: 35%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    top: 94%;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 13px;
    padding-top: 6px;
}

/* News Section */
.news {
    padding: 60px 0;
    background: white;
}

    .news .container {
        padding: 0;
    }

    .news h2 {
        text-align: center;
        color: #333;
		margin-top: 0;
    }

.news_slider_container {
    overflow: hidden;
    position: relative;
    padding: 30px 0;
}

.bot_new_h3 {
    /* height: 35px; */
    /* -webkit-line-clamp: 1; */
    /* height: 65px; */
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 20px !important;
    font-weight: 500 !important;
    margin-bottom: 15px;
    color: #333;
}

.slick-list {
    margin: 0 50px !important;
    padding: 0 !important;
}

.news-slider .news-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin: 60px 35px !important;
    width: 330px;
    max-width: 330px;
}

.news-slider .slick-center .news-item {
    transform: scale(1.1);
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.slick-center {
    transform: scale(1.15);
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.news-item a:hover img {
    transform: scale(1.1,1.1);
}

.news-item .top_new {
    width: 100%;
    height: 230px;
    border-radius: 12px;
    overflow: hidden;
}

.top_new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.news-content {
    background: #F8F8F8;
    padding: 20px 30px 30px;
}

    .news-content h4 {
        margin: 0 0 5px;
        height: 65px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

.news-date {
    background: url(/assets/images//calender.png) no-repeat left center;
    background-size: 15px;
    padding-left: 30px;
    color: var(--primary-color);
    font-size: 13px;
    margin-bottom: 5px;
}

.news-content p {
    color: #666666;
    text-align: justify;
    margin: 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 110px;
    /* line-height: 1.9; */
    font-size: 0.9rem;
    display: -moz-box;
    -moz-box-orient: vertical;
    -moz-line-clamp: 4;
    box-orient: vertical;
}

.read-more {
    margin-top: 5px !important;
    background: var(--primary-color);
    color: white !important;
    border: none;
    padding: 8px 12px 6px;
    border-radius: 12px;
    cursor: pointer;
    width: 110px;
    text-align: center !important;
}

    .read-more:hover {
        background: #e08493;
    }

.slick-prev, .slick-next {
    opacity: 1;
    background: #c41e3a !important;
    color: white;
    border: none;
    padding: 0;
    width: 30px !important;
    height: 120px !important;
    cursor: pointer;
    z-index: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}

.slick-next {
    right: 20px !important;
}

.slick-prev {
    left: 20px !important;
}

    .slick-next:hover, .slick-prev:hover {
        opacity: 20%;
    }

    .slick-next:before, .slick-prev:before {
        content: '' !important;
        display: block;
        width: 20px;
        height: 20px;
        background: url(/assets/images//vec.png) center/contain no-repeat !important;
    }

.slick-next:before {
    transform: rotate(180deg);
}

.slick-prev:before {
    transform: rotate(0deg);
}

.btn_viewall {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.view-all {
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
    padding: 18px 35px;
    font-size: 15px;
    font-weight: 500;
}

    .view-all:hover {
        background: #e08493;
    }

/* Partners & Showcase Section */
.container1 {
    /* max-width: 1200px; */
    margin: 0 auto; /* Căn giữa container này */
    display: flex;
}

.showcase-layout {
    width: 100%;
    display: flex;
    align-items: center;
}


.partners-grid {
    flex: 2.3;
    background: url(/assets/images//bg_part.png) center center/cover no-repeat;
}

.logo-card {
    background: white;
    width: 100px;
    height: 100px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    overflow: hidden;
    box-sizing: border-box;
	cursor: pointer;
}

.logo-arrangement .logo-card:hover img {
    transform: translateY(-5px) scale(1.1) !important;
}

.logo-card img {
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.showcase-property {
    background-color: white;
    height: 600px;
    flex: 1;
    position: relative;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.next-arrow {
    right: 20px;
}

.prev-arrow {
    left: 20px;
}

.nav-arrow:hover {
    background: #f0f0f0;
    /* transform: translateY(-50%) scale(1.1); */
}

.nav-arrow img {
    width: 100%;
    height: auto;
    display: block;
}

.ripple-btn {
    position: absolute;
    top: 90%;
    left: 87%;
    z-index: 10;
    overflow: hidden;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline: none;
    -webkit-animation: ripple 0.7s linear infinite;
    animation: ripple 0.7s linear infinite;
}
#popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-sizing: border-box;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #777;
}

.popup-content h2 {
    margin-top: 0;
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.popup-content p {
    color: #666;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
	font-family: 'Pathway Extreme', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.popup-content button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
    width: 100%;
}

.popup-content button:hover {
    opacity:0.7;
}

.form_contact {
	padding: 60px 0;
	background: url(/userfile/config/bannerhome_bg.jpg) center center / cover no-repeat;
	position:relative;
}
.form_contact .container{
	position: relative;
    z-index: 1;
}
.form_contact .form-group label {
	color: #fff;
}
.idx_ttl{
	text-align: center;
    margin-bottom: 15px;
    color: #fff;
    margin-top: 0;
}
.idx_des {
	text-align: center;
    color: #fff;
    margin-top: 0;
    font-size: 22px;
}
.form_contact #contact-form {
	width:768px;
	margin: 0 auto;
	text-align: center;
}
.form_contact .form-group input ,.form-group textarea {
	padding: 10px 20px;
}


#totop {
	position: fixed;
    bottom: 2%;
    right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
	cursor: pointer;
    z-index: 99;
	overflow: hidden;
}
#totop img {
	width:100%;
}
/* Footer */
.footer {
    color: black;
    padding: 50px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    position: relative;
	display: flex;
    justify-content: space-between;
}
.f1,.f2{
	width: 22%;
}
.f3{
	width: 15%;
}
.f4{
	width: 31%;
}
.f_map {
	display:flex;
    height: 100%;
}
.f_map iframe{
    width: 100%;
}
.footer-logo img {
    width: 60%;
    height: auto;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #666666 !important;
}

.social-link {
    margin: 0;
    width: 30px;
    height: 30px;
    color: white;
    display: inline-flex;
    align-items: center;
}

.contact-info, .info_content {
    text-align: justify;
    color: #666666 !important;
}

.contact_item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .contact_item li {
        background-color: var(--primary-color);
        width: 30px;
        height: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: white;
        border-radius: 10%;
    }

    .contact_item i.fa-solid {
        font-size: 16px;
        min-width: 20px;
        width: 20px;
        text-align: center;
        color: white;
        margin-top: 3px;
    }
.contact-info p,
.item_content {
    /* flex: 1; */
    margin: 0;
    width: calc(100% - 40px);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

    .social-links a {
        margin-right: 10px;
    }

    .social-links img {
        width: 40px;
        height: 40px;
    }

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
    color: black;
    transition: background 0.3s;
}

    .social-link:hover {
        background: rgba(255,255,255,0.3);
    }

.footer-center h4,
.footer-right h4 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.footer-center ul {
    list-style: none;
}

.footer-center li {
    margin-bottom: 10px;
}

.footer-center a {
    color: #666666 !important;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-center li:hover a {
    color: var(--primary-color) !important;
}

.footer-right p {
    color: #666666 !important;
}

.footer-right input {
    width: 100%;
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

.newsletter-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

.footer-bottom {
    background: var(--primary-color);
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 70px;
}

    .footer-bottom a {
        color: #fff;
    }

    .footer-bottom p {
        color: white;
        padding-bottom: 20px;
		margin: 0;
    }

/* =================================== */
/* ========== RESPONSIVE ========== */
/* =================================== */

/* Laptop & Large Tablets (992px và nhỏ hơn) */
@media screen and (max-width: 992px) {
    .showcase-layout {
        flex-direction: column;
    }

    /* --- FIX SLICK SLIDER --- */
    /* 1. Xóa padding của container chứa slider để slider chiếm toàn bộ chiều rộng */
    .news .container {
        padding-left: 0;
        padding-right: 0;
    }
    /* 2. Loại bỏ margin ngang cố định của news-item, nguyên nhân chính gây lỗi */
    .news-item {
        margin: 20px 10px; /* Giữ lại một khoảng nhỏ để các slide không dính vào nhau */
    }
    /* 3. Ẩn các nút next/prev trên mobile */
    .news-slider .slick-arrow {
        display: none !important;
    }

    .slick-current {
        transform: none; /* Bỏ hiệu ứng phóng to trên mobile */
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    /* ------------------------ */
}

/* Tablets (768px và nhỏ hơn) */
@media screen and (max-width: 768px) {
    h2 {
        font-size: 24px;
    }
    /* Header */
    .header .container {
        flex-direction: row;
    }

    .has-submenu .submenu {
        background: #d5d5d5;
        width: 100%;
        text-align: left;
    }

    /* Reset style cho submenu trên mobile */
    .has-submenu .submenu {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        min-width: 100% !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        padding: 0 !important;
        margin: 0 !important;
        max-height: 0;
        overflow: hidden;
        background: var(--primary-color);
        transition: max-height 0.4s ease-in-out;
        will-change: max-height;
    }

        /* Style cho submenu khi active */
        .has-submenu .submenu.active {
            max-height: 1000px;
        }

    .submenu.active {
        max-height: 1000px; /* Giá trị đủ lớn để chứa nội dung */
    }

    .nav ul {
        padding: 0;
        width: 100%;
        margin: 0;
    }

    .nav > ul > li {
        text-align: left;
        position: relative;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav ul li a {
        display: block;
        padding: 15px 20px;
        font-size: 14px;
        color: #333;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .submenu li a {
        color: white !important;
    }

    .nav ul li a:hover {
        background-color: #f0f0f0;
    }
	.has-submenu {
		padding-right: 0;
	}
    .has-submenu > a {
        position: relative;
        padding-right: 50px !important;
    }

    /* Style cho nút mở menu con */
    .nv-ico {
        position: absolute;
        right: 0;
        top: 0;
        width: 50px;
        height: 50px; /* Cố định chiều cao */
        cursor: pointer;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        background: rgb(255, 135, 135);
        border: none;
    }

        .nv-ico:before {
            content: '+';
            display: inline-block;
            font-size: 20px;
            font-weight: bold;
            color: #333;
            transition: transform 0.3s ease;
        }

        .nv-ico.active:before {
            content: '-';
            transform: rotate(180deg);
        }

    /* Style cho menu con cấp 2 */
    .submenu li a {
        padding: 12px 20px 12px 40px !important;
        font-size: 13px;
        color: #555;
        border-left: 3px solid transparent;
        transition: all 0.2s ease;
    }

        .submenu li a:hover {
            background-color: #e9e9e9;
            border-left-color: var(--primary-color);
            padding-left: 45px !important;
        }

    /* Thêm hiệu ứng khi mở/đóng menu */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .submenu.active {
        animation: slideDown 0.3s ease-out forwards;
    }

    .searchform_dropdown {
        right: -50px;
    }

    .submenu li a {
        padding: 15px 0 15px 25px;
    }

    .cta-button {
        display: none;
    }

    .header-left, .header-right {
        width: 27%;
        text-align: center;
        flex-direction: row-reverse;
        /* margin: 10px 0; */
    }

    .nav ul {
        flex-direction: column;
        gap: 0px;
        padding: 0 !important;
    }

    /* Hero */
    .hero .hero_ttl {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-logo img {
        width: 60%;
        margin: auto;
        margin-bottom: 20px;
    }

    /* Showcase */
    .showcase-content {
        grid-template-columns: 1fr;
        width: 100% !important;
        padding: 0 3% 0 !important;
        margin: 0 !important;
    }
    .showcase-info p {
		width: 94%;
        text-align: justify;
    }
        .box1 {
        flex-direction: column-reverse;
    }

        .box1 .left, .box1 .right {
            width: 100%;
            padding-top: 50px;
        }
	.showcase-image {
		padding: 0 3%;
	}
    .projects, .why-choose-us, .news {
        padding: 50px 0;
    }

    /* projects */
    .project-grid {
        display: block;
    }

    .project-card:not(:last-child) {
        margin-bottom: 20px;
    }
    /* Why Choose Us */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* News Section */
    .news-slider .news-item {
        margin: 15px 10px !important;
        max-width: 100% !important;
    }

    .news_slider_container {
        padding: 0;
    }

    .slick-arrow {
        display: none !important;
    }

    .slick-current {
        transform: none;
    }

    .top_new {
        height: 220px;
    }

    .news-content {
        padding: 15px;
    }

    .news .container {
        padding-left: 0;
        padding-right: 0;
    }

    /* Đảm bảo slider căn giữa và các slide có khoảng cách đều */
    .news-slider .slick-list {
        padding: 0 !important;
        margin: 20px 0 !important;
    }

    /* Partners & Showcase */
    .partners-grid {
        margin-bottom: 30px;
        width: 100%;
    }

    .logo-arrangement {
        overflow: hidden;
        height: 350px;
    }
    /* FIX: Chặn logo tràn ra ngoài trên mobile */
    .logo_main {
        height: 350px;
        width: 360px;
    }

    .showcase-property {
        height: auto;
    }

    .property-image-container {
        position: static;
        width: 100%;
        border: none;
    }

    .featured-property {
        height: 250px;
    }

    .nav-arrow {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* Footer */
    .footer-content {
		flex-wrap: wrap;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-center h4, .footer-right h4 {
        margin-bottom: 10px;
    }

    .footer-right input {
        /* padding: 20px; */
		        width: 90%;
    }

    .newsletter-btn {
        width: 100%;
    }

    /* Slick Slider Adjustments */
    /* .slick-slide { padding: 0 5px; } */



    /* container_test */
    .container_test {
        display: flex;
        flex-direction: row;
    }

    .box_left {
        width: 100% !important;
    }

    .box_right {
        display: none;
    }

    .logo-arrangement {
        height: 100% !important;
    }

    .logo_main {
        top: -20% !important;
        transform: scale(0.6);
        max-width: 100% !important;
        right: -40px !important;
    }

    .property-image-container {
        left: unset !important;
        transform: scale(0.55);
        top: 40% !important;
    }
	.f1,.f2,.f3,.f4{
		width:100%;
	}
}


/* Phones (480px và nhỏ hơn) */
@media screen and (max-width: 480px) {
    /* Hero */
    .hero .hero_ttl {
        /*font-size: 1.8rem;*/
		font-size: 22px;
        line-height: 1.4;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-cta {
        width: 100%;
        font-size: 14px;
        padding: 12px;
    }

    /* Header */
    /* .nav ul { gap: 10px; } */

    /* Search Bar */
    .search-bar {
        flex-direction: column;
    }

    .search-select select {
        padding: 10px 15px;
        background-position: right 15px center;
    }

    .search-bar .search-btn {
        width: 100%;
        border-radius: 0 0 10px 10px;
        padding: 12px;
    }

    /* Why Choose Us */
    .feature-card {
        border-radius: 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Projects */
    .project-info h3 {
        font-size: 1.1rem;
    }

    /* News Section */
    /* .news-item { width: 90% !important; max-width: 300px; margin: 20px auto !important; } */

    .top_new {
        height: 180px;
    }

    .news-content h3 {
        font-size: 1rem;
    }

    .news-content p {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
    }
    /* .view-all { width: 90%; } */

    /* Partners & Showcase */
    .logo-card {
        height: 60px;
        width: 60px;
    }

    .featured-property {
        height: 200px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
	.form_contact #contact-form {
		width:100%;
	}
	.idx_des {
		font-size: 16px;
	}
}


.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    background: #000;
}

.close {
    position: absolute;
    top: -30px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* test */
.property-image-container {
    position: absolute;
    top: 15%;
    left: 20px;
    border-radius: 20% 0 20%;
    width: 590px;
}

.logo_main {
    max-width: 900px;
    width: 600px;
    height: 500px;
    position: relative;
}

.logo-arrangement {
    /* width: 100%; */
    flex: 1;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-showcase {
    background: #f8f9fa;
}

.logo_main {
    top: 20px;
    right: 270px;
    max-width: 900px;
    width: 900px;
    height: 500px;
    position: relative;
}

.featured-property {
    width: 100%;
    max-width: 590px;
    height: 475px;
    object-fit: cover;
    display: block;
    border-radius: 20% 0 20%;
    border: 10px solid #fff;
}



.logo-arrangement .logo-card:nth-child(1) {
    height: 122px;
    width: 82.53px;
    top: 53%;
    left: 7%;
    transform: translate(0, -50%);
}

.logo-arrangement .logo-card:nth-child(2) {
    height: 159px;
    width: 107.56px;
    top: 35%;
    left: 23.5%;
    transform: translate(-50%, -50%);
}

.logo-arrangement .logo-card:nth-child(3) {
    height: 159px;
    width: 107.56px;
    top: 69.1%;
    left: 23.5%;
    transform: translate(-50%, -50%);
}

.logo-arrangement .logo-card:nth-child(4) {
    height: 218px;
    width: 148px;
    top: -1.9%;
    left: 39%;
    transform: translate(-50%, 0);
}

.logo-arrangement .logo-card:nth-child(5) {
    height: 148px;
    width: 218px;
    top: 59%;
    left: 42.8%;
    transform: translate(-50%, -50%);
}

.logo-arrangement .logo-card:nth-child(6) {
    height: 122px;
    width: 82.53px;
    top: 88.1%;
    left: 35.3%;
    transform: translate(-50%, -50%);
}

.logo-arrangement .logo-card:nth-child(7) {
    height: 159px;
    width: 107.56px;
    top: 25.9%;
    left: 54.4%;
    transform: translate(-50%, -50%);
}

.logo-arrangement .logo-card:nth-child(8) {
    height: 148px;
    width: 100px;
    top: 59%;
    left: 61.6%;
    transform: translate(-50%, -50%);
}

.logo-arrangement .logo-card:nth-child(9) {
    height: 90px;
    width: 133.33px;
    top: 84.9%;
    left: 48.5%;
    transform: translate(-50%, -50%);
}

.logo-arrangement .logo-card:nth-child(10) {
    height: 122px;
    width: 82.53px;
    top: 58.5%;
    left: 72.9%;
    transform: translate(-50%, -50%);
}

/* Statistics Section */
.statistics {
    position: relative;
    height: 319px;
    overflow: hidden;
}

.statistics-background {
    position: absolute;
    inset: 0;
    background: url("/assets/images/bg_s2.png") center/cover no-repeat;
}

.statistics-overlay {
    position: absolute;
    inset: 0;
    background: rgba(193, 39, 46, 0.7);
}

.statistics-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: 6xl;
    width: 100%;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.building-icon {
    width: 48px;
    height: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.building-part {
    width: 12px;
    height: 23px;
    background: #fff;
    border-radius: 20px 20px 0 0;
    border: 1px solid #fff;
}

    .building-part:first-child {
        transform: rotate(-90deg);
    }

.stat-number {
    font-family: "Pathway Extreme", sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: clamp(3rem, 8vw, 100px);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: "Pathway Extreme", sans-serif;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}

.stat-line {
    width: 173px;
    height: 1px;
    background: #fff;
    margin: 1rem auto 0;
}

/* Vision Section */
.vision-section {
    padding: 4rem 0;
    background: #fff;
}

.vision-flex, .mission-flex {
    min-height: 600px;
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.vision-content {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vision-card {
    position: relative;
}

.card-shadow {
    position: absolute;
    top: 5px;
    left: -8px;
    width: 100%;
    height: 98%;
    background: #c1272e;
    border-radius: 20px;
}

.mission-card .card-shadow {
    left: 8px;
}

.card-main {
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 27px -7px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .card-main li {
        font-family: "Inter", sans-serif;
        color: #666;
        font-size: 18px;
        line-height: 1.67;
        margin-bottom: 15px;
    }

    .card-main ul {
        list-style: none;
        padding-left: 1.5em;
    }

    .card-main li {
        position: relative;
    }

        .card-main li::before {
            content: "•";
            color: var(--primary-color);
            font-size: 35px;
            position: absolute;
            top: -15px;
            left: -25px;
        }

.mission li::before {
    right: -25px;
}

.vision-item {
    display: flex;
    align-items: flex-start;
    /* gap: 1.5rem; */
}

    .vision-item .red-dot {
        margin: 10px;
        flex-shrink: 0;
    }

    .vision-item p {
        font-family: "Inter", sans-serif;
        color: #666;
        font-size: 18px;
        line-height: 1.67;
    }

.vision-image {
    height: 100%;
}

.vision-image, .mission-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 0 15% 0 15%;
    border: none;
}

    .vision-image img, .mission-image img {
        width: 100%;
        object-fit: cover;
    }

/* Mission Section */
.mission-section {
    padding: 0 0 4rem;
    background: #fff;
}


.mission-content {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-title-left {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
}

.section-title-right {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 0.75rem;
}

    .section-title-right h2 {
        font-family: "Pathway Extreme", sans-serif;
        color: #000;
        font-size: clamp(1.5rem, 4vw, 42px);
        font-weight: 500;
        text-transform: uppercase;
        text-align: right;
    }

.mission-card {
    position: relative;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    /* gap: 1.5rem; */
}

    .mission-item p {
        font-family: "Inter", sans-serif;
        color: #666;
        font-size: 18px;
        line-height: 1.67;
        text-align: right;
    }

    .mission-item .red-dot {
        margin: 10px;
        flex-shrink: 0;
    }


/* Team Section */
.team-section {
    padding: 4rem 0;
    background: #fff;
}

.team-header {
    text-align: center;
    margin-bottom: 50px;
}

    .team-header .section-title-center h2 {
        color: #000;
    }

.team-content {
    position: relative;
    min-height: 700px;
}

.team-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 394px;
    width: 100%;
    background: url("/assets/images/bg_team.png") center/100% 100% no-repeat;
    /* border-radius: 8px 8px 0 0; */
}

.team-image {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
}

    .team-image img {
        width: 100%;
        max-width: 1018px;
		/* height: 500px; */
		object-fit: cover;
		/* border: 15px solid #fff;
        border-radius: 100px 0 100px 0; /* Sử dụng giá trị pixel cố định */
        overflow: hidden; /* Đảm bảo nội dung không tràn ra ngoài border-radius */
    }

.team-description {
    position: relative;
	/*top: -8rem; */
    margin-top: -8rem;
    left: 0;
    right: 0;
    padding: 10rem 4rem 2rem;
    text-align: center;
	background: url(/assets/images/bg_team.png) center / 100% 100% no-repeat;
}

    .team-description p {
		font-family: "Pathway Extreme", sans-serif;
		color: #fff;
		font-size: 18px;
		text-align: start;
		font-weight: 500;
		margin-bottom: 10px;
		margin-top: 0;
		line-height: 1.5;
    }

/* Business Areas Section */
.business-areas {
    padding: 0 0 50px;
    background: #fff;
}

.business-header {
    text-align: center;
    margin-bottom: 50px;
}

    .business-header .section-title-center h2 {
        color: #000;
    }

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3px;
}

.business-card {
    position: relative;
}

    .business-card:hover {
        .business-overlay

{
    /* mờ dần */
    opacity: 0.1;
    transition: opacity 0.3s ease-in-out;
}

}

.business-image {
    position: relative;
    height: 550px;
    overflow: hidden;
}

    .business-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.business-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.47);
}

.business-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: "Pathway Extreme", sans-serif;
    font-weight: 700;
    font-size: 60px;
    color: transparent;
    -webkit-text-stroke: 1px white;
}

.business-title {
    position: absolute;
    bottom: 5rem;
    left: 1rem;
    right: 1rem;
    font-family: "Pathway Extreme", sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 24px;
}

.business-footer {
    position: relative;
    height: 55px;
    background: #db575d;
    display: flex;
    align-items: center;
}

    .business-footer.active {
        background: #c1272e;
    }

.business-btn-bg {
    position: absolute;
    inset: 0;
    background: inherit;
}

.business-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 52px;
    height: 55px;
    background: #c1272e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.business-text {
    position: absolute;
    top: 0;
    left: 1rem;
    height: 55px;
    display: flex;
    align-items: center;
    font-family: "Pathway Extreme", sans-serif;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 768px) {
    /* .business-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    } */

    /* vison , mission */
    .vision-flex {
        flex-direction: column;
    }

    .mission-flex {
        flex-direction: column-reverse;
    }

    .vision-content, .mission-content {
        width: 100% !important;
    }

    /* team */
    .team-description {
        padding: 10px 25px;
		top: 0;
    }

        .team-description p {
			font-size: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 7;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

    /* project */
    .grid-project {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .about-main-image {
        padding: 20% 3% 15%;
    }

    .about-main-image {
        /* height: 100%; */
        padding: 10% 0 15% 0;
    }

        .about-main-image .img_1 {
            width: 80% !important;
        }

    .experience-badge {
        padding-bottom: 40%;
        top: 65%;
    }

    .logo-overlay {
		width: 130px;
        height: 130px;
        top: -30px;
        left: 3%;
    }
    .box1 .left{
        padding-bottom:50px;
        padding-top:0;
    }
    .statistics {
        padding: 50px 0;
    }

    .statistics, .statistics-content {
        height: auto !important;
    }
}
