/* Mobile Header */
.container-header-mobile {
    /* Logo */
    /* Menu Toggle Button */
    /* Mobile Menu Overlay */
    /* Mobile Menu */
    /* Menu Header */
    /* Menu Items */
    /* Menu Footer */
    /* Call Button */
    /* Demo Content */
}

.box-slider-custumer-giayphep .slick-prev.slick-arrow {
    position: absolute;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: #7a4d2d;
    border-radius: 100%;
    left: -35px;
}

.box-slider-custumer-giayphep {
    position: relative;
}

.box-slider-custumer-giayphep .slick-next.slick-arrow {
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #7a4d2d;
    right: -35px;
}

.box-slider-custumer-giayphep .single-client-cards button svg path {
    stroke: #fff;
}

.back-to-top-btn {
    background: #7a4d2d;
}

.container-header-mobile .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 70px;
}

.container-header-mobile .mobile-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
}

.container-header-mobile .mobile-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.container-header-mobile .mobile-logo-bg {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.container-header-mobile .mobile-logo-icon {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.container-header-mobile .mobile-logo-icon::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
}

.container-header-mobile .mobile-logo-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.container-header-mobile .menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    transition: all 0.3s ease;
}

.container-header-mobile .menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.container-header-mobile .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.container-header-mobile .menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.container-header-mobile .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.container-header-mobile .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.container-header-mobile .mobile-menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

.container-header-mobile .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.container-header-mobile .mobile-menu.active {
    right: 0;
}

.container-header-mobile .mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container-header-mobile .mobile-menu-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.container-header-mobile .menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px;
}

.container-header-mobile .mobile-menu-items {
    flex: 1;
    overflow-y: auto;
}

.container-header-mobile .mobile-menu-item {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.container-header-mobile .mobile-menu-item:hover {
    background: #f8f9fa;
    color: #2563eb;
    padding-left: 30px;
}

.container-header-mobile .mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
    margin-bottom: 12px;
}

.container-header-mobile .mobile-contact-info {
    margin-bottom: 15px;
}

.container-header-mobile .mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.container-header-mobile .mobile-social-links {
    display: flex;
    gap: 15px;
}

.container-header-mobile .mobile-social-links a {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.container-header-mobile .mobile-social-links a:hover {
    background: #1d4ed8;
}

.container-header-mobile .mobile-call-button {
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
    transition: background 0.3s;
}

.container-header-mobile .mobile-call-button:hover {
    background: #1d4ed8;
}

.container-header-mobile .demo-content {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.container-header-mobile .demo-content h1 {
    color: #333;
    margin-bottom: 20px;
}

.container-header-mobile .demo-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}



ul.nav-menu.dropdown li a {
    padding: 5px 10px;
}

ul.nav-menu.dropdown li {
    padding: 1px 0px;
}

.tp-header-top-menu-item {
    border: none;
}

.header-container {
    position: relative;
    /* overflow: hidden; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    z-index: 99;
}

.links-grid li a {
    color: #98999B;
}

.links-grid li {
    list-style: none;
    padding-bottom: 5px;
}

.newsletter-form-inner {
    display: flex;
    gap: 0;
    background: none;
    /* overflow: hidden; */
    /* border-bottom: 1px solid #FFFFFF1F; */
    width: 100%;
}

.header-container .logo-section {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 260px;
    background: linear-gradient(135deg, #fff, #fafafa);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.header-container .logo {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 600;
    text-decoration: none;
}

.header-container .logo-icon {
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-container .logo-icon::before {
    content: "";
    width: 12px;
    height: 12px;
    background: #2563eb;
    border-radius: 50%;
    position: relative;
}

.header-container .logo-icon::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header-container .top-bar {
    background-color: #333;
    color: white;
    padding: 8px 0;
    font-size: 13px;
    padding-left: 260px;
    /* Space for logo */
}

.header-container .top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.header-container .contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-container .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    margin-bottom: 0px !important;
}

.header-container .social-links {
    display: flex;
    gap: 15px;
}

.header-container .social-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.header-container .social-links a:hover {
    color: white;
}

.header-container .main-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding-left: 260px;
    /* Space for logo */
}

.header-container .header-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0px 30px;
    /* justify-content: center; */
}

.header-container .navigation {
    display: flex;
    align-items: center;
}

.header-container .nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.header-container .nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    padding: 5px 0px;
}

.header-container .nav-menu a:hover {
    color: #7b4e2d;
}

.header-container .header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-container .search-icon {
    color: #666;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.header-container .search-icon:hover {
    color: #2563eb;
}

.header-container .cart-icon {
    position: relative;
    color: #2563eb;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.header-container .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

.header-container .call-button {
    color: white;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s;
}

.header-container .call-button:hover {
    /* background: #1d4ed8; */
}

.header-container .call-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.header-container .call-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-container .call-text {
    font-size: 15px;
    opacity: 0.9;
    color: #333;
}

.header-container .call-number {
    font-weight: 600;
    font-size: 19px;
    color: #000;
}





.tp-contact-form.box-label-form-contacts input {
    background: #F8F7FA;
    border: none;

}

.tp-contact-form.box-label-form-contacts textarea#content {
    background: #F8F7FA;
    border: none;
}

.row.d-flex.box-fields-contacts .form-header {
    margin-bottom: 20px;
}

.box-fields-contacts {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    padding-top: 40px;
}


.row.d-flex.box-fields-contacts .form-header .label {
    color: #6c757d;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    position: relative;
    padding-top: 20px;
}

.row.d-flex.box-fields-contacts .form-header .label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 3px;
    background: #7b4e2d;
}


.tp-contact-form.box-label-form-contacts button.contact-button {
    color: #FFF;
    border-radius: 30px 30px 30px 30px;
    background: #7b4e2d !important;
}

.contact-info {
    /* padding: 40px 0; */
}

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

.tp-contact-form.box-label-form-contacts label {
    display: none;
}

.contact-info .contact-header .label {
    color: #6c757d;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    position: relative;
    padding-top: 20px;
}

.contact-info .contact-header .label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 3px;
    background: #7b4e2d;
}

.contact-info .contact-header h2 {
    font-size: 35px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-info .contact-description {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.contact-info .contact-icon {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info .contact-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-info .contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-info .contact-details p {
    color: #6c757d;
    font-size: 16px;
}

.thuvienha .gallery-container {

    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.list-products-go .product-title:hover {
    color: #2C1F17;
}

.thuvienha .media-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.thuvienha .media-item:nth-child(1) {
    grid-row: span 2;
    transform: rotate(-1deg);
}

.thuvienha .media-item:nth-child(2) {
    grid-row: span 1;
    transform: rotate(1deg);
}

.thuvienha .media-item:nth-child(3) {
    grid-row: span 3;
    transform: rotate(-0.5deg);
}

.thuvienha .media-item:nth-child(4) {
    grid-row: span 2;
    transform: rotate(1.5deg);
}

.thuvienha .media-item:nth-child(5) {
    grid-row: span 1;
    transform: rotate(-1.2deg);
}

.thuvienha .media-item:nth-child(6) {
    grid-row: span 2;
    transform: rotate(0.8deg);
}

.thuvienha .media-item:nth-child(7) {
    grid-row: span 1;
    transform: rotate(-0.7deg);
}

.thuvienha .media-item:nth-child(8) {
    grid-row: span 2;
    transform: rotate(1.3deg);
}

.thuvienha .media-item:nth-child(9) {
    grid-row: span 1;
    transform: rotate(-1.8deg);
}

.thuvienha .media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.thuvienha .media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.thuvienha .media-item:hover {
    transform: scale(1.05) rotate(0deg) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.thuvienha .media-item:hover .media-overlay {
    transform: translateY(0);
}

.thuvienha .media-item:hover img {
    transform: scale(1.1);
}

.thuvienha .media-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

main .tp-blog-grid-title a {
    color: #000 !important;
}

.thuvienha .media-type {
    font-size: 0.9em;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 15px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.tp-postbox-details-content h2 {
    font-size: 22px;
}

.tp-postbox-details-content h3 {
    font-size: 20px;
}

.tp-postbox-details-content h4 {
    font-size: 18px;
}

@media (max-width: 768px) {
    .row.d-flex.box-fields-contacts .form-header h2 {
        font-size: 24px;
    }

    .contact-info .contact-header h2 {
        font-size: 25px;
    }

    .container-header-mobile .mobile-header {
        position: relative;
    }

    .services-container .card-background {
        background-size: auto !important;
    }

    .box-fields-contacts {
        display: unset !important;
    }

    .tp-postbox-related-title {
        font-size: 27px;
    }


    main .tp-blog-grid-title {
        font-size: 20px;
        color: #000;
    }

    .tp-shop-top-result {
        display: none;
    }

    .thuvienha .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .thuvienha .media-item {
        grid-row: span 1 !important;
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .thuvienha .gallery-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.thuvienha .media-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.thuvienha .media-item:nth-child(1) {
    animation-delay: 0.1s;
}

.thuvienha .media-item:nth-child(2) {
    animation-delay: 0.2s;
}

.thuvienha .media-item:nth-child(3) {
    animation-delay: 0.3s;
}

.thuvienha .media-item:nth-child(4) {
    animation-delay: 0.4s;
}

.thuvienha .media-item:nth-child(5) {
    animation-delay: 0.5s;
}

.thuvienha .media-item:nth-child(6) {
    animation-delay: 0.6s;
}

.thuvienha .media-item:nth-child(7) {
    animation-delay: 0.7s;
}

.thuvienha .media-item:nth-child(8) {
    animation-delay: 0.8s;
}

.thuvienha .media-item:nth-child(9) {
    animation-delay: 0.9s;
}

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


section.hero-section-tnphutho.section-form2 .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

header .main-nav svg.icon.svg-icon-ti-ti-chevron-down {
    width: 18px;
}

.box-form-btn {
    text-align: center;
}

section.hero-section-tnphutho.section-form2 .floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

section.hero-section-tnphutho.section-form2 .floating-shape:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

section.hero-section-tnphutho.section-form2 .floating-shape:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 20%;
    right: 20%;
    animation-delay: 2s;
}

section.hero-section-tnphutho.section-form2 .floating-shape:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

section.hero-section-tnphutho.section-form2 .floating-shape:nth-child(4) {
    width: 50px;
    height: 50px;
    bottom: 30%;
    right: 10%;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

section.hero-section-tnphutho.section-form2 .main-container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 2;
}

section.hero-section-tnphutho.section-form2 .hero-section {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}

section.hero-section-tnphutho.section-form2 .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

section.hero-section-tnphutho.section-form2 .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

section.hero-section-tnphutho.section-form2 .contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-primary);
    overflow: hidden;
    animation: slideUp 0.8s ease-out 0.3s both;
    position: relative;
}

section.hero-section-tnphutho.section-form2 .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

section.hero-section-tnphutho.section-form2 .card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 475px;
}

section.hero-section-tnphutho.section-form2 .info-panel {
    background: linear-gradient(135deg, rgb(0 0 0 / 41%), rgb(0 0 0 / 25%));
    padding: 20px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

section.hero-section-tnphutho.section-form2 .info-panel::before {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0.3;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

section.hero-section-tnphutho.section-form2 .info-content {
    position: relative;
    z-index: 1;
}

section.hero-section-tnphutho.section-form2 .info-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulses 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

section.hero-section-tnphutho.section-form2 .info-title {
    font-size: 34px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

section.hero-section-tnphutho.section-form2 .info-description {
    font-size: 1.125rem;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

section.hero-section-tnphutho.section-form2 .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

section.hero-section-tnphutho.section-form2 .feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: slideInFeature 0.6s ease-out forwards;
}

section.hero-section-tnphutho.section-form2 .feature-card:nth-child(1) {
    animation-delay: 0.5s;
}

section.hero-section-tnphutho.section-form2 .feature-card:nth-child(2) {
    animation-delay: 0.7s;
}

section.hero-section-tnphutho.section-form2 .feature-card:nth-child(3) {
    animation-delay: 0.9s;
}

section.hero-section-tnphutho.section-form2 .feature-card:nth-child(4) {
    animation-delay: 1.1s;
}

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

section.hero-section-tnphutho.section-form2 .feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

section.hero-section-tnphutho.section-form2 .feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 20px;
}

section.hero-section-tnphutho.section-form2 .feature-text {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

section.hero-section-tnphutho.section-form2 .trust-indicators {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}

section.hero-section-tnphutho.section-form2 .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

section.hero-section-tnphutho.section-form2 .trust-icon {
    width: 20px;
    height: 20px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

section.hero-section-tnphutho.section-form2 .form-panel {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

section.hero-section-tnphutho.section-form2 .form-header {
    text-align: center;
    margin-bottom: 40px;
}

section.hero-section-tnphutho.section-form2 .form-title {
    font-size: 29px;
    font-weight: 700;
    color: #2C1F17;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

section.hero-section-tnphutho.section-form2 .form-subtitle {
    color: #2C1F17;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

section.hero-section-tnphutho.section-form2 .form-timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

section.hero-section-tnphutho.section-form2 .contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

section.hero-section-tnphutho.section-form2 .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

section.hero-section-tnphutho.section-form2 .input-wrapper {
    position: relative;
    group: wrapper;
}

section.hero-section-tnphutho.section-form2 .form-input {
    width: 100%;
    padding: 20px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 300;
    background: #f8fafc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    font-family: inherit;
}

section.hero-section-tnphutho.section-form2 .form-input:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

section.hero-section-tnphutho.section-form2 .form-input:focus+.input-label,
section.hero-section-tnphutho.section-form2 .form-input:not(:placeholder-shown)+.input-label {
    transform: translateY(-40px) translateX(4px) scale(0.85);
    color: #667eea;
    background: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 600;
}

section.hero-section-tnphutho.section-form2 .input-label {
    position: absolute;
    left: 24px;
    top: 8px;
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
    background: transparent;
}

section.hero-section-tnphutho.section-form2 .form-textarea {
    min-height: 140px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

section.hero-section-tnphutho.section-form2 .submit-button {
    background: linear-gradient(90deg, rgba(84, 69, 60, 1) 0%, rgba(79, 62, 51, 1) 50%, rgba(44, 31, 23, 1) 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 0px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

section.hero-section-tnphutho.section-form2 .submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

section.hero-section-tnphutho.section-form2 .submit-button:hover::before {
    left: 100%;
}

section.hero-section-tnphutho.section-form2 .submit-button:active {
    transform: translateY(-1px);
}

section.hero-section-tnphutho.section-form2 .privacy-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 16px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    section.hero-section-tnphutho.section-form2 .hero-title {
        font-size: 2.5rem;
    }

    section.hero-section-tnphutho.section-form2 .card-content {
        grid-template-columns: 1fr;
    }

    section.hero-section-tnphutho.section-form2 .info-panel,
    section.hero-section-tnphutho.section-form2 .form-panel {
        padding: 40px 30px;
    }

    section.hero-section-tnphutho.section-form2 .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section.hero-section-tnphutho.section-form2 .hero-title {
        font-size: 2rem;
    }

    section.hero-section-tnphutho.section-form2 .form-row {
        grid-template-columns: 1fr;
    }

    section.hero-section-tnphutho.section-form2 .info-panel,
    section.hero-section-tnphutho.section-form2 .form-panel {
        padding: 30px 20px;
    }

    section.hero-section-tnphutho.section-form2 .trust-indicators {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* Animation keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* Loading states */
section.hero-section-tnphutho.section-form2 .loading {
    opacity: 0.7;
    pointer-events: none;
}

section.hero-section-tnphutho.section-form2 .loading .submit-button {
    background: #9ca3af;
    cursor: not-allowed;
}

section.hero-section-tnphutho.section-form2 .success {
    background: linear-gradient(135deg, #10b981, #059669) !important;
}




.breadcrumb-custum {
    background: #f2f2f2;
}

.breadcrumb-custum .breadcrumb-minimal {
    display: flex;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 15px;
}

.breadcrumb-custum .breadcrumb-minimal .crumb {
    color: #7b4e2d;
    text-decoration: none;
    font-weight: 400;
    padding: 5px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 15px;
}

.breadcrumb-custum .breadcrumb-minimal .crumb:hover {
    color: #7b4e2d;
    background: rgba(102, 126, 234, 0.1);
}

.breadcrumb-custum .breadcrumb-minimal .crumb.active {
    color: #2d3748;
    font-weight: 600;
}

.breadcrumb-custum .breadcrumb-minimal .separator {
    margin: 0 0px;
    color: #cbd5e0;
    font-size: 1.2rem;
}


.camnhankh .title-separator:before {
    background: #fff;
}

section.services-container.product-tion-member .container {
    display: unset;
}

.list-products-go {
    margin-bottom: 30px;
}

section.camnhankh.camnhankh-wrapper h2 {
    color: #fff;
}


section.camnhankh.camnhankh-wrapper .hedding-servicers p {
    color: #fff;
}

.list-products-go .product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease forwards;
    position: relative;
    margin-bottom: 20px;
}

.list-products-go .wood-texture-6 {
    background: linear-gradient(135deg, #f8c291 0%, #e55039 50%, #b33939 100%);
}

.list-products-go .product-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.list-products-go .product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 2;
}

.list-products-go .product-content {
    padding: 20px;
    position: relative;
}

.list-products-go .product-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0c0c0c;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.list-products-go .product-description {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-products-go .product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.list-products-go .feature-tag {
    color: white;
    padding: 2px 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: transform 0.3s ease;
    background: linear-gradient(90deg, rgba(84, 69, 60, 1) 0%, rgba(79, 62, 51, 1) 50%, rgba(44, 31, 23, 1) 100%);
}

.list-products-go .product-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.list-products-go .btn-primary {
    color: white;
    border: none;
    padding: 7px 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    background: linear-gradient(90deg, rgba(84, 69, 60, 1) 0%, rgba(79, 62, 51, 1) 50%, rgba(44, 31, 23, 1) 100%);
}

.list-products-go .btn-secondary {
    background: transparent;
    color: #2C1F17;
    border: 2px solid #2C1F17;
    padding: 7px 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}



.hedding-servicers h2 {
    color: #2c1f17;
    text-transform: uppercase;
    font-size: 30px;
}

.thuvienha {
    padding-bottom: 38px;
    padding-top: 30px;
}

.camnhankh .title-separator:after {
    background: #fff;
}

.camnhankh .title-separator .separator-center:before {
    border: 1px solid #fff;
}

.camnhankh .title-separator .separator-center:after {
    border: 1px solid #fff;
}

.camnhankh .testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.camnhankh {
    background: #2c1f17;
    padding: 40px 0px 10px;
    position: relative;
    overflow: hidden;
}

.camnhankh .section-header {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.camnhankh .section-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
}

.camnhankh .section-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.camnhankh .testimonials-grid {
    margin-bottom: 40px;
}

.camnhankh .testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 29px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
    margin: 0px 10px;
}

.camnhankh .testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.camnhankh .testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.camnhankh .testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

.camnhankh .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.camnhankh .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15);
}

.camnhankh .testimonial-card:hover::before {
    transform: scaleX(1);
}

.camnhankh .testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-size: contain;
}

.camnhankh .testimonial-card:hover .testimonial-image {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

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

.camnhankh .quote-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.camnhankh .testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 24px;
    position: relative;
    font-style: italic;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.camnhankh .testimonial-text p {
    margin-bottom: 0;
}

.camnhankh .testimonial-text::before {}

.camnhankh .testimonial-author {
    margin-top: 0px;
    padding-top: 0px;
}

.camnhankh .author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.camnhankh .author-role {
    font-size: 0.9rem;
    color: #6b7280;
}

.camnhankh .rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: -1px 0 16px;
}

.camnhankh .star {
    color: #fbbf24;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.camnhankh .testimonial-card:hover .star {
    transform: scale(1.1);
}

.camnhankh .contact-info {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1f2937;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: slideInLeft 0.8s ease-out 0.5s both;
}

.camnhankh .contact-info:hover {
    transform: translateX(4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.camnhankh .phone-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {


    .camnhankh .section-title {
        font-size: 2rem;
    }

    .camnhankh .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .camnhankh .testimonial-card {
        padding: 24px;
    }

    .camnhankh .contact-info {
        position: relative;
        margin: 40px auto 0;
        width: fit-content;
    }
}

.camnhankh .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.camnhankh .floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.camnhankh .floating-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.camnhankh .floating-element:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.camnhankh .floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.thuvienha .header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.thuvienha .header h1 {
    font-size: 31px;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
}

.thuvienha .header p {
    font-size: 16px;
    opacity: 0.8;
    font-weight: 300;
}

.thuvienha .gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 100%;
}

.thuvienha .column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.thuvienha .media-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.thuvienha .media-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.5);
}

.thuvienha .media-item img,
.thuvienha .media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.thuvienha .media-item:hover img,
.thuvienha .media-item:hover video {
    transform: scale(1.1);
}

.thuvienha .media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2c1f1787;
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.thuvienha .media-item:hover .media-overlay {
    opacity: 1;
}

.thuvienha .play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.thuvienha .play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.thuvienha .play-icon {
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.thuvienha .media-info {
    text-align: center;
}

.thuvienha .media-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.thuvienha .media-type {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.thuvienha .media-item.tall {
    height: 400px;
}

.thuvienha .media-item.medium {
    /* height: 280px; */
}

.thuvienha .media-item.short {
    /* height: 200px; */
}

.thuvienha .media-item.extra-tall {
    /* height: 500px; */
}

.thuvienha .filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.thuvienha .filter-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.thuvienha .filter-btn:hover,
.thuvienha .filter-btn.active {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
    .thuvienha .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .thuvienha .media-item.tall {
        height: 300px;
    }

    .thuvienha .media-item.medium {
        height: auto;
    }

    .thuvienha .media-item.short {
        height: auto;
    }

    .thuvienha .media-item.extra-tall {
        height: unset;
    }
}

@media (max-width: 480px) {
    .thuvienha .gallery-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .thuvienha .container {
        padding: 20px 15px;
    }
}

.thuvienha .media-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.thuvienha .media-item:nth-child(1) {
    animation-delay: 0.1s;
}

.thuvienha .media-item:nth-child(2) {
    animation-delay: 0.2s;
}

.thuvienha .media-item:nth-child(3) {
    animation-delay: 0.3s;
}

.thuvienha .media-item:nth-child(4) {
    animation-delay: 0.4s;
}

.thuvienha .media-item:nth-child(5) {
    animation-delay: 0.5s;
}

.thuvienha .media-item:nth-child(6) {
    animation-delay: 0.6s;
}

.thuvienha .media-item:nth-child(7) {
    animation-delay: 0.7s;
}

.thuvienha .media-item:nth-child(8) {
    animation-delay: 0.8s;
}

.thuvienha .media-item:nth-child(9) {
    animation-delay: 0.9s;
}

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

.thuvienha .glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.thuvienha .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.thuvienha .lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    overflow: hidden;
}

.thuvienha .lightbox img,
.thuvienha .lightbox video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thuvienha .close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.thuvienha .close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}


#iglg35 {
    background-color: rgb(231, 19, 5);
    box-shadow: rgb(235, 223, 223) 8px 9px 10px 7px;
    border-top-width: initial;
    border-right-width: initial;
    border-bottom-width: initial;
    border-left-width: initial;
    border-top-style: groove;
    border-right-style: groove;
    border-bottom-style: groove;
    border-left-style: groove;
    border-top-color: rgb(255, 255, 255);
    border-right-color: rgb(255, 255, 255);
    border-bottom-color: rgb(255, 255, 255);
    border-left-color: rgb(255, 255, 255);
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    border-top-left-radius: 10px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 0px;
}

#ip1pk {
    position: static;
    opacity: 1;
    perspective: 1px;
    transform: rotateX(0deg) rotateY(3deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(1);
}

#itk5i {
    font-size: 36px;
    color: rgb(255, 255, 255);
}

#iloxgf {
    background-repeat: no-repeat;
    background-position-x: 50%;
    background-position-y: 50%;
    background-attachment: scroll;
    background-size: cover;
    background-image: url("https://demo17.bivaco.net/storage/dd.webp");
    opacity: 0.93;
    background-color: rgba(161, 161, 161, 0);
}

#i0pvca {
    font-size: 24px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

#irws3s {
    margin-top: 5px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 15px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

#i5ycej {
    text-align: justify;
    top: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 5px;
    padding-left: 0px;
}

#i00y7u {
    text-align: justify;
}

#idibk5 {
    text-align: justify;
}

#iphjud {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 19px;
    margin-left: 0px;
}

#ixso2e {
    text-align: justify;
}

#ixp5a7 {
    width: 100%;
    box-shadow: rgb(205, 205, 205) 3px 2px 5px -1px;
}




.gap-row-pages {
    /* gap: 0px 10px; */
    justify-content: space-between;
}

.title-separator {
    display: flex;
    justify-content: center;
    position: relative;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

.title-separator:before {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #000000;
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 77px);
}

.title-separator .separator-center {
    display: block;
    width: 32px;
    height: 12px;
    position: relative;
}

.title-separator:after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #000000;
    position: absolute;
    top: calc(50% - 1px);
    right: calc(50% - 77px);
}

.title-separator .separator-center:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border: 1px solid #000000;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 8px;
}

.title-separator .separator-center:after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border: 1px solid #000000;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 8px;
}




section.hero-section-tnphutho .hero-section {
    display: flex;
    align-items: center;
    gap: 0px 35px;
    padding: 15px;
    background: #0000008a;
    border-radius: 10px;
}

section.hero-section-tnphutho .form-container {
    width: 50%;
}

section.hero-section-tnphutho #contactForm {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    justify-content: space-between;
    gap: 10px 0px;
    border-radius: 10px;
    overflow: hidden;
    padding: 0px 0px 10px;
    box-shadow: unset;
    margin-right: unset;
}

section.hero-section-tnphutho #contactForm .form-group {
    width: 50%;
    padding: 0px 10px;
}

section.hero-section-tnphutho #contactForm .form-group input {
    height: 45px;
    border-radius: 5px;
}

section.hero-section-tnphutho #contactForm .form-group label {
    margin-bottom: 10px;
}

section.hero-section-tnphutho #contactForm .form-group.textras {
    width: 100%;
}

section.hero-section-tnphutho #contactForm .form-group.textras textarea {
    border-radius: 5px;
}

.box-btn-views {
    width: 100%;
    text-align: center;
}

section.hero-section-tnphutho .btn-submit {
    background: linear-gradient(45deg, #DAA520, #B8860B);
    color: white;
    padding: 10px 44px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
    margin: 0 auto;
}

section.hero-section-tnphutho form h2 {
    font-size: 18px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    background: #B8860B;
    padding: 15px;
    color: #fff;
    line-height: 1.7;
}

.contact-form-pages .tp-contact-area {
    padding: 60px 0;
}

.contact-form-pages .tp-contact-inner .box-contacts {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 42px 20px 49px;
}

.contact-form-pages .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.contact-form-pages .col-xl-9,
.contact-form-pages .col-lg-8 {
    flex: 0 0 75%;
    max-width: 75%;
    padding: 0 15px;
}

.contact-form-pages .col-xl-3,
.contact-form-pages .col-lg-4 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.contact-form-pages .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.contact-form-pages .tp-contact-wrapper {
    /* padding: 50px 40px; */
    margin-right: 0px;
}

.contact-form-pages .tp-contact-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.contact-form-pages .tp-contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.contact-form-pages .tp-contact-form {
    margin-top: 30px;
}

.contact-form-pages .contact-form-row {
    margin-bottom: 0px;
}

.contact-form-pages .contact-form-group {
    margin-bottom: 18px;
}

.contact-form-pages .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-form-pages .form-label.required::after {
    content: ' *';
    color: #e74c3c;
}

.contact-form-pages .contact-form-input {
    width: 100%;
    padding: 10px 10px;
    font-size: 15px;
    color: #2c3e50;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    background-color: #F8F7FA;
    border: none;
}

.contact-form-pages .contact-form-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.contact-form-pages .contact-form-input:hover {
    border-color: #cbd5e0;
    transform: translateY(-1px);
}

.contact-form-pages .contact-form-input::placeholder {
    color: #a0aec0;
    transition: opacity 0.3s ease;
}

.contact-form-pages .contact-form-input:focus::placeholder {
    opacity: 0.7;
}

.contact-form-pages textarea.contact-form-input {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-form-pages .form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
    cursor: pointer;
}

.contact-form-pages .form-check-input {
    width: 20px !important;
    height: 20px !important;
    margin: 0;
    cursor: pointer;
    accent-color: #667eea;
}

.contact-form-pages .form-check-label {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.contact-form-pages .contact-button {
    background: #7b4e2d;
    color: white;
    border: none;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.contact-form-pages .contact-button:hover::before {
    left: 100%;
}

.contact-form-pages .contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.contact-form-pages .contact-button:active {
    transform: translateY(-1px);
}

.contact-form-pages .tp-contact-info-wrapper {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 50px 30px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

.carpenter-section .stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form-pages .tp-contact-info-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-20px, -20px) rotate(180deg);
    }
}

.contact-form-pages .contact-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 500;
}

.contact-form-pages .contact-success-message {
    background: #d1edff;
    color: #0369a1;
    border: 1px solid #bae6fd;
}

.contact-form-pages .contact-error-message {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.contact-form-pages .contact-form-group {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.contact-form-pages .contact-form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-form-pages .contact-form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-form-pages .contact-form-group:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-form-pages .contact-form-group:nth-child(4) {
    animation-delay: 0.4s;
}

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

@media (max-width: 992px) {

    .contact-form-pages .col-xl-9,
    .contact-form-pages .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contact-form-pages .col-xl-3,
    .contact-form-pages .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contact-form-pages .tp-contact-info-wrapper {
        min-height: 200px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .contact-form-pages .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contact-form-pages .tp-contact-wrapper {
        padding: 30px 25px;
    }

    .contact-form-pages .tp-contact-title {
        font-size: 24px;
    }

    .contact-form-pages .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .contact-form-pages .tp-contact-area {
        padding: 30px 0;
    }

    .contact-form-pages .tp-contact-wrapper {
        padding: 25px 20px;
    }

    .contact-form-pages .tp-contact-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .contact-form-pages .contact-form-input {
        padding: 14px 16px;
        font-size: 14px;
    }

    .contact-form-pages .contact-button {
        width: 100%;
        padding: 16px 30px;
    }
}

.contact-form-pages .contact-form-input:focus,
.contact-form-pages .form-check-input:focus,
.contact-form-pages .contact-button:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}



.bg-post-blade {
    position: relative;
}

.welcom .stats-label pre {
    font-family: unset;
}

.tp-product-details-description span {
    color: #000 !important;
}

.services-container .card-content p {
    color: #fff;
}

.bg-post-blade:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffffb3;
    top: 0;
}

.desc-products span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tp-product-item .tp-product-title {
    font-size: 20px;
}

section.tp-related-product h3.section-title {
    font-size: 30px;
}

.card-content p span {
    background: unset !important;
    color: #fff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bg-post-blade .breadcrumb__title {
    font-size: 37px;
}

header .dropdown:last-child {
    border-bottom: none;
}

ul.nav-menu.dropdown {
    display: block;
}

.work-hours a {
    color: #fff;
    font-size: 16px;
}

.tp-footer-contact-icon svg path {
    stroke: #fff;
}

header .top-bar {
    background: #7b4e2d;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

header .top-bar .container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header .social-links {
    display: flex;
    gap: 15px;
}

header .social-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

header .social-links a:hover {
    color: #d4ac6e;
}

header .contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

header .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #ffffff;
}

header .contact-item .icon {
    width: 20px;
    height: 20px;
    /* background: #d4ac6e; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

header .top-menu {
    display: flex;
    gap: 20px;
    color: #B0B6BC;
}

header .top-menu a {
    color: #B0B6BC;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

header .top-menu a:hover {
    color: #d4ac6e;
}

header .main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1px 0;
}

header .main-header .container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin: 0px;
    padding: 7px 0px;
}

header .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4ac6e, #c9a05e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

header .main-nav {
    display: flex;
    gap: 65px;
    align-items: center;
}

header .nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

header .nav-menu li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

header .nav-menu li a:hover {
    color: #7b4e2d;
}

header .nav-menu li a.active {
    color: #7b4e2d;
}

header .nav-menu li {
    position: relative;
    padding: 15px 0px;
}

header .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

header .nav-menu li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: absolute;
    z-index: 999999999;
    left: 100%;
    top: 0;
}

header .dropdown li {
    list-style: none;
    margin: 0;
    border-bottom: 1px solid #cdcdcd45;
}

header .dropdown li a {
    display: block;
    padding: 8px 20px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

header .dropdown li a:hover {
    color: #7b4e2d;
    background: #f8f8f8;
    border-left-color: #7b4e2d;
}

header .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

header .mobile-menu-toggle:hover {
    background: #f0f0f0;
}

header .mobile-menu-toggle.active {
    color: #d4ac6e;
}

header .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

header .mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

header .mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: white;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

header .mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

header .mobile-menu-header {
    background: white;
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

header .mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .mobile-menu-close:hover {
    background: #f0f0f0;
    color: #d4ac6e;
}

header .mobile-nav-menu {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

header .mobile-nav-menu>li {
    margin: 0;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInLeft 0.3s ease forwards;
}

header .mobile-menu.active .mobile-nav-menu>li:nth-child(1) {
    animation-delay: 0.1s;
}

header .mobile-menu.active .mobile-nav-menu>li:nth-child(2) {
    animation-delay: 0.15s;
}

header .mobile-menu.active .mobile-nav-menu>li:nth-child(3) {
    animation-delay: 0.2s;
}

header .mobile-menu.active .mobile-nav-menu>li:nth-child(4) {
    animation-delay: 0.25s;
}

header .mobile-menu.active .mobile-nav-menu>li:nth-child(5) {
    animation-delay: 0.3s;
}

header .mobile-menu.active .mobile-nav-menu>li:nth-child(6) {
    animation-delay: 0.35s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

header .mobile-nav-menu li a {
    display: block;
    padding: 12px 30px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid transparent;
}

header .mobile-nav-menu li a:hover,
header .mobile-nav-menu li a.active {
    color: #d4ac6e;
    background: rgba(212, 172, 110, 0.1);
    border-left-color: #d4ac6e;
    padding-left: 35px;
}

header .mobile-nav-menu li a::after {
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #d4ac6e;
    transition: width 0.3s ease;
}

header .mobile-nav-menu li a:hover::after {
    width: 20px;
}

header .mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    background: #f8f9fa;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 0;
}

header .mobile-dropdown.active {
    max-height: 200px;
    margin-top: 5px;
}

header .mobile-dropdown li a {
    padding: 12px 50px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    background: transparent;
    border-left: 4px solid transparent;
}

header .mobile-dropdown li a:hover {
    color: #d4ac6e;
    background: rgba(212, 172, 110, 0.1);
    border-left-color: #d4ac6e;
    padding-left: 55px;
}

header .dropdown-toggle {
    position: relative;
}

header .dropdown-toggle::before {
    content: 'Ã¢â€“Â¼';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #999;
    transition: all 0.3s ease;
}

header .dropdown-toggle.active::before {
    transform: translateY(-50%) rotate(180deg);
    color: #d4ac6e;
}

header .mobile-book-section {
    padding: 30px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

header .mobile-book-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #d4ac6e, #c9a05e);
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 172, 110, 0.3);
    font-size: 15px;
}

header .mobile-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 172, 110, 0.4);
}

header .book-btn {
    background: #7b4e2d;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-size: 14px;
}

header .book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 172, 110, 0.4);
}

ul.nav-menu.dropdown {
    display: block;
}

@media (max-width: 992px) {

    .main-header .book-btn {
        display: none;
    }

    header .top-bar {
        display: none;
    }

    header .nav-menu {
        gap: 25px;
    }

    header .nav-menu li a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    header .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 0 15px;
    }

    header .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    header .contact-item {
        font-size: 13px;
    }

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

    header .main-nav {
        display: none;
    }

    header .mobile-menu-toggle {
        display: block;
    }

    header .book-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    header .logo {
        font-size: 28px;
    }

    header .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    header .top-bar {
        padding: 5px 0;
    }

    header .top-bar .container {
        padding: 0 10px;
    }

    header .social-links {
        gap: 10px;
    }

    header .top-menu {
        gap: 15px;
    }

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

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

    header .logo {
        font-size: 24px;
    }

    header .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}


.banner {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgb(139 101 70 / 27%), rgb(101 67 33 / 62%)), url(https://dev242.kodesolution.com/carpento/wp-content/uploads/2024/07/bg1.jpg) center / cover;
    background-attachment: fixed;
}

@keyframes backgroundSlide {

    0%,
    100% {
        background-position: center center;
    }

    50% {
        background-position: center top;
    }
}

.banner .banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.4;
    }
}

.banner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.banner .content {
    max-width: 600px;
    color: white;
    animation: slideInLeft 1.5s ease-out;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner .welcome-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInDown 1s ease-out 0.5s both;
}

.banner .welcome-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #ffd700);
    animation: expandLine 1.5s ease-out 1s both;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    0% {
        width: 0;
    }

    100% {
        width: 80px;
    }
}

.banner .main-title {
    font-size: 75px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease-out 0.8s both;
    color: #fff;
}

.banner .main-title .highlight {
    animation: shimmer 3s ease-in-out infinite;
    color: #fff;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: -200% center;
    }

    50% {
        background-position: 200% center;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner .description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeIn 1s ease-out 1.2s both;
    color: #fff;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.9;
    }
}

.banner .cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #d4ac6e, #c9a05e);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out 1.5s both;
}

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

.banner .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

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

.banner .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.banner .floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.banner .floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.banner .floating-element:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    width: 15px;
    height: 15px;
}

.banner .floating-element:nth-child(3) {
    top: 30%;
    left: 70%;
    animation-delay: 4s;
    width: 25px;
    height: 25px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
}

.banner .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.banner .scroll-indicator::after {
    content: 'Ã¢â€ â€œ';
    font-size: 24px;
    display: block;
    text-align: center;
}



.welcom .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

.welcom .left-section {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.welcom .left-section:hover {
    transform: translateY(-5px);
}

.welcom .left-section::before {}

.welcom .left-section:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.welcom .carpenter-image {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    width: 92%;
    box-shadow: 100px 45px 0px -45px #9e6726;
    overflow: hidden;
}

.welcom .carpenter-image:hover {
    transform: scale(1.02);
}

.welcom .stats-container {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
    padding: 20px;
    width: 70%;
}

.welcom .play-button {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    right: 50px;
}

.welcom .play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.welcom .play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #d4a574;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.welcom .stats-text {
    color: white;
}

.welcom .stats-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.welcom .stats-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.welcom .right-section {
    padding: 40px 0;
}

.welcom .contact-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #d4a574, #b8935f);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.welcom .contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
}

.welcom .welcome-text {
    color: #9e6726;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    animation: fadeInUp 0.6s ease;
}

.welcom .main-heading {
    font-size: 36px;
    font-weight: bold;
    color: #2c2c2c;
    line-height: 1.2;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.welcom .description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.welcom .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.welcom .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    animation: fadeInUp 1.2s ease;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid #4a90e2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.welcom .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.welcom .feature-icon {
    width: 18px;
    height: 18px;
    background: #9e6726;
    border-radius: 50%;
    position: relative;
}

.welcom .feature-icon::after {
    content: 'v';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.welcom .feature-text {
    color: #333;
    font-weight: 500;
}

.welcom .founder-section {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1.4s ease;
}

.welcom .founder-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.welcom .founder-info h3 {
    color: #2c2c2c;
    font-size: 18px;
    margin-bottom: 5px;
}

.welcom .founder-info p {
    color: #666;
    font-size: 14px;
}

.welcom .more-btn {
    background: #9e6726;
    color: white;
    padding: 10px 22px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    height: max-content;
    margin-left: 50px;
}

.welcom .more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.welcom .stats-container {
    position: absolute;
    background: #9e6726;
    bottom: 0;
    right: 0;
}

section.welcom {
    padding: 0px 0px 50px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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




.Professional .guten-background-overlay {
    background: #9e6726;
    opacity: 0.87;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.Professional .box-member-Professional {
    margin-top: -153px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    position: relative;
    background-image: url(https://fse.jegtheme.com/woodzone/wp-content/uploads/sites/19/2024/11/old-carpenter.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 360px;
}

.Professional .hedding-Professional h2 {
    font-size: 26px;
    color: #fff;
}

.Professional .hedding-Professional p {
    color: #fff;
    font-size: 15px;
    display: inline-block;
}

.Professional .hedding-Professional a {
    color: #fff;
}

.Professional .hedding-Professional a svg {
    width: 25px;
    height: 25px;
}

.Professional .hedding-Professional a svg path {
    fill: #fff;
}

.Professional .box-content-Professional {
    position: relative;
}

.Professional .container {
    display: flex;
    justify-content: right;
}




.services-section {
    margin: 0 auto;
}

.services-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.services-section .section-title {
    flex: 1;
}

.services-section .section-subtitle {
    color: #b8860b;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 0.8s ease forwards;
}

.services-section .section-heading {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.services-section .section-description {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.6;
    max-width: 400px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.services-section .all-services-btn {
    background: #b8860b;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.services-section .all-services-btn:hover {
    background: #996f0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.services-section .service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
    display: flex;
    align-items: center;
}

.services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.services-section .service-card.featured {
    background: #9e6826;
    color: white;
}

.services-section .service-card.featured .service-content {
    padding: 40px 30px;
}

.services-section .service-content {
    padding: 21px;
    overflow: hidden;
}

.services-section .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: all 0.3s ease;
    overflow: hidden;
}

.services-section .service-card:hover .service-icon {
    opacity: 1;
    transform: scale(1.1);
}

.services-section .service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-section .service-card.featured .service-title {
    color: white;
    font-size: 2rem;
}

.services-section .service-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.services-section .service-card.featured .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.services-section .read-more {
    color: #b8860b;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.services-section .service-card.featured .read-more {
    color: white;
}

.services-section .read-more:hover {
    transform: translateX(5px);
}

.services-section .read-more::after {
    content: "Ã¢â€ â€™";
    transition: transform 0.3s ease;
}

.services-section .read-more:hover::after {
    transform: translateX(3px);
}

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

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



.services-section .service-card:hover {
    background: #9e6826;
    color: white;
    animation-delay: 0.1s;
}

.services-section .service-card:hover svg path {
    stroke: #fff;
}

.services-section .service-card:hover .service-title {
    color: white;
    font-size: 2rem;
}

.services-section .service-card:hover .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.services-section .service-card .read-more {
    transform: translateY(60px);
}

.services-section .service-card:hover a.read-more {
    transform: translateY(0px);
    color: #fff;
}

.services-section .service-card:hover svg.service-icon {
    display: none;
}

.services-section .service-card.featured .read-more {
    transform: unset;
}



.carpenter-section {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    color: white;
    overflow: hidden;
}

.carpenter-section .carpenter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(101, 67, 33, 0.1) 0%, rgba(139, 95, 51, 0.2) 100%);
    animation: backgroundShift 15s ease-in-out infinite;
}

@keyframes backgroundShift {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.6;
    }
}

.carpenter-section .container {
    max-width: 50%;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-right: 0px;
    padding-left: 0px;
    margin: unset;
    padding: 50px 60px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carpenter-section .image-side {
    position: relative;
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 1.2s ease-out 0.3s forwards;
    width: 50%;
}

.carpenter-section .image-placeholder {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.carpenter-section .image-placeholder:hover {}

.carpenter-section .image-placeholder::before {}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
}

.carpenter-section .content-side {
    opacity: 0;
    transform: translateX(100px);
    animation: slideInRight 1.2s ease-out 0.5s forwards;
}

.section-label {
    color: #d4af37;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.carpenter-section .section-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    animation: underlineGrow 1s ease-out 1.5s forwards;
}

@keyframes underlineGrow {
    to {
        width: 100%;
    }
}

.carpenter-section .main-title {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carpenter-section .description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    /* margin-bottom: 50px; */
    max-width: 500px;
}

.carpenter-section .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.carpenter-section .stat-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    display: flex;
    gap: 0px 12px;
}

.carpenter-section .stat-item:nth-child(1) {
    animation-delay: 2s;
}

.carpenter-section .stat-item:nth-child(2) {
    animation-delay: 2.2s;
}

.carpenter-section .stat-item:nth-child(3) {
    animation-delay: 2.4s;
}

.carpenter-section .stat-item:nth-child(4) {
    animation-delay: 2.6s;
}

.carpenter-section .stat-icon {
    width: 91px;
    height: 43px;
    margin-bottom: 15px;
    background: #d4af37;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 26px;
}

.carpenter-section .stat-item:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
    background: #ffd700;
}

.carpenter-section .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    flex-direction: column;
    align-items: start;
}

.carpenter-section .stat-number .plus {
    font-size: 35px;
    color: #ffffff;
    margin-left: 5px;
}

.carpenter-section .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.carpenter-section .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.carpenter-section .floating-element {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.carpenter-section .floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.carpenter-section .floating-element:nth-child(2) {
    top: 50%;
    left: 80%;
    animation-delay: 2s;
}

.carpenter-section .floating-element:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.carpenter-section .floating-element:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

section.services-section {
    padding: 30px 0px;
    position: relative;
}

section.services-section .image-placeholder img {
    width: 100%;
    height: 100%;
}

.carpenter-section .container:before {
    content: "";
    position: absolute;
    background: #422606e0;
    width: 100%;
    height: 100%;
}

section.services-section:before {
    background: url(https://fse.jegtheme.com/woodzone/wp-content/uploads/sites/19/2024/11/apptrn.webp);
    background-position: center center;
    background-size: 80%;
    opacity: 0.04;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}





.services-container {
    padding: 3rem 0px;
}




.services-container .bottom-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.services-container .service-card {
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.services-container .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.8), rgba(160, 82, 45, 0.9));
    transition: all 0.4s ease;
    z-index: 1;
    /* opacity: 0; */
    height: 100%;
    transition: 0.5s ease;
    transform: translateY(-100%);
}

.services-container .service-card:hover::before {
    background: linear-gradient(135deg, rgb(218 165 32 / 34%), rgb(139 69 19 / 66%));
    transform: translateY(0%);
}

.services-container .service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.services-container .card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: auto;
    background-position: center;
    transition: transform 0.4s ease;
}

.services-container .service-card:hover .card-background {
    transform: scale(1.1);
}

.services-container .card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    width: 100%;
    transform: translateY(-150%);
}

.services-container .card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    transform: translateY(10px);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.services-container .service-card:hover .card-title {
    transform: translateY(0);
    opacity: 1;
}

.services-container .card-description {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.services-container .service-card:hover .card-description {
    transform: translateY(0);
    opacity: 1;
    color: #fff;
}

/* Background images for each card */
.services-container .wood-custom-1 {}

.services-container .home-renovation {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAwIiBoZWlnaHQ9IjMwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZGVmcz4KICAgIDxwYXR0ZXJuIGlkPSJoYW1tZXIiIHg9IjAiIHk9IjAiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgIDxyZWN0IHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgZmlsbD0iI0M5OUE2QiIvPgogICAgICA8Y2lyY2xlIGN4PSIzMCIgY3k9IjMwIiByPSI4IiBmaWxsPSIjOEI0NTEzIiBvcGFjaXR5PSIwLjQiLz4KICAgIDwvcGF0dGVybj4KICA8L2RlZnM+CiAgPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNoYW1tZXIpIi8+Cjwvc3ZnPg==');
}

.services-container .wood-custom-2 {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAwIiBoZWlnaHQ9IjMwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZGVmcz4KICAgIDxwYXR0ZXJuIGlkPSJzYXciIHg9IjAiIHk9IjAiIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgIDxyZWN0IHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgZmlsbD0iI0RBQTUyMCIvPgogICAgICA8cG9seWdvbiBwb2ludHM9IjI1LDEwIDM1LDIwIDI1LDMwIDE1LDIwIiBmaWxsPSIjODM0NTEzIiBvcGFjaXR5PSIwLjUiLz4KICAgIDwvcGF0dGVybj4KICA8L2RlZnM+CiAgPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNzYXcpIi8+Cjwvc3ZnPg==');
}

.services-container .finish-carpentry {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAwIiBoZWlnaHQ9IjMwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZGVmcz4KICAgIDxwYXR0ZXJuIGlkPSJjYXJwZW50cnkiIHg9IjAiIHk9IjAiIHdpZHRoPSI0NSIgaGVpZ2h0PSI0NSIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgIDxyZWN0IHdpZHRoPSI0NSIgaGVpZ2h0PSI0NSIgZmlsbD0iI0NEQTU0RCIvPgogICAgICA8cmVjdCB4PSIxMCIgeT0iMTAiIHdpZHRoPSIyNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOEI0NTEzIiBvcGFjaXR5PSIwLjQiLz4KICAgICAgPHJlY3QgeD0iMTAiIHk9IjMwIiB3aWR0aD0iMjUiIGhlaWdodD0iNSIgZmlsbD0iIzhCNDUxMyIgb3BhY2l0eT0iMC40Ii8+CiAgICA8L3BhdHRlcm4+CiAgPC9kZWZzPgogIDxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjY2FycGVudHJ5KSIvPgo8L3N2Zz4=');
}

.services-container .wood-product {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAwIiBoZWlnaHQ9IjMwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZGVmcz4KICAgIDxwYXR0ZXJuIGlkPSJwcm9kdWN0IiB4PSIwIiB5PSIwIiB3aWR0aD0iNTUiIGhlaWdodD0iNTUiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPgogICAgICA8cmVjdCB3aWR0aD0iNTUiIGhlaWdodD0iNTUiIGZpbGw9IiNCNzkyNTYiLz4KICAgICAgPGNpcmNsZSBjeD0iMjcuNSIgY3k9IjI3LjUiIHI9IjEyIiBmaWxsPSIjOEI0NTEzIiBvcGFjaXR5PSIwLjMiLz4KICAgIDwvcGF0dGVybj4KICA8L2RlZnM+CiAgPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwcm9kdWN0KSIvPgo8L3N2Zz4=');
}

.services-container .wooden-flooring {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAwIiBoZWlnaHQ9IjMwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZGVmcz4KICAgIDxwYXR0ZXJuIGlkPSJmbG9vcmluZyIgeD0iMCIgeT0iMCIgd2lkdGg9IjgwIiBoZWlnaHQ9IjIwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KICAgICAgPHJlY3Qgd2lkdGg9IjgwIiBoZWlnaHQ9IjIwIiBmaWxsPSIjRDBBMjUwIi8+CiAgICAgIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSI3OCIgaGVpZ2h0PSIxOCIgZmlsbD0iI0JBOEMzRCIgb3BhY2l0eT0iMC42Ii8+CiAgICAgIDxsaW5lIHgxPSI3OCIgeTE9IjAiIHgyPSI3OCIgeTI9IjIwIiBzdHJva2U9IiM4QjQ1MTMiIHN0cm9rZS13aWR0aD0iMiIgb3BhY2l0eT0iMC40Ii8+CiAgICA8L3BhdHRlcm4+CiAgPC9kZWZzPgogIDxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZmxvb3JpbmcpIi8+Cjwvc3ZnPg==');
}

.services-container .wood-custom-3 {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAwIiBoZWlnaHQ9IjMwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZGVmcz4KICAgIDxwYXR0ZXJuIGlkPSJjdXN0b20zIiB4PSIwIiB5PSIwIiB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPgogICAgICA8cmVjdCB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIGZpbGw9IiNDRDk3NkIiLz4KICAgICAgPHBvbHlnb24gcG9pbnRzPSIzMCw1IDQ1LDI1IDMwLDQ1IDE1LDI1IiBmaWxsPSIjOEI0NTEzIiBvcGFjaXR5PSIwLjM1Ii8+CiAgICA8L3BhdHRlcm4+CiAgPC9kZWZzPgogIDxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjY3VzdG9tMykiLz4KPC9zdmc+');
}

/* Loading animation */
.services-container .service-card {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.service-card:nth-child(7) {
    animation-delay: 0.7s;
}

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

.services-container .container {}

.hedding-servicers {
    text-align: center;
    width: 42%;
    margin: 0 auto;
    padding-bottom: 20px;
}

.services-container .service-card:hover .card-content {
    transform: translateY(0%);
}




.box-latest .testimonial-section {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.box-latest .quote-icon {
    width: 60px;
    height: 60px;
    background-color: #b8860b;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.box-latest .quote-icon::before {
    content: '"';
    font-size: 28px;
    color: white;
    font-weight: bold;
    line-height: 1;
}

.box-latest .client-count {
    font-size: 12px;
    font-weight: 600;
    color: #b8860b;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.box-latest .testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #888;
    font-style: italic;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.box-latest .client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.box-latest .client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-image: url(https://fse.jegtheme.com/woodzone/wp-content/uploads/sites/19/2024/11/testimonial-three.webp);
    background-size: cover;
    background-position: center;
}

.box-latest .client-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.box-latest .client-title {
    font-size: 14px;
    color: #888;
    font-weight: 400;
}



.box-latest section.box-latest {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.box-latest section.box-latest:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    top: 0;
    background: url(https://fse.jegtheme.com/woodzone/wp-content/uploads/sites/19/2024/11/apptrn.webp);
}

section.box-latest {
    position: relative;
}

section.box-latest:before {
    content: "";
    background: url(https://fse.jegtheme.com/woodzone/wp-content/uploads/sites/19/2024/11/apptrn.webp);
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.03;
}

section.hero-section-tnphutho {
    background: url(https://fse.jegtheme.com/woodzone/wp-content/uploads/sites/19/2024/11/carpenter-working.jpg );
    padding: 57px 0px;
    background-position-y: 20%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

section.hero-section-tnphutho:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0000008a;
    top: 0;
}

section.hero-section-tnphutho .container {
    position: relative;
}

section.hero-section-tnphutho h1 {
    color: #fff;
    font-size: 26px;
}

section.hero-section-tnphutho .hero-content {
    color: #fff;
    width: 53%;
}

section.hero-section-tnphutho .hero-content p {
    color: #fff;
    width: 100%;
}

section.hero-section-tnphutho .cta-button {
    display: inline-block;
    background-color: #B8860B;
    color: white;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    border-radius: 5px;
}

.blog-section {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px 0px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.blog-section .blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-section .blog-tag {
    color: #d4a574;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideInDown 0.8s ease-out 0.3s forwards;
    position: relative;
}

.blog-section .blog-tag::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #d4a574, #c4965a);
    border-radius: 1px;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.blog-section .blog-title {
    font-size: 30px;
    font-weight: 700;
    color: #2c1f17;
    margin-bottom: 12px;
    opacity: 0;
    animation: slideInUp 0.8s ease-out 0.5s forwards;
    line-height: 1.2;
    text-transform: uppercase;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.blog-section .blog-description {
    color: #6c757d;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.7s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.blog-section .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-section .blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeIn 0.8s ease-out forwards;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-section .blog-card:nth-child(1) {
    animation-delay: 0.9s;
}

.blog-section .blog-card:nth-child(2) {
    animation-delay: 1.1s;
}

.blog-section .blog-card:nth-child(3) {
    animation-delay: 1.3s;
}

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

.blog-section .blog-card::before {
    z-index: 1;
}

.blog-section .blog-card:hover::before {
    opacity: 1;
}

.blog-section .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 165, 116, 0.2);
}

.blog-section .card-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    position: relative;
    overflow: hidden;
}

.blog-section .card-image::after {}

.blog-section .blog-card:hover .card-image {
    transform: scale(1.05);
}

.blog-section .blog-card:hover .card-image::after {
    opacity: 0.3;
}

.blog-section .card-content {
    padding: 1rem;
    position: relative;
    z-index: 2;
}

.blog-section .card-title {
    font-size: 19px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 53px;
}

.blog-section .blog-card:hover .card-title {
    color: #d4a574;
}

.blog-section .card-date {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-section .card-excerpt {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-section .read-more {
    display: inline-flex;
    align-items: center;
    color: #2c1f17;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-section .read-more::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4a574, #c4965a);
    transition: width 0.3s ease;
}

.blog-section .read-more:hover::before {
    width: 100%;
}

.blog-section .read-more::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.blog-section .read-more:hover {
    color: #c4965a;
    transform: translateX(3px);
}

.blog-section .read-more:hover::after {
    transform: translateX(3px);
}



.blog-section .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.blog-section .floating-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(212, 165, 116, 0.3);
    border-radius: 50%;
    animation: floatUp 8s infinite linear;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.blog-section .blog-section {
    animation: fadeInUp 1s ease-out, subtlePulse 4s ease-in-out infinite;
}

@keyframes subtlePulse {

    0%,
    100% {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    }

    50% {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    }
}

.blog-section .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-row.thre-thres-products {
    grid-template-columns: 1fr 2fr 1fr;
}







/* detail  */
.details-pages-main {
    /* Modal Styles */
    position: relative;
}

.details-pages-main .product-detail {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.details-pages-main .product-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px;
}

.details-pages-main .product-gallery {
    position: relative;
}

.details-pages-main .main-image {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.details-pages-main .main-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.details-pages-main .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.details-pages-main .main-image:hover img {
    transform: scale(1.05);
}

.details-pages-main .thumbnail-gallery {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    overflow-x: auto;
    padding: 10px 0;
}

.details-pages-main .thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.details-pages-main .thumbnail:hover,
.details-pages-main .thumbnail.active {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.details-pages-main .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-pages-main .product-info {
    display: flex;
    flex-direction: column;
}

.details-pages-main .product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.2;
}

.details-pages-main .price-section {
    margin-bottom: 32px;
}

.details-pages-main .price {
    font-size: 2rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 8px;
}

.details-pages-main .price-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.details-pages-main .product-description {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border-left: 4px solid #3b82f6;
}

.details-pages-main .consult-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.details-pages-main .consult-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.details-pages-main .consult-btn:hover::before {
    left: 100%;
}

.details-pages-main .consult-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.details-pages-main .product-details {
    padding: 60px;
    background: linear-gradient(135deg, #fefefe 0%, #f8fafc 100%);
}

.details-pages-main .details-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.details-pages-main .details-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 2px;
}

.details-pages-main .details-content {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}

.details-pages-main .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.details-pages-main .modal-overlay.active {
    display: flex;
}

.details-pages-main .modal {
    background: white;
    border-radius: 20px;
    padding: 16px;
    max-width: 500px;
    width: 90%;
    max-height: max-content;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s ease;
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%,-50%); */
}

.details-pages-main .modal-overlay.active .modal {
    transform: scale(1);
    opacity: 1;
    z-index: 999999;
    position: relative;
    display: block;
}

.details-pages-main .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.details-pages-main .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
}

.details-pages-main .close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
    transition: color 0.3s ease;
}

.details-pages-main .close-btn:hover {
    color: #dc2626;
}

.details-pages-main .form-group {
    margin-bottom: 24px;
}

.details-pages-main .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.details-pages-main .form-input,
.details-pages-main .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.details-pages-main .form-input:focus,
.details-pages-main .form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.details-pages-main .form-textarea {
    resize: vertical;
    min-height: 100px;
}

.details-pages-main .submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.details-pages-main .submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .details-pages-main .product-header {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }

    .details-pages-main .product-title {
        font-size: 2rem;
    }

    .details-pages-main .price {
        font-size: 1.6rem;
    }

    .details-pages-main .product-details {
        padding: 40px 30px;
    }

    .details-pages-main .modal {
        padding: 30px 20px;
    }
}


/* end details  */

@media (max-width: 768px) {
    .blog-section .blog-section {
        margin: 1rem;
        padding: 2rem 1rem;
    }

    .blog-section .blog-title {
        font-size: 26px;
    }

    .blog-section .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-section .card-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .carpenter-section {
        display: block;
    }

    .carpenter-section .image-side {
        width: 100%;
    }

    .carpenter-section .container {
        max-width: 100%;
        padding: 50px 15px;
    }

    section.hero-section-tnphutho .hero-content p {
        width: 100%;
        font-size: 15px !important;
    }

    .services-container .container {
        grid-template-columns: 1fr;
    }

    .services-container .bottom-row {
        grid-template-columns: repeat(1, 1fr);
    }

    .bottom-row.thre-thres-products {
        grid-template-columns: 1fr;
    }

    .hedding-servicers {
        width: 98%;
    }

    .box-latest .testimonial-section {
        padding: 30px 15px;
    }

    .box-latest .testimonial-text {
        font-size: 16px;
    }

    .box-latest .quote-icon {
        width: 50px;
        height: 50px;
    }

    .box-latest .quote-icon::before {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-container .service-card {
        height: 240px;
    }

    .services-container .card-content {
        padding: 25px;
    }

    .services-container .card-title {
        font-size: 24px;
    }

    .services-container .card-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .carpenter-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .carpenter-section .main-title {
        font-size: 36px;
    }

    .carpenter-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .carpenter-section .image-placeholder {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .services-section .section-heading {
        font-size: 2rem;
    }

    .services-section .services-grid {
        grid-template-columns: 1fr;
    }

    .services-section .service-card.featured {
        grid-row: span 1;
    }
}

@media (max-width: 1024px) {
    .welcom .container {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .welcom .main-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .welcom .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .welcom .founder-section {}

    .welcom .main-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .banner .welcome-text::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .banner .banner {
        height: 100vh;
        align-items: center;
    }

    .banner .content {
        text-align: center;
        max-width: 100%;
    }

    .banner .main-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .banner .description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .banner .container {
        padding: 0 15px;
    }

    .banner .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .welcom .container {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .welcom .main-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .welcom .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .welcom .founder-section {}

    .welcom .main-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .banner .welcome-text::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .banner .banner {
        height: 100vh;
        align-items: center;
    }

    .banner .content {
        text-align: center;
        max-width: 100%;
    }

    .banner .main-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .banner .description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .banner .container {
        padding: 0 15px;
    }

    .banner .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}



.footer {
    background-color: #2c1f17;
    padding: 60px 20px 40px;
    color: #fff;
}

.footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer .footer-section h3 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

.footer .footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #b8860b;
}

.footer .footer-section ul {
    list-style: none;
}

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

.footer .footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer .footer-section ul li a:hover {
    color: #b8860b;
}

.footer .logo-section {
    display: flex;
    flex-direction: column;
}

.footer .logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 16px;
}

.footer .logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.footer .description {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer .social-links {
    display: flex;
    gap: 12px;
}

.footer .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #b8860b;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer .social-link:hover {
    background-color: #daa520;
    transform: translateY(-2px);
}

.footer .work-hours {
    color: #fff;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer .work-hours strong {
    color: #fff;
    display: block;
    margin-bottom: 8px;
}

.footer .call-button {
    background-color: #b8860b;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.footer .call-button:hover {
    background-color: #daa520;
}

.footer .footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer .footer-credits {
    color: #888;
    font-size: 12px;
}

.footer .footer-credits a {
    color: #b8860b;
    text-decoration: none;
}

.footer .footer-credits a:hover {
    text-decoration: underline;
}

.footer .copyright {
    color: #888;
    font-size: 12px;
}

.logo-icon img {
    height: 50px;
}

.blog-pages .tp-blog-grid-title a {
    color: #000 !important;
    font-size: 19px;
}


.blog-pages .tp-blog-grid-content p {
    font-size: 15px;
}

@media (max-width: 1024px) {
    .footer .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .welcom .main-heading {
        margin-left: unset !important;
    }

    .welcom .founder-section {
        flex-wrap: wrap;
    }

    .welcom .more-btn {
        margin-left: 0px;
    }

    .services-container {
        padding-top: 5px;
    }

    .carpenter-section .stat-item {
        display: block;
    }

    section.hero-section-tnphutho .hero-section {
        flex-wrap: wrap;
    }

    section.hero-section-tnphutho .form-container {
        width: 100%;
    }

    .footer .footer {
        padding: 40px 15px 30px;
    }

    .footer .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer .footer-section h3 {
        font-size: 16px;
    }

    .footer .logo-text {
        font-size: 20px;
    }

    .footer .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer .social-links {
        justify-content: center;
    }
}

.feature-item p {
    margin-bottom: 0px;
}

@media (max-width: 480px) {
    .footer .footer {
        padding: 30px 10px 20px;
    }

    .footer .logo {
        justify-content: center;
        text-align: center;
    }

    .footer .description {
        text-align: center;
    }

    .footer .social-links {
        justify-content: center;
    }

    .footer .call-button {
        width: 100%;
        text-align: center;
    }

    .footer .footer-section ul li a {
        font-size: 13px;
    }
}

.tp-slider-full-width .swiper-slide img {
    max-height: 694px;
    height: 694px;
}

.tp-contact-inner {
    box-shadow: unset;
}

.tp-header-top-menu-item ul.tp-setting-list-open {
    z-index: 2;
}

.tp-filter-btn {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.tp-shop-top-select.sort-by .nice-select {
    border-radius: 5px;
}

.tp-shop-top-select .nice-select {
    border-radius: 5px;
}

.tp-shop-top-tab .nav-tabs .nav-item .nav-link.active {
    border-radius: 5px;
}

.tp-shop-top-tab .nav-tabs .nav-item .nav-link {
    border-radius: 5px;
}

.panel-title h3 {
    color: #fff;
    font-size: 23px;
    position: relative;
    margin-bottom: 20px;
}

.panel-title h3:before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #b8860b;
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright p {
    color: #aaa;
}

.footer-copyright p a {
    color: #fff;
}


footer.footer2-tnphutho {
    /* Contact bar at top */
    /* Main footer content */
    /* Left section - Logo and description */
    /* Middle section - Links */
    /* Right section - Newsletter */
    /* Bottom copyright */
    /* Scroll to top button */
    /* Responsive */
}

footer.footer2-tnphutho .footer {
    background: #2c2c2c;
    position: relative;
    overflow: hidden;
}

footer.footer2-tnphutho .contact-bar {
    background: #151419;
    padding: 20px 0;
    border-bottom: 1px solid #444;
}

footer.footer2-tnphutho .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer.footer2-tnphutho .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

footer.footer2-tnphutho .contact-icon {
    color: #ffffff;
    font-size: 16px;
}

footer.footer2-tnphutho .contact-text .label {
    color: #aaa;
    font-size: 16px;
}

footer.footer2-tnphutho .contact-text .value {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

footer.footer2-tnphutho .footer-main {
    padding: 60px 0 0px;
    position: relative;
    background: url(https://dev242.kodesolution.com/techon/wp-content/uploads/2024/04/bg-1.png);
}

footer.footer2-tnphutho .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 51px;
    align-items: start;
}

footer.footer2-tnphutho .footer-left {
    display: flex;
    flex-direction: column;
}

footer.footer2-tnphutho .logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

footer.footer2-tnphutho .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

footer.footer2-tnphutho .logo-dots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

footer.footer2-tnphutho .dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 1px;
}

footer.footer2-tnphutho .company-name {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
}

footer.footer2-tnphutho .description {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

footer.footer2-tnphutho .social-links {
    display: flex;
    gap: 10px;
}

footer.footer2-tnphutho .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

footer.footer2-tnphutho .social-link.twitter {
    background: #1da1f2;
}

footer.footer2-tnphutho .social-link.facebook {
    background: #1877f2;
}

footer.footer2-tnphutho .social-link.linkedin {
    background: #0077b5;
}

footer.footer2-tnphutho .social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

footer.footer2-tnphutho .social-link:hover {
    transform: translateY(-2px);
}

footer.footer2-tnphutho .footer-center {
    display: flex;
    flex-direction: column;
}

footer.footer2-tnphutho .links-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

footer.footer2-tnphutho .links-grid ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 30px;
}

footer.footer2-tnphutho .footer-link {
    color: #aaa;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

footer.footer2-tnphutho .footer-link:hover {
    color: #4a9eff;
}

footer.footer2-tnphutho .footer-right {
    display: flex;
    flex-direction: column;
}

footer.footer2-tnphutho .newsletter-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

footer.footer2-tnphutho .newsletter-subtitle {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 10px;
}

footer.footer2-tnphutho .newsletter-form {
    display: flex;
    gap: 0;
    background: none;
    /* overflow: hidden; */
    border-bottom: 1px solid #FFFFFF1F;
}

footer.footer2-tnphutho .newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none !important;
    background: #ffffff00 !important;
    color: #fff;
    font-size: 14px;
    outline: none;
    width: 100%;
    padding-left: 0px;
}

footer.footer2-tnphutho .newsletter-input::placeholder {
    color: #888;
}

footer.footer2-tnphutho .newsletter-btn {
    padding: 15px 20px;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

footer.footer2-tnphutho .newsletter-btn:hover {
    background: #ffffff24;
}

footer.footer2-tnphutho .footer-bottom {
    border-top: 1px solid #444;
    padding: 10px 0;
    text-align: center;
    margin-top: 30px;
}

footer.footer2-tnphutho .footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer.footer2-tnphutho .copyright {
    color: #888;
    font-size: 14px;
    margin-bottom: 0px;
}

footer.footer2-tnphutho .copyright a {
    color: #4a9eff;
    text-decoration: none;
}

footer.footer2-tnphutho .scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 1000;
}

footer.footer2-tnphutho .scroll-top:hover {
    background: #357abd;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    footer.footer2-tnphutho .contact-container {
        flex-direction: column;
        gap: 15px;
        text-align: left;
        align-items: start;
    }

    footer.footer2-tnphutho .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    footer.footer2-tnphutho .links-grid {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }

    footer.footer2-tnphutho .newsletter-form {
        flex-direction: column;
    }
}

footer.footer2-tnphutho .newsletter-input::placeholder {
    color: #fff;
}

div#email-error {
    position: absolute;

    top: 100%;
}

.newsletter-form-inner {
    position: relative;
}

.has-dropdown:hover>a svg {
    transform: rotate(180deg);
}

.media-overlay {
    display: none !important;
}

.tp-product-details-tab-nav .nav-tabs {
    justify-content: left !important;
    padding-bottom: 0px;
}

.tp-product-details-tab-line {
    left: 0px !important;
    background: none;
}

.tp-product-details-tab-nav .nav-tabs .nav-link {
    padding: 5px 32px;
    color: #fff !important;
    background: #7a4d2d;
}

section.tp-related-product h3.section-title {
    text-transform: uppercase;
    font-size: 26px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

section.tp-related-product h3.section-title:before {}

.slider-products-details .product-card {
    margin: 40px 10px;
}

.media-item.medium p {
    margin-bottom: 0px;
}

.gallery-container p {
    margin-bottom: 0px;
}

.tp-product-details-desc-wrapper {
    padding-top: 20px;
    font-size: 15px;
}

.tp-related-product {
    margin-top: 30px;
}

.tp-product-details-bottom {
    padding-bottom: 20px;
}

.list-products-go .product-image img {
    height: 100%;
    width: 100%;
}

.list-products-go .product-image:hover img {
    transform: scale(1.2);
    transition: 0.5s ease;
}

.list-products-go .product-title:hover {
    color: #7a4d2d;
}

.box-row-abouts .gap-row-pages>div {
    width: 49%;
}

.tp-postbox-details-title {
    font-size: 24px !important;
}

@media(min-width:990px) {
    .container-header-mobile {
        display: none;
    }
}

@media(max-width:990px) {
    .header-container {
        display: none;
    }

    .tp-postbox-details-top h2 {
        font-size: 20px !important;
    }

    .tp-postbox-details-content h2 {
        font-size: 22px !important;
    }

    .tp-postbox-details-content h3 {
        font-size: 20px !important;
    }

    .tp-postbox-details-content h4 {
        font-size: 18px !important;
    }

    .ck-content ul {
        margin-left: 20px;
    }

    footer.footer2-tnphutho .links-grid ul {
        width: 100%;
    }

    footer.footer2-tnphutho .links-grid ul li {
        text-align: left;
    }

    .thuvienha .media-item img {
        height: auto !important;
    }

    .carpenter-section .image-placeholder img {
        margin-top: 0px !important;
    }

    .section-label {
        font-size: 20px !important;
    }

    section.hero-section-tnphutho .hero-content {
        width: 100%;
    }

    section.hero-section-tnphutho .hero-section {
        border-radius: 10px !important;
        padding: 20px 20px !important;
    }

    section.camnhankh.camnhankh-wrapper h2 {
        font-size: 26px;
    }

    .hedding-servicers h2 {
        font-size: 26px;
    }

    .breadcrumb-custum .breadcrumb-minimal {
        flex-wrap: wrap;
    }

    section.hero-section-tnphutho h1 {
        font-size: 21px;
    }

    .tp-slider-full-width .swiper-slide img {
        height: unset;
        max-height: unset;
    }
}


.mobile-menu-items .has-dropdown>.dropdown {
    display: none;
    position: unset;
    background: #fff;
    z-index: 99;
    padding: 10px 0;
    height: 100%;
    max-height: unset !important;
}

.mobile-menu-items .nav-menu.dropdown {
    max-height: 0;
    transition: max-height 0.3s ease;
    padding-left: 30px;
    /* 👈 Thụt vào 30px */
}

.mobile-menu-items .has-dropdown:hover>.dropdown {
    display: block;
}

.mobile-menu-items .nav-menu.level-1 li {
    position: relative;
    list-style: none;
}

.mobile-menu-items .nav-menu.dropdown.level-2 li a {
    padding-left: 20px;
}

.tp-mobile-menu {
    display: none;
}

.tp-instagram-item:hover .tp-instagram-icon {
    width: 90%;
}

.tp-instagram-icon a {
    width: 100%;
}

.contact-form .contact-form-group {
    text-align: center;
}

.tp-postbox-details-content ul {
    padding-left: 20px;
    margin-bottom: 10px;
}


#button-contact-vr {
    bottom: 10px;
    left: 10px;
    margin: -10px;
    transform: scale(0.8);
    margin-bottom: 0px !important;
    position: fixed;
    z-index: 99999;
}

#gom-all-in-one #viber-vr {
    transition: 1.3s all;
    -moz-transition: 1.3s all;
    -webkit-transition: 1.3s all;
}

#button-contact-vr .button-contact {
    position: relative;
    margin-top: -5px;
}

#button-contact-vr .button-contact .phone-vr {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
}

#viber-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196f3;
    background-color: rgba(33, 150, 243, 0.7);
}

.phone-vr-circle-fill {
    width: 65px;
    height: 65px;
    top: 12px;
    left: 12px;
    position: absolute;
    box-shadow: 0 0 0 0 #c31d1d;
    background-color: rgba(230, 8, 8, 0.7);
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom 1.3s infinite;
    animation: zoom 1.3s infinite;
}

#button-contact-vr .button-contact .phone-vr {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
}

.phone-vr-img-circle a {
    display: block;
    line-height: 37px;
}

#phone-vr span {
    position: absolute;
    background: linear-gradient(90deg, rgba(28, 124, 135, 1) 14%, rgba(95, 186, 194, 1) 56%, rgba(161, 161, 161, 1) 95%);
    text-decoration: none;
    color: #fff;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    font-size: 21px;
    line-height: 1.2;
    padding: 10px 12px 10px;
    border-radius: 4px;
    margin-right: 10px;
    width: 168px;
    left: 100%;
    top: 30%;
}

#phone-vr span::before {
    content: "";
    width: 0;
    height: 0;
    border-width: 8px;
    border-style: solid;
    border-color: transparent #1c7c87 transparent transparent;
    position: absolute;
    right: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    -ms-transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.phone-vr-img-circle img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    object-fit: cover;
    width: 40px;
}

#gom-all-in-one #zalo-vr {
    transition: 1s all;
    -moz-transition: 1s all;
    -webkit-transition: 1s all;
}

#button-contact-vr .button-contact {
    position: relative;
    margin-top: -5px;
}

#zalo-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196f3;
    background-color: rgba(33, 150, 243, 0.7);
}

#gom-all-in-one #phone-vr {
    transition: 0.7s all;
    -moz-transition: 0.7s all;
    -webkit-transition: 0.7s all;
}

#phone-vr .phone-vr-circle-fill {
    opacity: 0.7;
    /* box-shadow: 0 0 0 0 #dd2223; */
}

.phone-bar a,
#phone-vr .phone-vr-circle-fill,
#phone-vr .phone-vr-img-circle,
#phone-vr .phone-bar a {
    background-color: #dd2223;
}

.phone-bar a,
#phone-vr .phone-vr-circle-fill,
#phone-vr .phone-vr-img-circle,
#phone-vr .phone-bar a {
    background-color: #dd2223;
}

#phone-vr .phone-vr-circle-fill {
    opacity: 0.7;
    /* box-shadow: 0 0 0 0 #dd2223; */
}

.phone-vr-img-circle {
    background-color: #e60808;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 25px;
    left: 25px;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phone-vr-circle-fill 1s infinite ease-in-out;
}

#zalo-vr .phone-vr-img-circle {
    background-color: #2196F3;
}

#viber-vr .phone-vr-img-circle {
    background-color: #2196f3;
}




@-webkit-keyframes phone-vr-circle-fill {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

@-webkit-keyframes zoom {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes zoom2 {
    0% {
        transform: scale(.9);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes zoom {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

.tp-product-details-sticky-actions {
    display: none;
}

.play-button a {
    position: absolute;
    width: 60px;
    height: 60px;
}

.ck-content ul {
    list-style-type: disc;
    padding-left: 30px;
}

.tp-shop-top-result {
    display: none;
}

/* Cơ bản */
.nav-menu li {
    position: relative;
}

/* Ẩn tất cả dropdown */
.nav-menu .dropdown {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown.level-3 .has-dropdown {
    display: none;
}

/* Hover vào cấp hiện tại thì chỉ hiện dropdown con */
.nav-menu>li:hover>.dropdown.level-2 {
    display: block;
    top: 100%;
    left: 0;
}

.nav-menu .dropdown.level-2>li:hover>.dropdown.level-3 {
    display: block;
    top: 0;
    left: 100%;
}

/* Link trong dropdown */
.nav-menu .dropdown li a {
    color: #333;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    white-space: nowrap;
}

ul.nav-menu.dropdown.level-3 {
    opacity: 0 !important;
}

ul.nav-menu.dropdown.level-2>li:hover .level-3 {
    opacity: 1 !important;
}

.gallery-detail-container {
    /* Kích thước trung bình */
    /* Desktop */
}

.gallery-detail-container .image-gallery {
    height: 100%;
    object-fit: cover;
}

.gallery-detail-container .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    /* nền mờ */
    color: white;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    z-index: 10;
}

.gallery-detail-container .video-play-icon:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
    cursor: pointer;
}

.gallery-detail-container a {
    color: inherit;
    text-decoration: none;
}

.gallery-detail-container a:visited,
.gallery-detail-container a:focus,
.gallery-detail-container a:hover,
.gallery-detail-container a:active {
    color: inherit;
    text-decoration: none;
    outline: none;
}

@media (max-width: 576px) {
    .gallery-detail-container .video-play-icon {
        padding: 5px;
        font-size: 14px;
    }

    .gallery-detail-container a.video-play-icon svg {
        width: 10px;
        height: 10px;
    }
}

@media (min-width: 577px) and (max-width: 991px) {
    .gallery-detail-container .video-play-icon {
        padding: 10px;
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .gallery-detail-container .video-play-icon {
        padding: 12px;
        font-size: 18px;
    }
}
