* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --main-color: #a02c2c;
    --sub-color: #006636;
}
.grecaptcha-badge {
    display: none;
}
body {
    margin-top: 148px;
    background-color: #fff;
}
body,
input,
textarea {
    font-family: "Inter", sans-serif;
}
.error {
    color: rgb(222 45 45);
}
.swal2-confirm {
    background: #a02c2c;
}
#loom-companion-mv3 {
    display: none;
}

.body {
    width: 100%;
    height: auto;
}

.main-color {
    color: var(--main-color);
}
.reveal {
    opacity: 0;
    transform: translateY(90px);
    transition: all 3s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FONT */
.pt-serif-regular {
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: normal;
}

.pt-serif-bold {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-style: normal;
}

.pt-serif-regular-italic {
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: italic;
}

.pt-serif-bold-italic {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-style: italic;
}

/* COMMON CLASS */
.bg-and-color-common {
    background-color: white;
    color: #a02c2c;
}

/* HEADER */
.sub-header {
    background-color: #fdfdfd;
    max-height: 83px;
    height: 83px;
    color: #000;
}
.cus-button {
    display: flex;
    padding: 18px 24px;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    background: var(--main-color);
    margin-left: auto;
    margin-right: 0;
    max-height: 48px;
    color: #fff;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 100;
    top: 0;
    left: 0;
    height: 65px;
}
#navbarNav {
    width: 100%;
    justify-content: center;
}
.custom-header {
    background-color: #a02c2c !important;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 10000;
    width: 100%;
}
.logo {
    display: flex;
    align-items: center;
    width: fit-content;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.brand-name {
    color: white;
    font-weight: bold;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    position: relative;
    padding: 10px 15px;
}
.nav-link:focus,
.nav-link:hover {
    color: #d88f8f;
}
.navbar li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: bold;
}
.navbar li a.active {
    color: white !important;
    border-bottom: solid 1px #fff;
}
.navbar-collapse {
    flex-grow: 0;
}
.navbar-nav {
    gap: 30px;
}
.menu li:hover {
    text-decoration: underline;
    text-decoration-color: #008bb5;
    text-underline-offset: 8px;
}

.dropdown-menu li:hover {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.1);
}

/* MENU RESPONSE */
.menu-response {
    position: relative;
    display: none;
}

.menu-response-list {
    list-style: none;
    background-color: #3ba6e7;
    position: absolute;
    top: 50px;
    right: 0;
    width: 200px;
    display: none;
}

.menu-response-list li {
    position: relative;
    padding: 10px 15px;
}

.menu-response-list li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.menu-response-list li:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #a02c2c;
    top: 30px;
    left: 0;
    min-width: 150px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dropdown-menu li {
    padding: 10px;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-item:focus,
.dropdown-item:hover {
    background-color: unset;
}
/* BANNER */
.container-banner {
    position: relative;
    width: 100%;
    background-color: #8b9aa4;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 621px;
}

.image-slider img {
    width: 100%;
    height: 621px !important;
}

.info-box {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 363px;
    height: 154px;
}
.info-box-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
}
.info-box-background {
    position: absolute;
    z-index: -1;
    background: linear-gradient(
        to left,
        #a02c2c 80%,
        #a02c2c 85%,
        #a02c2c 90%,
        #56d4ef 95%
    );
    padding: 20px;
    border-top-right-radius: 30px;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.info-box-infomation {
    width: 100%;
    height: 100%;
    z-index: 10;
    top: 0;
    left: 0;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;
}
.info-box-infomation h2 {
    font-size: 22px;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}
.info-box-infomation p {
    font-size: 18px;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}
.info-box-button {
    width: 100%;
    display: flex;
    justify-content: center;
    text-decoration: none;
}
.info-box-button button {
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    width: 111px;
    border-radius: 8px;
    text-decoration: none;
}
.info-box-infomation button:hover {
    background-color: #ddd;
}
.circle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--main-color); /* viền cho chấm rỗng */
    background-color: transparent; /* rỗng bên trong */
    position: relative;
    transition: all 0.3s ease;
}

/* Active: nền đậm và thêm viền lớn bao quanh */
.circle.active {
    background-color: var(--main-color); /* tô màu tâm */
}

.circle.active::after {
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--main-color); /* viền ngoài cùng */
}

/* Ẩn số trang */
.circle a {
    display: block;
    height: 100%;
    text-indent: -9999px;
}

.circle.arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    position: relative;
    transition: all 0.3s ease;
}

.circle.arrow a {
    text-indent: 0;
    color: var(--main-color);
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}

.pagination-wrapper {
    position: relative;
}
.pagination {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.pagination button {
    border: none;
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
    width: 44px;
    height: 38px;
    border-radius: 50%;
}

.pagination button:hover {
    background: white;
}


/* DIVIDER */

.container-divider {
    width: 100%;
    height: 110px;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: end;
    margin-bottom: 20px;
}

.divider-line {
    background-color: #05a8cc;
    height: 1px;
    width: 116px;
}

.divider-title {
    width: 100%;
    text-align: center;
    font-size: 42px;
    color: #a02c2c;
    text-transform: uppercase;
    padding: 20px;
}

.divider-title-black {
    color: black;
    text-align: left;
    padding-bottom: 20px;
}

.divider-img-outstanding-design {
    background-image: url("/assets/icons/midtown.png");
    object-fit: cover;
    background-position: center;
    width: 36px;
    height: 82px;
}

.divider-img-our-service {
    background-image: url("/assets/icons/building-skyscraper.png");
    object-fit: cover;
    background-position: center;
    width: 60px;
    height: 72px;
}

.divider-img-cost-estimation {
    background-image: url("/assets/icons/worker.png");
    object-fit: cover;
    background-position: center;
    width: 65px;
    height: 54px;
}

.divider-img-representative-design {
    background-image: url("/assets/icons/tower.png");
    object-fit: cover;
    background-position: center;
    width: 45px;
    height: 59px;
}

/* OUTSTANDING DESIGN */
outstanding-design-slide.container-outstanding-design {
    width: 100%;
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 20px;
    height: fit-content;
}

.outstanding-design-slide-description {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.outstanding-design-slide-description div h2 {
    width: 100%;
    text-align: center;
    font-size: 20px;
}
.outstanding-design-slide-description div span {
    padding-top: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
}

.outstanding-design-slide {
    position: relative;
}

.swiper-button-next-outstanding-design {
    position: absolute !important;
    transform: translateX(75%);
    z-index: 1000;
    border: 1px solid #ebebeb;
}

.swiper-button-prev-outstanding-design {
    position: absolute !important;
    transform: translateX(-75%);
    z-index: 1000;
    border: 1px solid #ebebeb;
}

.slider-container {
    width: 100%;
    position: relative;
}

.swiper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #a02c2c;
    background-color: white;
    width: 40px !important;
    height: 40px !important;
    border-radius: 99px;
    box-shadow: 0 0.2em 1.33333em rgba(0, 0, 0, 0.16);
}

/* Set font size for Swiper navigation icons */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
}
.swiper-button-next::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23A02C2C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-caret-right'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M10 18l6 -6l-6 -6v12'/%3E%3C/svg%3E")
        no-repeat center;
    background-size: contain;
}

.swiper-button-prev::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23A02C2C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-caret-left'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M14 6l-6 6l6 6v-12'/%3E%3C/svg%3E")
        no-repeat center;
    background-size: contain;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #a02c2c;
    color: #ffffff;
}
.swiper-button-next:hover::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-caret-right'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M10 18l6 -6l-6 -6v12'/%3E%3C/svg%3E")
        no-repeat center;
}

.swiper-button-prev:hover::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-caret-left'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M14 6l-6 6l6 6v-12'/%3E%3C/svg%3E")
        no-repeat center;
}

.swiper-button-next3 {
    left: 140px !important;
    top: 95% !important;
}

.swiper-button-prev3 {
    left: 90px !important;
    top: 95% !important;
}
.swiper-pagination {
    position: absolute;
    bottom: -30px !important; /* Đẩy pagination xuống dưới */
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 10;
    width: auto; /* Giữ pagination không bị cắt */
}
/* Pagination Dots */
.swiper-pagination-bullet {
    background: #78d6ea;
    width: 11px;
    height: 11px;
}
.swiper-pagination-bullet-active {
    background: #a02c2c;
}

/* OUR SERVICE */

#service {
    padding: 50px;
}
.container-our-service {
    width: 100%;
    display: flex;
    padding-left: 80px;
    padding-right: 80px;
    gap: 20px;
    justify-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
}

.service-item {
    position: relative;
    padding: 20px;
    background-color: #fbfbfb;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    align-content: center;
    width: 100%;
    max-width: 333px;
    height: 180px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.service-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 230px;
    height: 25px;
    background-color: #a02c2c;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.service-item h2 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.service-item p {
    margin-top: 10px;
    font-size: 12px;
}

.section-title {
    display: flex;
    gap: 10px;
    align-items: center;
}
.section-title img {
    width: 43px;
    height: 43px;
}

.pricing-card:hover {
    background-color: #a02c2c;
    color: white;
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.pricing-card:hover .price {
    border: 1px solid #fff;
}

/* COST ESTIMATION */
#cost-estimate {
    background-color: #f6fdff;
    padding: 50px 0;
}
.container-cost-estimation {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 80px;
    padding-right: 80px;
}

.container-divider-cost-estimation {
    margin-bottom: 0;
    padding-bottom: 20px;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(4, 254px);
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.pricing-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 400px;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.price-first {
    border-radius: 6px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    background-color: #a02c2c;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.type {
    font-size: 12px;
    margin: 4px 0;
}

.card-list {
    list-style: none;
    text-align: left;
    margin-top: 10px;
    padding-left: 0px;
}
.card-list ul {
    padding-left: 10px;
}

.card-list li {
    font-size: 14px;
    padding: 5px 0;
    margin-bottom: 6px;
    list-style: none;
}

.card-list li:before {
    content: "✓ ";
}

/* REPRESENTATIVE DESIGN */
.container-representative-design {
    width: 100%;
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 20px;
    padding-top: 20px;
    height: fit-content;
}

.typical-interior-wrapper {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 404px);
    row-gap: 10px;
    column-gap: 30px;
}

.typical-interior-item {
    position: relative;
}

.typical-interior-item:nth-child(1) img {
    border-top-left-radius: 30px;
    width: 100%;
    height: 100%;
}

.typical-interior-item:nth-child(1) .typical-interior-item-tag {
    position: absolute;
    background-color: #00d1ff;
    opacity: 0.8;
    right: 0;
    top: 0;
    height: 49px;
    color: white;
    width: 70%;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 30px;
}

.typical-interior-item:nth-child(2) img {
    border-top-right-radius: 30px;
    width: 100%;
    height: 100%;
}

.typical-interior-item:nth-child(2) .typical-interior-item-tag {
    position: absolute;
    background-color: #00d1ff;
    opacity: 0.8;
    left: 0;
    top: 0;
    height: 49px;
    color: white;
    width: 70%;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 30px;
}

.typical-interior-item:nth-child(3) img {
    border-bottom-left-radius: 30px;
    width: 100%;
    height: 100%;
}

.typical-interior-item:nth-child(3) .typical-interior-item-tag {
    position: absolute;
    background-color: #00d1ff;
    opacity: 0.8;
    right: 0;
    top: 0;
    height: 49px;
    color: white;
    width: 70%;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 30px;
}

.typical-interior-item:nth-child(4) img {
    border-bottom-right-radius: 30px;
    width: 100%;
    height: 100%;
}

.typical-interior-item:nth-child(4) .typical-interior-item-tag {
    position: absolute;
    background-color: #00d1ff;
    opacity: 0.8;
    left: 0;
    top: 0;
    height: 49px;
    color: white;
    width: 70%;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-right-radius: 30px;
}

.custom-bullet {
    color: #a02c2c;
}

/* FORM CONTAINER */
/* contact */
#form {
    border-top: 1px solid #f0eaea;
    background: #FAFAFA;
    padding: 40px 0;
}

.form-title {
    color: #9d2d2d;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}

#form .form-control {
    border-radius: 6px;
    padding: 10px 15px;
}
.form-control:focus {
    border-color: var(--main-color);
}

#form .btn-danger {
    background-color: #9d2d2d;
    border-color: #9d2d2d;
    padding: 10px 25px;
}

.contact-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.15);
    max-width: 500px;
    height: auto;
    box-shadow: 0px 4px 50px 0px #fbb3b3;
}

/* FOOTER */
.footer {
    width: 100%;
    padding: 20px 0 10px;
    display: flex;
    background-color: var(--main-color);
    color: white;
    gap: 30px;
    padding-top: 60px;
    flex-wrap: wrap;
}

.logo-footer {
    width: 255px;
    height: 130px;
}
.about-footer ul li a {
    color: #fff;
    text-decoration: none;
}
.about-footer ul li {
    padding-bottom: 5px;
}
.footer-col-1 h4 {
    font-size: 20px;
}

.footer-col-1 h5 {
    font-size: 12px;
    margin-top: 10px;
}

.footer-col-2 h3 {
    font-size: 22px;
    margin-bottom: 25px;
}

.footer-col-2 .footer-col-2-item {
    font-size: 14px;
    display: flex;
    gap: 10px;
    height: 30px;
    align-items: center;
    margin-top: 6px;
}

.footer-call-icon {
    background-image: url("/icons/call.png");
    background-size: cover;
    background-position: center;
    width: 23px;
    height: 23px;
}

.footer-email-icon {
    background-image: url("/icons/email.png");
    background-size: cover;
    background-position: center;
    width: 23px;
    height: 18px;
}

.footer-networld-icon {
    background-image: url("/icons/networld.png");
    background-size: cover;
    background-position: center;
    width: 23px;
    height: 23px;
}

#iframe-facebook {
    width: 100%;
    height: 245px;
    background-color: white;
}

#iframe-facebook a img {
    width: 100%;
    height: 100%;
}

.footer-icon-list {
    width: 100%;
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer-icon {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 99px;
}

.list-contact {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999;
}
.email-form {
    border: 2px solid white;
    background-color: var(--main-color);
    border-radius: 6px;
    overflow: hidden; /* Bo tròn viền gọn */
}

.email-input {
    border: none;
    background-color: transparent;
    color: white;
    flex: 1;
    padding-left: 1rem;
    height: 49px;
}

.email-input::placeholder {
    color: #fff;
    opacity: 0.8;
}

.email-input:focus {
    outline: none;
    box-shadow: none;
    background-color: transparent;
    color: white;
}

.email-btn {
    background-color: white;
    color: var(--main-color);
    border: none;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 2px solid white;
    margin: 3px;
}

.email-btn:hover {
    background-color: #f5f5f5;
    color: red;
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    10%,
    20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        -ms-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}

.list-contact-item {
    background-color: var(--main-color);
    width: 54px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    border-radius: 99px;
    border: 2px solid white;
    animation-name: tada;
    animation-delay: 0s;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    transition: all 150ms linear 0s;
    -webkit-box-shadow: 
    0 0 0 0.26667em rgba(255, 0, 0, 0.42),   /* đỏ nhạt */
    0 0.2em 1.33333em rgba(255, 0, 0, 0.3);
}
#topBtn {
    background-color: #ffffff;
    -webkit-box-shadow: 
    0 0 0 0.26667em rgba(255, 0, 0, 0.42),   /* đỏ nhạt */
    0 0.2em 1.33333em rgba(255, 0, 0, 0.3);
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
    background: white;
    border: none;
    cursor: pointer;
}
.list-contact-item img {
    transform: scale(0.6);
}
.list-contact-item i {
    color: #ffffff;
}
.fa-arrow-up {
    color: var(--main-color) !important;
}

/* BREADCRUMB */

.breadcrumb {
    font-family: "PT Serif", serif;
    font-size: 20px;
    color: #a02c2c;
    padding-bottom: 20px;
}

.breadcrumb a {
    text-decoration: none;
    color: #a02c2c;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.title-detail-page {
    padding-top: 20px;
}

/* MAIN LAYOUT LIST */
.main-layout-list {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.main-detail-img {
    width: 100%;
    height: 600px;
    background-image: url("/assets/details/main.jpg");
    background-size: cover;
    background-position: center;
}

.list-detail-container {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
}

.list-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.list-details-item {
    width: 100%;
    height: 100%;
}

.list-details-item img {
    width: 100%;
    height: 100%;
}

.sub-title-detail-page {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 10px;
}

.sub-title-detail-page span {
    font-weight: 700;
    height: 26px;
    padding-right: 10px;
    border-right: 3px solid #00aeef;
    display: flex;
    align-items: center;
}

.logo-sub-title {
    height: fit-content;
}
.logo-sub-title img {
    width: 70px;
    height: 26px;
}

/* Button Container */
.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.category-list {
    width: 100%;
    background: linear-gradient(
        to top,
        #a02c2c 45%,
        #5fe2ff 60%,
        #54d8f5 70%,
        #a02c2c 80%
    );
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    opacity: 0.8;
}

/* Button Styling */
.custom-button {
    background-color: #aeeaff; /* Light blue */
    border: 2px solid white;
    border-radius: 30px;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    width: 300px;
}

/* Button Hover Effect */
.custom-button:hover {
    background-color: white;
    color: #aeeaff;
}

.news-item {
    border-radius: 6px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.news-item-description {
    padding-left: 15px;
    padding-right: 15px;
    height: 48%;
    padding-top: 10px;
}

.news-item img {
    width: 100%;
    height: 50%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.news-item h1 {
    width: 100%;
    height: 28%;
    font-size: 20px;
    color: #a02c2c;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-item p {
    width: 100%;
    height: 35%;
    font-size: 14px;
    line-height: 20px;
    text-overflow: ellipsis;
    word-break: break-all;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.button-view-more-container {
    display: flex;
    justify-content: space-between;
    height: 25%;
    padding-top: 10px;
}

.button-view-more {
    background-color: #00aeef;
    padding-left: 20px;
    padding-right: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.button-view-more-arrow {
    position: absolute;
    top: 0;
    right: -20px;
    width: 40px;
    height: 100%;
    background-color: #e4323a;
    clip-path: polygon(0 0, 80% 0%, 100% 100%, 20% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-view-more-arrow img {
    width: 10px;
    height: 11px;
}

.button-view-more-container span {
    display: flex;
    align-items: center;
    color: #a02c2c;
    font-size: 12px;
}

.container-slider-event {
    width: 100%;
    padding-left: 120px;
    padding-right: 120px;
    height: fit-content;
    padding-top: 20px;
    padding-bottom: 20px;
}

.event-slide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 340px;
    gap: 4px;
}

.event-slide-item img {
    width: 100%;
    height: 100%;
}

/* TABS */
.tabs {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-bottom: 20px;
    justify-content: end;
    flex-wrap: wrap;
    row-gap: 0px;
}
.tab {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    color: #57c6e6;
    position: relative;
    transition: color 0.3s;
    width: 25%;
}

.tab.active {
    color: #57c6e6;
    font-weight: bold;
}

.tab.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #57c6e6;
    position: absolute;
    bottom: 0;
    left: 0;
}

.tab-content {
    display: none;
    margin-top: 10px;
}

.tab-content.active {
    display: block;
}

.view-all {
    display: flex;
    justify-content: end;
    align-items: center;
    color: #57c6e6;
    width: 25%;
    gap: 10px;
}

.view-all:hover {
    text-decoration: underline;
}

.relative-project {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    padding-left: 80px;
    padding-right: 80px;
}

.relative-project-title {
    width: 100%;
    text-align: center;
    color: #05a8cc;
    font-size: 35px;
    padding-bottom: 20px;
}

.relative-project-item {
    width: calc(50% - 14px);
    height: fit-content;
}

.relative-project-item img {
    width: 100%;
    height: 342px;
}

.relative-project-item div {
    color: #a02c2c;
    font-size: 35px;
}

.detail-description {
    font-size: 16px;
    line-height: 26px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    body {
        margin-top: 60px;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .custom-header {
        height: 59px;
    }
    .container-divider {
        height: auto;
        padding-top: 50px;
    }
    .pricing-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .navbar {
        background-color: #fff;
        padding: 0;
        height: auto;
    }
    .navbar li a.active {
        border: none;
    }
    .navbar li a {
        color: var(--main-color);
    }
    .navbar li a.active {
        color: var(--main-color) !important;
    }
    .menu {
        display: none;
    }
    .menu-response {
        background-color: #a02c2c;
        display: block;
    }
    .menu-response-list {
        background-color: #a02c2c;
    }
    .dropdown-menu {
        background-color: #a02c2c;
        right: 200px;
        left: -150px;
    }
    .list-unstyled {
        margin-bottom: 0px;
    }
    .container-outstanding-design {
        padding-left: 20px;
        padding-right: 20px;
    }
    .container-representative-design {
        padding-left: 20px;
        padding-right: 20px;
    }
    .typical-interior-wrapper {
        column-gap: 20px;
        grid-template-rows: repeat(2, 200px);
    }
    .container-our-service {
        padding-left: 20px;
        padding-right: 20px;
    }
    .container-cost-estimation {
        padding-left: 20px;
        padding-right: 20px;
    }
    .form-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .pt-serif-bold {
        font-size: 26px;
    }
    .footer {
        padding: 20px;
    }
    .container-breadcrumb {
        padding-left: 0;
        padding-right: 0;
    }
    .title-detail-page {
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-detail-img {
        height: 300px;
    }
    .list-news {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
    }
    .news-item p {
        height: 38%;
    }
    .container-slider-event {
        padding-left: 20px;
        padding-right: 20px;
    }
    .event-slide {
        height: 200px;
    }

    /* Typical design */
    .tab {
        background: none;
        border: none;
        padding: 10px 0px;
        position: relative;
        transition: color 0.3s;
        font-size: 12px;
        width: 50%;
    }
    .view-all {
        padding-top: 10px;
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        color: #57c6e6;
        gap: 10px;
    }
    .typical-interior-item-tag {
        font-size: 11px !important;
        width: 100% !important;
    }

    /* Service */
    #service {
        padding: 50px 0px;
    }

    /* Form */
    .form-wrapper {
        display: grid;
        grid-template-columns: none;
        gap: 20px;
    }

    /* Contact */
    .list-contact-item {
        background-color: var(--main-color);
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        border-radius: 99px;
        border: 2px solid white;
        animation-name: tada;
        animation-delay: 0s;
        animation-duration: 1.5s;
        animation-iteration-count: infinite;
        transition: all 150ms linear 0s;
        -webkit-box-shadow: 0 0 0 0.26667em rgba(255, 255, 255, 0.42),
            0 0.2em 1.33333em rgba(0, 0, 0, 0.16);
    }
    .image-slider img {
        width: 100%;
        height: 324px !important;
        object-fit: cover;
    }
    .image-slider {
        position: relative;
        width: 100%;
        height: auto;
    }
}
@media (min-width: 1200px) {
    .list-news {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding-top: 20px;
    }
}
