.gm-widget {
    margin-bottom: 30px;
}

.gm-widget__header,
.gm-widget__footer {
    padding: 5px 15px;
}

.gm-widget__header {
    /*background-color : #3b91f6;*/
    background-color: #7eb208;
}

.gm-widget__header__title {
    font-size: 24px;
    line-height: 40px;
    position: relative;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.gm-widget__body {
    padding: 15px;
    border: solid 1px silver;
    background-color: #ffffff;
}

.gm-widget__body__list {
    margin: 0;
    padding-left: 15px;
    list-style: none;
}

.gm-widget__body__list .label {
    color: #7eb208;
    font-weight: bold;
}

.gm-widget__body__list li {
    margin-bottom: 15px;
}

.gm-widget__body__list li:last-child {
    margin-bottom: 0;
}

.gm-widget__footer {}

/* ======
==================================
   Mobile Menu Styles
   ======================================== */

/* Hamburger button */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
}

.hamburger-btn {
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    transition: color 0.3s ease;
}

.menu-fixed .hamburger-btn {
    color: #333;
}

.hamburger-btn:hover {
    color: var(--primary-color, #7eb208);
}

/* Mobile sidebar overlay */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.banner-contact-nav {
    position: absolute;
    bottom: 0;
}

/* Mobile sidebar header */
.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    margin-top: 16px;
}

.mobile-sidebar-header .logo img {
    max-height: 40px;
    width: auto;
}

.mobile-sidebar-close {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 5px;
    transition: color 0.3s ease;
}

.mobile-sidebar-close:hover {
    color: var(--primary-color, #7eb208);
}

/* Mobile menu navigation */
/* .mobile-sidebar-nav {
    padding: 20px;
} */

.mobile-sidebar-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-sidebar-nav ul li {
    border-bottom: 1px solid #eee;
    padding: 16px 20px;
}

.mobile-sidebar-nav ul li:last-child(:only-child) {
    border-bottom: none;
}

.mobile-sidebar-nav ul li a {
    display: block;
    color: #242424;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-sidebar-nav ul li a:hover {
    color: var(--primary-color, #7eb208);
}

/* Submenu */
.mobile-sidebar-nav ul li ul.sub-menu {
    display: none;

}

.mobile-sidebar-nav ul li.menu-item-has-children>a {
    position: relative;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sidebar-nav ul li.menu-item-has-children>a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.mobile-sidebar-nav ul li.menu-item-has-children.open>a::after {
    transform: rotate(180deg);
}

/* Mobile sidebar footer */
.mobile-sidebar-footer {
    padding: 40px 20px;
    border-top: 1px solid #eee;
}

.mobile-sidebar-footer .btn-one {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-align: center;
    margin-top: unset;
    padding: 10 16px;
    width: 159px;
    height: 44px;
}

/* Body no scroll when sidebar open */
body.mobile-menu-open {
    overflow: hidden;
}

body .header-area .header__main .main-menu ul li.current-menu-item>a,
body .header-area .header__main .main-menu ul li.current-menu-item>a span,
body .header-area .header__main .main-menu ul li.current_page_item>a,
body .header-area .header__main .main-menu ul li.current_page_item>a span,
body .header-area .header__main .main-menu ul li.current-menu-ancestor>a,
body .header-area .header__main .main-menu ul li.current-menu-ancestor>a span,
body .header-area .header__main .main-menu ul li.current-menu-parent>a,
body .header-area .header__main .main-menu ul li.current-menu-parent>a span,
body .header-area.menu-fixed .header__main .main-menu ul li.current-menu-item>a,
body .header-area.menu-fixed .header__main .main-menu ul li.current-menu-item>a span,
body .header-area.menu-fixed .header__main .main-menu ul li.current_page_item>a,
body .header-area.menu-fixed .header__main .main-menu ul li.current_page_item>a span,
body .header-area.menu-fixed .header__main .main-menu ul li.current-menu-ancestor>a,
body .header-area.menu-fixed .header__main .main-menu ul li.current-menu-ancestor>a span,
body .header-area.menu-fixed .header__main .main-menu ul li.current-menu-parent>a,
body .header-area.menu-fixed .header__main .main-menu ul li.current-menu-parent>a span {
    color: #C32423 !important;
}

body .header-area .header__main .main-menu ul li.current-menu-item,
body .header-area .header__main .main-menu ul li.current_page_item,
body .header-area .header__main .main-menu ul li.current-menu-ancestor,
body .header-area .header__main .main-menu ul li.current-menu-parent {
    border-bottom: 1.5px solid #C32423;
}

body .header-area .header__main .main-menu ul li:hover>a,
body .header-area .header__main .main-menu ul li:hover>a span,
body .header-area.menu-fixed .header__main .main-menu ul li:hover>a,
body .header-area.menu-fixed .header__main .main-menu ul li:hover>a span {
    color: #C32423 !important;
}

body .header-area .header__main .main-menu ul li:hover {
    border-bottom: 1.5px solid #C32423;
}

.team-grid .team:not(.team--full) .team-image img {
    transition: transform 500ms ease;
}

.team-grid .team:not(.team--full):hover .team-image img {
    transform: scale(1.03);
}

.team-grid .team:not(.team--full)::before {
    transition: opacity 500ms ease;
}

.team-grid .team:not(.team--full):hover::before {
    opacity: 1;
}



/* ========================================
   Mobile Header Actions (Search, Lang, Hamburger)
   ======================================== */

.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-header-actions .search-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-header-actions .search-link img {
    width: 24px;
    height: 24px;
}

/* Language switcher trong mobile header */
.mobile-header-actions .custom-lang-switcher {
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.menu-fixed .mobile-header-actions .custom-lang-switcher {
    border: 1px solid #DEDFE0;
}

/* Hamburger button style */
.mobile-header-actions .hamburger-btn {
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-fixed .mobile-header-actions .hamburger-btn {
    color: #242424;
}

.mobile-header-actions .hamburger-btn:hover {
    color: var(--primary-color, #C32423);
}

/*Menu*/
@media (min-width: 768px) and (max-width: 1439px) {
    .header-area.menu-fixed {
        padding: 16px;
    }

    .mobile-header-actions {
        gap: 16px;
    }

    .menu-fixed .mobile-header-actions .hamburger-btn {
        width: 24px;
        height: 24px;
    }

    .lang-dropdown {
        top: 43px;
        left: -47px;
    }
}

@media (max-width:767px) {
    .lang-dropdown {
        top: 43px;
        left: -51px;
    }
}

@media (max-width:767px) {
    .header-area {
        max-height: 64px;
        padding: 0 16px;
    }

    .header__main {
        padding: 16px 0;
    }

    .header-area .logo {
        width: 94px;
        height: 32px;
        margin: unset;
    }

    .mobile-header-actions {
        margin: 4px 0;
    }

    .mobile-header-actions .hamburger-btn {
        width: 24px;
        height: 24px;
    }

    .banner__content {
        padding: 0 16px;
        margin: 180px 0 116px 0;
    }

    .banner__content h1 {
        font-size: 28px;
    }

    .banner__content p {
        font-size: 15px;
        line-height: 150%;
        letter-spacing: 0;
        font-weight: 400;
    }

    .btn-explore {
        font-size: 15px;
    }

    .download-info a {
        font-size: 15px;
    }

    .banner-inf {
        padding: 0 16px;
        padding-bottom: 64px;
    }

    .banner-contact {
        flex-direction: column;
        gap: 20px;
    }

    .container-cf {
        margin: 0 16px;
        padding: 48px 0;
    }

    .container-cf .container {
        gap: 16px;
    }

    .container-cf .container .inner {
        position: relative;
        z-index: 1;
    }

    .bg-decor {
        width: 300px;
        height: 115px;
        z-index: 0;
        top: -20px;
    }

    .service-content {
        flex-direction: column;
    }

    .container-cf .integrio_module_services_5 {
        height: auto;
    }

    .container-cf .d-flex.gap-12 {
        align-items: stretch !important;
    }

    .container-cf .services_wrapper {
        width: 100%;
        padding: 12px;
        min-height: 160px;
    }

    .services_wrapper-content {
        width: 100%;
    }

    .cf-title-service {
        flex-direction: unset;
        align-items: center;
    }

    .page-home .integrio_module_services_5 .services_content {
        display: block !important;
        opacity: 1 !important;
    }

    .cf-title-service-icon {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

    .services_wrapper-content .services_title {
        font-size: 16px;
    }

    .home_reason_container {
        padding-bottom: 48px;
    }

    .container-grid-10 {
        padding: 0 16px;
    }

    .title-content {
        font-size: 15px;
    }

    .text-subtitle {
        font-size: 20px;
    }

    .home_reason_subtitle {
        flex-direction: column;
        gap: 20px;
    }

    /* 
    .banner-download {
        max-width: unset;
        margin-top: 12px;
    }

    .download-info a::after {
        margin-top: unset;
        margin-left: 127px;
    } */

    .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper {
        margin-top: 24px;
        flex-direction: column;
    }

    .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info {
        width: auto;
        gap: 12px;
    }

    .item-info-content {
        padding: 12px;
    }

    .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info .sub-description {
        font-size: 16px;
        line-height: 150%;
        font-weight: 600;
        letter-spacing: 0;
        color: #242424;
    }

    .item-info-image {
        height: 88px;
    }

    .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info .number {
        font-size: 40px;
        margin: unset;
    }

    .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info .plus::after {
        font-size: 40px;
    }

    .skill-content {
        padding: 16px;
        flex-direction: column;
        height: 189px;
    }

    .bg-skill-title {
        height: 189px;
    }

    .text-white-skill {
        font-size: 18px;
        text-align: left;
    }

    .btn-one {
        margin-top: 16px;
        width: 158px;
        height: 40px;
    }

    .skill-grid {
        display: flex;
        flex-direction: column;
        width: auto;
    }

    .skill-container {
        max-width: unset !important;
        margin: unset !important;
        padding: 0 16px;
    }

    .row-skill-item {
        width: auto;
    }

    .offer__item {
        min-height: 154px;
        padding: 12px;
    }

    .offer__icon {
        width: 28px;
        height: 28px;
    }

    .wrap-offet__icon {
        min-height: 78px;
        grid-gap: 8px;
    }

    .offer-content p {
        font-size: 16px;
    }

    .br__skill {
        width: 100%;
    }

    .brand-area.industry,
    .testimonial-area {
        padding: 48px 16px 48px 16px;
    }

    .brand__wrp {
        gap: 20px;
    }

    .industry-content {
        gap: 12px;
    }

    .industry-desc {
        font-size: 20px;
    }

    .industry-layout {
        flex-direction: column;
        gap: 20px;
    }

    .industry-image-container {
        order: 2;
        height: 250px;
        flex: none;
        padding: 12px;
    }

    .industry-list-container {
        order: 1;
        gap: 10px;
    }

    .industry-sub-item {
        padding: 10px 0 10px 12px;
    }

    .industry-description {
        display: none;
    }

    .industry-view-detail {
        bottom: unset;
        top: 12px;
        left: 12px;
        font-size: 14px;
    }

    .process-area {
        margin: unset;
        padding: 0 16px;
    }

    .section-header {
        gap: 12px;
    }

    .desc-content {
        font-size: 20px;
    }

    .partner-companies-grid {
        padding: 16px 0;
    }

    .slider-wrap {
        padding: 0 16px !important;
        height: 292.94px;
        overflow: hidden !important;
    }

    .bg-gallery {
        height: 292.94px;
    }

    .container-gallery {
        padding: 0 !important;
        overflow: hidden !important;
    }

    .gallery-layout {
        flex-direction: column;
        gap: 12px;
        overflow: hidden !important;
    }

    .gallery-main-image {
        width: 100%;
        flex: none;
        height: 192.94px;
    }

    .gallery-thumbnail-grid {
        height: auto !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 !important;
        margin: 0 !important;
        grid-template-columns: unset !important;
        grid-auto-rows: unset !important;
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        overscroll-behavior-x: contain !important;
        overscroll-behavior-y: auto !important;
    }

    .gallery-thumbnail-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-thumbnail-item {
        width: 79.75px !important;
        min-width: 79.75px !important;
        height: 56px !important;
        flex-shrink: 0 !important;
        aspect-ratio: unset !important;
    }


    /* Success Stories - Horizontal Scroll */
    .brand__slider {
        overflow: visible !important;
    }

    .sc_success_items {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 12px !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 !important;
        margin: 0 !important;
        overscroll-behavior-x: contain !important;
        overscroll-behavior-y: auto !important;
    }

    .sc_success_items::-webkit-scrollbar {
        display: none;
    }

    .sc_success_item {
        width: 280px !important;
        min-width: 280px !important;
        height: auto !important;
        padding: 10px !important;
        gap: 16px;
        flex-shrink: 0 !important;
    }

    .testimonial__arry-btn {
        display: none;
    }

    .home_achievement_container {
        margin-bottom: 48px !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .home_achievement_container .container {
        padding: 0 !important;
        max-width: 100% !important;
        overflow: visible !important;
        align-items: unset !important;
        padding: 0 16px !important;
    }

    .testimonial__item {
        padding: unset;
    }

    /* Achievement List - Horizontal Scroll */
    .home_achievement_container .ar-list-items {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 12px !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
        overscroll-behavior-x: contain !important;
        overscroll-behavior-y: auto !important;
    }

    .home_achievement_container .ar-list-items::-webkit-scrollbar {
        display: none !important;
    }

    .home_achievement_container .ar-item {
        flex-shrink: 0 !important;
        width: auto !important;
        min-width: auto !important;
    }

    .home_achievement_container .ar-item img {
        width: 100px !important;
        height: auto !important;
    }

    /*footer*/
    .footer-area {
        padding: 24px 16px;
        gap: 48px;
        flex-direction: column;
    }

    .footer__wrp {
        gap: 28px;
    }

    .logo {
        width: 141px;
        height: 48px;
    }

    .talk-us__item {
        width: auto;
    }

    .wpcf7-form {
        max-width: unset;
    }

    .component-1 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__item.contact-us {
        grid-column: 1 / -1;
    }

    .footer__wrp .component-3 {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    /*Service- It Consulting*/
    .section-header.service {
        gap: 12px;
    }

    .sc_service_items {
        gap: 12px;
    }

    .sc_service_items {
        gap: 12px;
        flex-wrap: unset;
        flex-direction: column;
    }

    .sc_service_item {
        min-width: 343px !important;
        max-height: 292px !important;
    }

    .service__title p {
        font-size: 16px;
        font-weight: 600;
    }

    .service__desc {
        font-size: 14px;
    }

    .case__image {
        width: 100%;
        height: 120px;
    }

    .process {
        padding: 0 16px;
    }

    .sec-title {
        gap: 16px;
        align-items: unset !important;
    }

    .process-right-container {
        margin-top: 20px;
        display: flex;
        gap: 20px;
    }

    .process .process-right {
        flex-direction: column;
        gap: 46px;
        width: fit-content;
    }

    .process .process__items {
        flex-direction: unset;
        gap: 70px;
        min-width: unset;
        max-width: unset;
    }

    .process .process-line {
        height: 1px;
        transform: rotate(-90deg);
        margin-top: 0;
        min-width: 68px;
        margin-left: -5px;
    }

    .dotted-line {
        transform: rotate(-90deg);
        width: 0;
        height: 68px;
    }

    .faq-area-container.pt-110 {
        padding: 48px 16px !important;
    }

    .section-area {
        gap: 16px;
    }

    .faq__content {
        flex-direction: column;
        align-items: unset;
        gap: unset;
    }

    .faq-img {
        max-width: 100%;
        overflow: hidden;
        width: auto;
        min-width: 0;
    }

    .faq-bg {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .faq-wrapper {
        width: 100%;
    }

    .faq-wrapper .faq-content {
        padding: 12px;
        gap: 12px;
        width: auto;
        min-height: auto;
    }

    .faq-content .swiper-slide p {
        font-size: 15px;
    }

    /*Product*/
    .faq-area {
        padding: 48px 16px;
    }

    .method-area .d-flex.gap-32 {
        flex-direction: column;
        gap: 24px;
    }

    .method-img {
        order: 2;
    }

    .method-content {
        order: 1;
    }

    h2.accordion-header {
        padding: 8px 0;
        padding-left: 12px;
    }

    .method-area .accordion .accordion-item {
        margin-bottom: 10px;
    }

    .method-area .accordion .accordion-item h2 button {
        font-weight: 600;
    }

    .case-area {
        padding: 0 16px;
    }

    .services-grid {
        display: grid;
        gap: 12px;
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item {
        gap: unset;
    }

    .service-item__title {
        padding: 6px 8px;
        font-size: 15px;
    }

    .service-item__desc {
        font-size: 15px;
    }

    .area-container {
        padding: 48px 16px 0 16px !important;
        padding-bottom: unset !important;
    }

    /*Industry*/
    .main-feature.vission-mission {
        margin: unset;
    }

    .vission-mission-header {
        padding: 20px 16px !important;
        flex-direction: column;
        gap: 40px;
    }

    .vision-mission-title {
        font-size: 20px;
    }

    .vission-mission .ct-image {
        width: 100% !important;
        border-radius: 12px;
    }

    .key-feature {
        margin-top: unset !important;
        margin-bottom: unset !important;
        padding: 48px 16px;
    }

    .feature-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .services_title {
        font-weight: 600 !important;
    }

    .learn__more__container {
        padding: 20px 16px;
    }

    .learn__more__content {
        flex-direction: column;
        gap: 24px;
        align-items: unset;
    }

    .learn__more__content h2 {
        padding: unset !important;
        font-size: 20px !important;
        font-weight: 700 !important;
    }

    .learn__more__content a {
        margin-top: unset !important;
    }

    .why-us {
        margin-top: unset !important;
        margin-bottom: unset !important;
        padding: 48px 16px;
    }

    .why__container {
        flex-direction: column;
    }

    .field__item--wrap {
        gap: 12px;
    }

    .field__content h3 {
        font-weight: 600 !important;
    }

    .package_solution {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .package_solution .process__item {
        margin-bottom: unset;
        padding: unset !important;
    }

    /*About us*/
    .vission-mission-about-us {
        padding: 112px 16px 0 16px;
    }

    .vision-mission-container {
        align-items: stretch;
        flex-direction: column;
        gap: 32px;
    }

    .vision-mission-content {
        margin-right: unset !important;
        flex: 1;
        max-width: unset !important;
    }

    .ct-text .desc-content {
        margin-top: 20px;
    }

    .text-desc {
        font-size: 15px;
    }

    .about_us_img {
        width: 100%;
        height: 100%;
    }

    .component_reason {
        padding: 48px 0;
    }

    .vission_mission_item {
        flex-direction: column;
    }

    .core-value {
        padding: 0 16px;
    }

    .mission__left,
    .mission_right {
        padding: 32px 16px;
    }

    .mission__left img,
    .mission_right img {
        z-index: 1;
        top: 0;
        left: 0;
    }

    .mission__left .title,
    .mission_right .title {
        position: relative;
        z-index: 2;
        margin-top: unset !important;
        padding: 12px 16px;
        font-size: 20px;
    }

    .mission__left .description,
    .mission_right .description {
        margin: unset;
        margin-top: 20px;
        font-size: 15px;
    }

    .service-area {
        padding: 48px 16px 0 16px;
    }

    .service_area_items {
        display: grid !important;
        gap: 12px;
        grid-template-columns: repeat(2, 1fr);
        overflow: hidden;
    }

    .page-about .service__item {
        max-height: 180px;
        padding: 12px;
    }

    .service__item .service__icon img {
        margin-top: 52px;
    }

    .service__item h4 a {
        margin-top: 16px;
    }

    .team-area {
        padding: 48px 16px 0 16px;
    }
}

@media (min-width: 768px) and (max-width: 1439px) {
    .header-area {
        padding: 16px 24px;
        max-height: 64px;
    }

    .header__main {
        max-height: 64px;
    }

    .header-area .logo {
        width: 94px;
        height: 32px;
        margin: unset;
    }

    .mobile-header-actions .hamburger-btn {
        font-size: 22px;
    }

    .banner__content,
    .banner-two__content,
    .banner-three__content {
        margin: 395px 0 331px 0;
        padding: 0 64px 0 24px;
    }

    .banner-inf {
        padding: 0 64px 0 24px;
    }

    .title-content {
        font-size: 15px;
        font-weight: 500;
    }

    .banner__content h1 {
        font-size: 28px;
    }

    .banner__content p {
        font-size: 16px;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 0;
    }

    .btn-explore {
        padding: 8px 18px;
    }

    .download-info a {
        font-size: 15px;
    }

    .banner-contact {
        gap: 24px;
    }

    .container-cf {
        padding: 48px 24px;
    }

    .container-cf .container {
        gap: 16px;
    }

    .container-cf .container .inner {
        position: relative;
        z-index: 1;
    }

    .bg-decor {
        width: 300px;
        height: 115px;
        z-index: 0;
        top: -20px;
    }

    .container-cf .integrio_module_services_5 {
        height: auto;
    }

    .container-cf .d-flex.gap-12 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
    }

    .container-cf .services_wrapper {
        padding: 12px;
        min-height: 160px;
    }

    .services_wrapper-content {
        width: 100%;
    }

    .cf-title-service {
        flex-direction: unset;
        align-items: center;
    }

    .page-home .integrio_module_services_5 .services_content {
        display: block !important;
        opacity: 1 !important;
    }

    .cf-title-service-icon {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

    .services_wrapper-content .services_title {
        font-size: 16px;
    }

    .container-grid-10 {
        padding: 0 24px;
    }

    .title-content {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .text-subtitle {
        font-size: 20px;
    }

    .list-icon-info-wrapper {
        gap: 12px;
    }

    .item-info-content {
        padding: 12px;
    }

    .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info .sub-description {
        font-size: 15px;
    }

    .item-info-image {
        height: 88px;
    }

    .reasons-with-us-wrapper .reasons-with-us .list-icon-info-wrapper .item-info .number {
        font-size: 40px;
    }

    .skill-content {
        padding: 16px 24px;
        flex-direction: column;
        height: 162px;
    }

    .skill-content .section-header {
        gap: unset !important;
    }

    .skill-content .d-content {
        display: unset !important;
    }

    .home_reason_container {
        padding-bottom: 48px;
    }

    .bg-skill-title {
        height: 162px;
    }

    .text-white-skill {
        font-size: 18px;
        text-align: left;
    }

    .btn-one {
        margin-top: 16px;
        width: 158px;
        height: 40px;
        padding: 8px 12px;
    }

    .skill-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: auto;
    }

    .skill-container {
        padding: 0 24px;
    }

    .row-skill-item {
        width: auto;
    }

    .offer__item {
        min-height: 154px;
        padding: 12px;
    }

    .offer__icon {
        width: 28px;
        height: 28px;
    }

    .wrap-offet__icon {
        min-height: 78px;
        grid-gap: 8px;
    }

    .offer-content p {
        font-size: 14px;
    }

    .br__skill {
        width: 100%;
    }

    .brand-area.industry,
    .testimonial-area {
        padding: 48px 24px;
    }

    .brand__wrp {
        gap: 20px;
    }

    .industry-content {
        gap: 12px;
    }

    .industry-desc {
        font-size: 20px;
    }

    .industry-layout {
        gap: 20px;
    }

    .industry-description {
        display: none;
    }

    .industry-list-container {
        gap: 10px;
    }

    .industry-sub-item {
        padding: 10px 0 10px 12px;
    }

    .industry-view-detail {
        bottom: unset;
        top: 12px;
        left: 12px;
        font-size: 14px;
    }

    .process-area {
        margin: unset;
        padding: 0 24px;
    }

    .section-header {
        gap: 12px;
    }

    .desc-content {
        font-size: 20px;
    }

    .partner-companies-grid {
        padding: 16px 0;
    }

    .slider-wrap {
        padding: 0 24px !important;
        overflow: hidden !important;
    }

    .container-gallery {
        padding: 0 !important;
        overflow: hidden !important;
    }

    .gallery-layout {
        flex-direction: column;
        gap: 12px;
        overflow: hidden !important;
    }

    .gallery-main-image {
        width: 100%;
        flex: none;
        height: 414px;
    }

    .gallery-thumbnail-grid {
        height: auto !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 !important;
        margin: 0 !important;
        grid-template-columns: unset !important;
        grid-auto-rows: unset !important;
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        overscroll-behavior-x: contain !important;
        overscroll-behavior-y: auto !important;
    }

    .gallery-thumbnail-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-thumbnail-item {
        width: 178px !important;
        min-width: 178px !important;
        height: 56px !important;
        flex-shrink: 0 !important;
        aspect-ratio: unset !important;
    }

    /* Success Stories - Horizontal Scroll */
    .brand__slider {
        overflow: visible !important;
    }

    .sc_success_items {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 12px !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 !important;
        margin: 0 !important;
        overscroll-behavior-x: contain !important;
        overscroll-behavior-y: auto !important;
    }

    .sc_success_items::-webkit-scrollbar {
        display: none;
    }

    .sc_success_item {
        width: 320px !important;
        min-width: 320px !important;
        height: auto !important;
        padding: 10px !important;
        gap: 16px;
        flex-shrink: 0 !important;
        min-height: 433px !important;
    }

    .testimonial__arry-btn {
        display: none;
    }

    .home_achievement_container {
        margin-bottom: 48px !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .home_achievement_container .container {
        padding: 0 !important;
        max-width: 100% !important;
        overflow: visible !important;
        align-items: unset !important;
        padding: 0 24px !important;
    }

    .testimonial__item {
        padding: unset;
    }

    .home_achievement_container .ar-list-items {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 32px !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
        overscroll-behavior-x: contain !important;
        overscroll-behavior-y: auto !important;
    }

    .home_achievement_container .ar-list-items::-webkit-scrollbar {
        display: none !important;
    }

    .home_achievement_container .ar-item {
        flex-shrink: 0 !important;
        width: auto !important;
        min-width: auto !important;
    }

    .home_achievement_container .ar-item img {
        width: 100px !important;
        height: auto !important;
    }

    /*footer*/
    .footer-area {
        padding: 24px;
        gap: 48px;
        flex-direction: column;
    }

    .footer__wrp {
        gap: 28px;
    }

    .logo {
        width: 141px;
        height: 48px;
    }

    .talk-us__item {
        width: auto;
        padding: 20px;
    }

    .wpcf7-form {
        max-width: unset;
    }

    .component-1 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__item.contact-us {
        grid-column: 1 / -1;
    }

    .footer__wrp .component-3 {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    /*Service- It Consulting*/
    .wpb_wrapper {
        gap: 12px;
    }

    .sc_service_items {
        display: grid;
        gap: 16px;
        grid-template-columns: repeat(2, 1fr);
    }

    .sc_service_item {
        min-width: 352px;
        min-height: 352px;
        max-height: 352px;
        width: auto !important;
    }

    .service__desc {
        font-size: 16px;
    }

    .case__image {
        width: 100% !important;
        height: auto !important;
    }

    .process {
        padding: 0 24px;
    }

    .sec-title {
        gap: 16px;
    }

    .process-right-container {
        margin-top: 20px;
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .process .process-right {
        flex-direction: column;
        gap: 46px;
        width: fit-content;
    }

    .process .process__items {
        flex-direction: unset;
        gap: 70px;
        min-width: unset;
        max-width: unset;
    }

    .process .process-line {
        height: 1px;
        transform: rotate(-90deg);
        margin-top: 0;
        min-width: 68px;
        margin-left: -5px;
    }

    .dotted-line {
        transform: rotate(-90deg);
        width: 0;
        height: 68px;
    }

    .faq-area-container.pt-110 {
        padding: 48px 24px !important;
    }

    .section-area {
        gap: 16px;
    }

    .faq__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        align-items: stretch;
    }

    .faq-img {
        max-width: 100%;
        overflow: hidden;
        width: auto;
        min-width: 0;
    }

    /* .faq__content > * {
        min-width: 0;
    } */

    .faq-bg {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .faq-wrapper .faq-content {
        padding: 20px 0;
        gap: 12px;
        width: auto;
    }

    /*Product*/

    .faq-area {
        padding: 48px 24px;
    }

    .method-area .d-flex.gap-32 {
        gap: 24px;
    }

    .method-area .accordion .accordion-item {
        margin-bottom: 10px;
    }

    .case-area {
        padding: 0 24px;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item {
        gap: unset;
    }

    .service-item__title {
        padding: 6px 20px 6px 12px;
    }

    .area-container {
        padding: 48px 24px 0 24px !important;
        padding-bottom: unset !important;
    }

    /*Industry*/
    .main-feature.vission-mission {
        margin: unset;
    }

    .vission-mission-header {
        padding: 20px 24px !important;
        flex-direction: column;
        gap: 40px;
    }

    .vision-mission-title {
        font-size: 20px;
    }

    .vission-mission .ct-image {
        width: 100% !important;
        border-radius: 8px;
    }

    .key-feature {
        margin-top: unset !important;
        margin-bottom: unset !important;
        padding: 48px 24px;
    }

    .key-feature .section-header {
        gap: unset;
    }

    .feature-grid {
        display: flex;
        gap: 12px;
    }

    .feature__item {
        padding: 12px 12px 12px 0;
    }

    .feature__content {
        padding-left: 12px;
    }

    .feature__content img {
        width: 20px;
        height: 20px;
    }

    .services_title {
        font-size: 16px !important;
        font-weight: 600 !important;
    }

    .learn__more__container {
        padding: 40px 32px;
        margin: 0 24px;
        max-width: unset !important;
        width: auto !important;
    }

    .learn__more__content h2 {
        padding: unset !important;
        font-size: 20px !important;
        font-weight: 700 !important;
    }

    .learn__more__content a {
        margin-top: unset !important;
    }

    .why-us {
        margin-top: unset !important;
        margin-bottom: unset !important;
        padding: 48px 24px;
    }

    .why__container {
        gap: 12px;
    }

    .field__item--wrap {
        gap: 12px;
    }

    .field__content {
        gap: 12px;
    }

    .field__item--wrap .icon {
        width: 40px;
        height: 40px;
        padding: 4px;
    }

    .field__content h3 {
        font-size: 16px;
        font-weight: 600 !important;
    }

    .package_solution {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .package_solution_container {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
    }

    .package_solution .process__item {
        margin-bottom: unset;
        padding: unset !important;
    }

    /*About us*/
    .vission-mission-about-us {
        padding: 128px 24px 0 24px;
    }

    .vision-mission-container {
        align-items: stretch;
        gap: 24px;
    }

    .vision-mission-content {
        margin-right: unset !important;
        flex: 1;
        max-width: unset !important;
    }

    .ct-text .desc-content {
        margin-top: unset !important;
    }

    .text-desc {
        margin-top: 8px;
        font-size: 14px;
    }

    .about_us_img {
        flex: 1;
        height: 100%;
    }

    .component_reason {
        padding: 48px 0;
    }

    .mission__left,
    .mission_right {
        padding: 24px;
    }

    .mission__left img,
    .mission_right img {
        z-index: 1;
        top: 0;
        left: 0;
    }

    .mission__left .title,
    .mission_right .title {
        position: relative;
        z-index: 2;
        margin-top: unset !important;
        padding: 10px 16px;
        font-size: 18px;
    }

    .mission__left .description,
    .mission_right .description {
        margin: unset;
        margin-top: 20px;
        font-size: 15px;
    }

    .service-area {
        padding: 48px 24px 0 24px;
    }

    .service_area_items {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
    }

    .core-value {
        padding: 0 24px;
    }

    .page-about .service__item {
        max-height: 200px;
    }

    .service__item h4 a {
        margin-top: 16px;
    }

    .team-area {
        padding: 48px 24px 0 24px;
    }

    .team-grid {
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .team--full {
        padding-bottom: 40px;
        grid-column: 1/ -1;
    }

    .team-grid .team.team--full .team-wrapper {
        padding: 0 20px;
    }

    .team-grid .team.team--full .team-wrapper .pos-relative {
        gap: 20px;
    }

    .team-grid .team.team--full .team-image {
        width: 240px;
        height: 240px;
    }

    .team-grid .team.team--full .team-text {
        margin-top: 51px;
    }

    .team-grid .team.team--full .member__inf .name {
        font-size: 20px;
        margin-top: 8px;
    }

    .team-grid .team.team--full .member__inf .position {
        font-size: 16px;
    }

    .team-grid .team.team--full .member__desc {
        font-size: 15px;
    }

    .team-grid .team:not(.team--full),
    .pos-relative,
    .team-grid .team:not(.team--full):hover::before,
    .team-wrapper,
    .team-grid .team:not(.team--full) .team-image,
    .team-grid .team:not(.team--full) .team-image img {
        max-height: 440px;
    }

    .team-grid .team:not(.team--full) .member__inf {
        margin-right: 41px;
    }

    .team-grid .team:not(.team--full) .member__desc {
        font-size: 14px;
        padding: 0 12px 12px 12px;
    }
}

/* Mobile sidebar close button khi sidebar active */
.mobile-sidebar.active .mobile-sidebar-close,
.mobile-sidebar.active .mobile-sidebar-close i,
.mobile-sidebar.active .mobile-sidebar-close .fa-xmark,
.mobile-sidebar.active .mobile-sidebar-close .fa-solid {
    color: #242424 !important;
}

/* Hamburger icon màu theo trạng thái header */
.header-area .hamburger-btn .fa-solid.fa-bars {
    color: #fff;
}

.header-area.menu-fixed .hamburger-btn .fa-solid.fa-bars {
    color: #454545;
}

/* Tablet/Desktop < 1440px - Show hamburger menu,hide main menu */
@media (max-width: 1439px) {
    .header-area .main-menu {
        display: none !important;
    }

    .header-area .d-none.d-lg-flex {
        display: none !important;
    }

    .mobile-header-actions {
        display: flex !important;
    }

    .mobile-header-actions .hamburger-btn {
        display: flex !important;
    }


}

@media (min-width: 1440px) {
    .mobile-header-actions {
        display: none !important;
    }
}


/* Team Grid - About Us*/
@media (max-width: 767px) {
    .team-area {
        padding: 48px 16px 0 16px !important;
        overflow: hidden !important;
    }

    .team-area .team-grid {
        margin-top: 28px !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .team-area .team-grid .team,
    .team-area .team-grid .team.team--full,
    .team-area .team-grid .team.team--full.pb-60 {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .team-area .team-grid .team.team--full {
        padding-bottom: 40px !important;
        grid-column: 1 / -1 !important;
    }

    .team-area .team-grid .team .team-wrapper,
    .team-area .team-grid .team.team--full .team-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .team-area .team-grid .team.team--full .team-wrapper .pos-relative {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .team-area .team-grid .team.team--full .team-image {
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 343px !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
    }

    .team-area .team-grid .team .team-image,
    .team-area .team-grid .team .team-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }

    .team-grid .team.team--full .team-text {
        margin-top: unset !important;
    }

    .team-grid .team.team--full .member__inf .name {
        font-size: 20px;
    }

    .team-grid .team.team--full .member__inf .position {
        margin-top: 12px;
        font-size: 16px;
    }

    .team-grid .team.team--full .member__desc {
        font-size: 15px;
    }

    .team-area .team-grid .team:not(.team--full),
    .team-area .team-grid .team:not(.team--full) .team-wrapper,
    .team-area .team-grid .team:not(.team--full) .pos-relative,
    .team-area .team-grid .team:not(.team--full) .team-image,
    .team-area .team-grid .team:not(.team--full) .team-image img {
        height: 440px !important;
        overflow: hidden !important;
    }

    .team-grid .team:not(.team--full) .member__inf .name {
        font-size: 18px;
    }

    .team-grid .team:not(.team--full) .member__inf .position {
        font-size: 15px;
    }

    .team-area .team-grid .team:not(.team--full) .member__desc {
        font-size: 12px;
        padding: 0 12px 12px 12px;
    }
}

/*Success Story*/


/* Tags - Horizontal Scroll on mobile */
@media (max-width: 767px) {
    .brand-area-project {
        padding: 88px 0 24px 0;
    }

    .project_search_menu {
        align-items: center;
        padding: 32px 16px;
    }

    .project_search_menu .frm-search {
        margin-bottom: 12px;
    }

    .bg-ss {
        border-radius: unset;
    }

    .project_search_menu .tags {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 6px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 !important;
        margin: 0 !important;
        overscroll-behavior-x: contain !important;
        overscroll-behavior-y: auto !important;
        width: 100% !important;
    }

    .project_search_menu .tags::-webkit-scrollbar {
        display: none;
    }

    .project_search_menu .tags .tag-item {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }

    .brand__wrp_project {
        margin-top: 32px;
        padding: 0 16px;
    }

    .brand__wrp_project .brand__slider .sc_success_items {
        flex-direction: column !important;
        gap: 24px !important;
    }

    .brand__wrp_project .brand__slider .sc_success_items .sc_success_item {
        width: auto !important;
    }
}

@media (min-width: 768px) and (max-width: 1439px) {
    .brand-area-project {
        padding: 128px 24px 24px 24px;
    }

    .project_search_menu {
        align-items: center;
        padding: 32px 20px;
    }

    .project_search_menu .frm-search {
        margin-bottom: 12px;
    }

    .project_search_menu .tags {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 !important;
        margin: 0 !important;
        overscroll-behavior-x: contain !important;
        overscroll-behavior-y: auto !important;
    }

    .project_search_menu .tags::-webkit-scrollbar {
        display: none;
    }

    .project_search_menu .tags .tag-item {
        flex-shrink: 0 !important;
    }

    .brand__wrp_project {
        margin-top: 32px;
    }

    .brand__wrp_project .brand__slider .sc_success_items {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px !important;
    }

    .brand__wrp_project .brand__slider .sc_success_items .sc_success_item {
        width: auto !important;
    }
}

/*Landing Search*/
@media (max-width: 767px) {
    .landing_search_container {
        min-height: 313px !important;
        max-height: 313px !important;
        padding: 128px 16px 0 16px;
    }

    .landing-search-default {
        padding: 0 89px;
        margin-top: 80px;
        margin-bottom: 276px;
    }

    .ls_title_start {
        font-size: 16px !important;
    }

    .loader-square {
        background: #C32423;
    }

    .landing-search-results {
        margin-bottom: unset !important;
        margin-top: unset !important;
        padding: 32px 16px;
    }

    .search-results-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }

    .landing-search-results .search-results-header h3 {
        font-size: 20px;
    }

    .ls_title_not_found {
        font-size: 16px !important;
    }

    .testimonial__item {
        padding: 16px;
    }
}

@media (min-width: 768px) and (max-width: 1439px) {
    .landing_search_container {
        min-height: 335px !important;
        max-height: 335px !important;
        padding: 136px 24px 0 24px;
    }

    .landing-search-default {
        padding: 0 286px;
        margin-top: 80px;
        margin-bottom: 278px;
    }

    .ls_title_start {
        font-size: 16px !important;
    }

    .loader-square {
        background: #C32423;
    }

    .landing-search-results {
        margin-bottom: unset !important;
        margin-top: unset !important;
        padding: 48px 24px;
    }

    .search-results-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .landing-search-results .search-results-header h3 {
        font-size: 20px;
    }

    .ls_title_not_found {
        font-size: 16px !important;
    }

    .testimonial__item {
        padding: 24px;
    }
}

/*Form of Download Portfolio*/
.download-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.download-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.download-modal-content {
    position: relative;
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    max-width: 560px;
    width: 90%;
    max-height: 90vh;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.download_modal_header {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.download-modal-close {
    width: 28px;
    height: 28px;
    padding: 4px;
    background: #242424;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.download-modal-close:hover {
    background :#C0C0C2;
}

.download-cf7-form .wpcf7-form {
    max-width: unset;
    gap: unset;
}

.download-cf7-form .wpcf7-form .form-row label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #242424;
}

.download-cf7-form .wpcf7-form .form-row {
    margin-top: 20px;
}

.download-cf7-form .wpcf7-form .form-row .form-col label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.download-cf7-form .wpcf7-form .form-row textarea {
    max-height: 80px;
}

.download-cf7-form .wpcf7-form input[type="text"],
.download-cf7-form .wpcf7-form input[type="email"],
.download-cf7-form .wpcf7-form input[type="tel"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #CACBCC;
    border-radius: 8px;
    font-size: 14px;
    line-height: 140%;
    font-weight: 400;
    letter-spacing: 0;
    height: 48px;
}

.download-cf7-form .wpcf7-form textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #CACBCC;
    border-radius: 8px;
    font-size: 14px;
    line-height: 140%;
    font-weight: 400;
    letter-spacing: 0;
}

.download-cf7-form .wpcf7-form input[type="text"]:focus,
.download-cf7-form .wpcf7-form input[type="email"]:focus,
.download-cf7-form .wpcf7-form input[type="tel"]:focus,
.download-cf7-form .wpcf7-form textarea:focus {
    border: 1px solid #C32423;
}

.download-cf7-form .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 8px 32px;
    background: #C32423;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0;
    cursor: pointer;
    width: fit-content;
    margin: 0 auto;
    margin-top: 20px;
}

@media (max-width:767px) {
    .download-modal-content {
        padding: 16px;
    }
}

/* =
=======================================
   Mobile Sidebar Contact Icons
   ======================================== */
.mobile-sidebar-contact {
    padding: 0 20px 64px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    justify-content: center;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #242424;
    transition: color 0.3s ease;
    cursor: pointer;
}

.mobile-contact-item:hover {
    color: #C32423;
}

.mobile-contact-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    padding: 6px;
    border-radius: 8px;
    background: #F2F3F5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mobile-contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-contact-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 130%;
    word-break: break-all;
    letter-spacing: 0;
    color: #242424;
}

/* Hide contact card on screens >= 1440px in mobile sidebar */
@media (min-width: 1440px) {
    .mobile-sidebar-contact {
        display: none;
    }
}

.scroll-animate-left,
.scroll-animate-right,
.scroll-animate-top,
.scroll-animate-under {
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}

.scroll-animate-left {
    transform: translateX(-60px);
}

.scroll-animate-right {
    transform: translateX(60px);
}

.scroll-animate-top {
    transform: translateY(60px);
}

.scroll-animate-under {
    transform: translateY(-60px);
}

.scroll-animate-left.active,
.scroll-animate-right.active,
.scroll-animate-top.active,
.scroll-animate-under.active,
.scroll-animate-cert.active,
.scroll-animate-zoom.active,
.grid-item.active,
.rd-header-section.active,
.rd-rectangle-content-circle.active,
.card-3.active,
.process-block.active,
.rd-title.active,
.e-section-item.active,
.card-vision.active,
.s-section.active,
.step-block.active,
.benefit-card-box.active {
    opacity: 1;
    transform: translate(0, 0);
}


/* Tags container,  Gallery thumbnail grid, Success stories - mouse drag scroll */
.tags,
.gallery-thumbnail-grid,
.sc_success_items {
    cursor: grab;
    user-select: none;
}

.tags.dragging,
.gallery-thumbnail-grid.dragging,
.sc_success_items.dragging {
    cursor: grabbing;
}

.tags::-webkit-scrollbar,
.gallery-thumbnail-grid::-webkit-scrollbar,
.sc_success_items::-webkit-scrollbar {
    display: none;
}

.wpcf7-form .wpcf7-response-output {
    display: none;
}