/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.brand_list_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.brand_list_wrapper .brand-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding-bottom: 100%;
}

.brand_list_wrapper .brand-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    position: absolute;
    left: 0;
    top: 0;
}

.brand_list_wrapper .brand_logo-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 20%);
    transition: .7s all;
}

.brand_list_wrapper .brand_logo {
    max-width: 150px;
    background: #fff;
    padding: 8px;
}

.brand_list_wrapper .brand_logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.brand_list_wrapper .brand_logo h3 {
    margin: 10px 0 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.brand_list_wrapper .brand-card:hover .brand_logo-container {
    opacity: .5;
}

.sidebar_nav {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translateX(100%);
    transition: .4s all;
    z-index: 999;
    background: #f1f1f1;
    width: 250px;
}

.sidebar_nav.show {
    transform: translateX(0);
}

.sidebar_nav #block-mainnavigation-menu {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    writing-mode: sideways-lr;
    background: #f1f1f1;
    z-index: 999;
    white-space: nowrap;
    font-size: 18px;
    margin: 0;
    padding: 50px 8px;
    cursor: pointer;
    letter-spacing: 2px;
    font-weight: 700;
}

.sidebar_nav ul {
    list-style-type: none;
    padding: 40px 20px;
    overflow: auto;
    height: 100%;
}

.sidebar_nav ul li {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.sidebar_nav ul li a {
    color: #000;
    transition: .4s all;
}

.sidebar_nav ul li a:hover {
    color: #fcaf3c;
}

.sidebar_nav #block-mainnavigation-menu:before,
.sidebar_nav #block-mainnavigation-menu:after {
    content: '';
    position: absolute;
    top: 20px;
    width: 12px;
    height: 2px;
    background: #000;
    left: 50%;
    transform: translateX(-50%);
    transition: .4s all;
}

.sidebar_nav #block-mainnavigation-menu:after {
    width: 2px;
    height: 12px;
    margin-top: -5px;
}

.sidebar_nav.show #block-mainnavigation-menu:before {
    opacity: 0;
}

.e-con-inner {
    width: 90% !important;
}

.header_main_section.header_fixed {
    background: rgb(0 0 0 / 70%) !important;
    backdrop-filter: blur(30px);
}

.common_title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 34px;
    letter-spacing: 3px;
}

.common_subheading {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
}

.elementor-button.elementor-button-link {
    padding: 16px 32px;
    border: 2px solid #fcaf3c;
    background-color: #fcaf3c;
    color: #000000;
    font-size: 16px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: .4s all;
}

.elementor-button.elementor-button-link:hover {
    background: #fff;
    color: #fcaf3c;
    transform: scale(1.05);
}

.services_section .elementor-image-box-title {
    font-size: 12px;
}

.services_section .elementor-image-box-wrapper {
    padding: 0px;
}

.category-section {
    display: flex;
    gap: 3px;
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
}

.category-item {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
    transition: 0.5s all;
    cursor: pointer;
    background-position: center center;
    opacity: 1;
}

.category-section .category-item:nth-child(1) {
    background-position: top center;
}

.category-section .category-item:nth-child(3) {
    background-position: right center;
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s ease;
}

.category-item:hover .overlay {
    background: rgba(0, 0, 0, 0.65);
}

.category-item.active {
    flex: 3;
    z-index: 10;
}

.category-item:not(.active) {
    z-index: 1;
}

.category-item:not(.active):hover {
    opacity: 1;
    flex: calc(100% - 300px);
}

.category-item .overlay h3 {
    color: #fff !important;
    margin: 0;
    font-size: 18px;
    letter-spacing: 2px;
    transition: .5s all;
    text-align: center;
}

.category-section:hover .category-item h3 {
    transform: rotate(90deg);
}

.category-section .category-item:hover .overlay h3 {
    transform: none !important;
    font-size: 30px;
    font-weight: bold;
}

.work_category_section_main .e-con-inner {
    width: 100% !important;
    padding: 0 !important;
}

.work_category_section_main {
    padding: 0 !important;
}

.get_in_tech_section .wpforms-field-label {
    display: none;
}

.get_in_tech_section .wpforms-field-sublabel.after {
    display: none;
}

.get_in_tech_section .wpforms-field-required,
.get_in_tech_section .wpforms-container textarea.wpforms-field-medium {
    border-color: #b2b2b2 !important;
    border-radius: 0 !important;
}

.get_in_tech_section .wpforms-submit-container {
    text-align: end;
    margin: 0 !important;
}

.get_in_tech_section .elementor-element.elementor-element-8212de5.e-con-full.get_in_touch_text.e-flex.e-con.e-child {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.get_in_tech_section .elementor-element.e-con-full.form_area.e-flex.e-con.e-child {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.services_section .elementor-image-box-img img {
    max-width: 65px;
    max-height: 65px;
    object-fit: contain;
    filter: brightness(0%);
}

.services_section .elementor-image-box-wrapper figure.elementor-image-box-img {
    width: auto !important;
    display: inline-block;
    background: rgb(252 175 60 / 20%);
    padding: 15px;
}

.services_section .elementor-image-box-wrapper .elementor-image-box-title {
    margin: 0;
}

.get_in_tech_section div.wpforms-container-full {
    margin: 0 !important;
}

.get_in_tech_section div.wpforms-container-full .wpforms-field {
    padding: 0;
    margin: 0 0 15px;
}

div.wpforms-container-full input[type=submit],
div.wpforms-container-full button[type=submit],
div.wpforms-container-full .wpforms-page-button,
.wp-core-ui div.wpforms-container-full input[type=submit],
.wp-core-ui div.wpforms-container-full button[type=submit],
.wp-core-ui div.wpforms-container-full .wpforms-page-button {
    padding: 16px 32px;
    border: 2px solid #fcaf3c;
    background-color: #fcaf3c !important;
    color: #000000 !important;
    font-size: 16px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    height: auto;
    box-shadow: none !important;
}

div.wpforms-container-full input[type=submit]:hover,
div.wpforms-container-full input[type=submit]:active,
div.wpforms-container-full button[type=submit]:hover,
div.wpforms-container-full button[type=submit]:active,
div.wpforms-container-full .wpforms-page-button:hover,
div.wpforms-container-full .wpforms-page-button:active,
.wp-core-ui div.wpforms-container-full input[type=submit]:hover,
.wp-core-ui div.wpforms-container-full input[type=submit]:active,
.wp-core-ui div.wpforms-container-full button[type=submit]:hover,
.wp-core-ui div.wpforms-container-full button[type=submit]:active,
.wp-core-ui div.wpforms-container-full .wpforms-page-button:hover,
.wp-core-ui div.wpforms-container-full .wpforms-page-button:active {
    background: #fff !important;
    color: #fcaf3c !important;
    transform: scale(1.05);
    box-shadow: none !important;
}

ul.hours {
    list-style-type: none;
    padding: 0;
    max-width: 300px;
    margin: 0 auto;
}

ul.hours li {
    border-top: 1px dotted rgb(0 0 0 / 17%);
    margin: 0px;
    padding: 5px 0;
}

ul.hours li:first-child {
    border-top: 0;
    padding-top: 0;
}

ul.hours li:last-child {
    padding-bottom: 0;
}

ul.hours li span {
    float: right;
    font-weight: bold;
}

.single-our-work .page-header {
    display: none;
}

.single-our-work .page-content ul {
    list-style-type: none;
    padding: 0 !important;
}

.single-our-work .page-content ul li img {
    width: 100%;
    display: block;
}

.single-our-work section#comments.comments-area {
    display: none !important;
}

.positions_lists_wrap .card {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #eee;
}

.positions_lists_wrap .card:last-child {
    margin-bottom: 0;
}

.positions_lists_wrap .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.positions_lists_wrap .card h2 {
    font-size: 24px;
    margin: 0 0 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.positions_lists_wrap .content-wrapper {
    position: relative;
}

.positions_lists_wrap .content {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.positions_lists_wrap .content.collapsed {
    max-height: 150px;
}

.positions_lists_wrap .content.expanded {
    max-height: 2000px;
}

.positions_lists_wrap .fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.positions_lists_wrap .fade-overlay.hidden {
    opacity: 0;
}

.positions_lists_wrap .read-more-btn {
    margin-top: 15px;
    background: transparent;
    color: #000000;
    border: none;
    padding: 0;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.positions_lists_wrap .read-more-btn:hover {
    transform: translateY(-2px);
}

.positions_lists_wrap .read-more-btn:active {
    transform: translateY(0);
}

.positions_lists_wrap .arrow {
    transition: transform 0.3s;
    font-size: 12px;
}

.positions_lists_wrap .arrow.rotated {
    transform: rotate(180deg);
}

.career_form_wrapper {
    position: sticky;
    top: 130px;
}

.hero_banner_section h1.elementor-headline .elementor-headline-dynamic-wrapper {
    display: block;
}

.internal_hero_banner .elementor-image-box-wrapper a {
    color: #fff;
    white-space: normal;
    word-wrap: break-word;
}

.internal_hero_banner .elementor-image-box-wrapper .elementor-image-box-title {
    margin-top: 0;
}

.career_form_wrapper div.wpforms-container-full {
    margin: 0 !important;
}

.career_form_wrapper div.wpforms-container-full .wpforms-field {
    float: none;
    clear: both;
    padding: 0;
    margin: 0 0 15px;
}

.career_form_wrapper div.wpforms-container-full .wpforms-field-label {
    display: block;
    margin: 0 0 4px;
    font-weight: 600;
    font-size: 14px;
}

.wpforms-container input[type=date],
.wpforms-container input[type=datetime],
.wpforms-container input[type=datetime-local],
.wpforms-container input[type=email],
.wpforms-container input[type=month],
.wpforms-container input[type=number],
.wpforms-container input[type=password],
.wpforms-container input[type=range],
.wpforms-container input[type=search],
.wpforms-container input[type=tel],
.wpforms-container input[type=text],
.wpforms-container input[type=time],
.wpforms-container input[type=url],
.wpforms-container input[type=week],
.wpforms-container select,
.wpforms-container textarea,
.wp-core-ui div.wpforms-container input[type=date],
.wp-core-ui div.wpforms-container input[type=datetime],
.wp-core-ui div.wpforms-container input[type=datetime-local],
.wp-core-ui div.wpforms-container input[type=email],
.wp-core-ui div.wpforms-container input[type=month],
.wp-core-ui div.wpforms-container input[type=number],
.wp-core-ui div.wpforms-container input[type=password],
.wp-core-ui div.wpforms-container input[type=range],
.wp-core-ui div.wpforms-container input[type=search],
.wp-core-ui div.wpforms-container input[type=tel],
.wp-core-ui div.wpforms-container input[type=text],
.wp-core-ui div.wpforms-container input[type=time],
.wp-core-ui div.wpforms-container input[type=url],
.wp-core-ui div.wpforms-container input[type=week],
.wp-core-ui div.wpforms-container select,
.wp-core-ui div.wpforms-container textarea {
    border-radius: 0 !important;
}

.career_form_wrapper div.wpforms-container-full .wpforms-submit-container .wpforms-submit {
    width: 100%;
    border-radius: 0;
    padding: 17px 15px !important;
    height: auto;
    background: #000 !important;
    color: #fff !important;
    transform: none !important;
    border: 2px solid #000000;
}

.career_form_wrapper div.wpforms-container-full .wpforms-submit-container .wpforms-submit:hover {
    color: #000 !important;
    background: transparent !important;
}

.retail_wrap_section .e-con-inner {
    display: flex;
    flex-direction: column;
}

header.elementor-location-header nav.elementor-nav-menu--dropdown.elementor-nav-menu__container.elementor-nav-menu__container.elementor-nav-menu__container {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    width: 82% !important;
    max-width: 350px !important;
    right: auto !important;
    transform: none !important;
    margin-top: 0 !important;
    bottom: 0 !important;
    height: 100vh;
    max-height: 100vh !important;
    animation: none !important;
    padding: 65px 0 20px;
    transition: .4s all;
}

header.elementor-location-header .elementor-menu-toggle.elementor-active+nav.elementor-nav-menu--dropdown.elementor-nav-menu__container.elementor-nav-menu__container.elementor-nav-menu__container {
    left: 0 !important;
}

nav.elementor-nav-menu--dropdown.elementor-nav-menu__container a.elementor-item {
    color: #000 !important;
    padding: 16px 20px;
    fill: #000 !important;
}

.single-our-work .page-content ul li {
    position: relative;
}

.single-our-work .page-content ul li .x-overlay-image {
    position: absolute;
    z-index: 9;
    max-width: 240px;
    left: 0;
    bottom: -92px;
}

.theme_color {
    color: #fcb03a !important;
}

/*********** responsive **********/

/******** popups **********/
:root {
    --popup-overlay: rgba(10, 12, 14, 0.8);
    --card-bg: rgba(255, 255, 255, 0.88);
    --accent: #2563eb;
    --radius: 12px;
    --shadow: 0 8px 30px rgba(9, 10, 11, 0.18);
    --max-width: 720px;
}

.plan_popup_wrapper {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    /* JS will toggle */
    align-items: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* overlay */
.plan_popup_overlay {
    position: absolute;
    inset: 0;
    background: var(--popup-overlay);
    backdrop-filter: blur(6px) saturate(1.05);
    opacity: 0;
    transition: opacity 240ms ease;
}

/* content card */
.plan_popup_content {
    position: relative;
    width: min(calc(100% - 48px), var(--max-width));
    max-height: calc(100vh - 96px);
    overflow: auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), var(--card-bg));
    box-shadow: var(--shadow);
    transform: translateY(18px) scale(0.995);
    opacity: 0;
    transition: transform 260ms cubic-bezier(.2, .9, .3, 1), opacity 200ms ease;
    padding: 50px;
    box-sizing: border-box;
    z-index: 1201;
}

/* inner layout */
.plan_popup_inner_content h2 {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.plan_popup_inner_content h3 {
    margin: 0 0 30px;
    font-size: 24px;
    font-weight: 500;
}

.plan_popup_inner_content {
    text-align: center;
}

/* close button */
.plan_popup_close {
    position: absolute;
    right: 5px;
    top: 5px;
    border: none;
    background: transparent;
    font-size: 42px;
    color: #67707c;
    cursor: pointer;
    padding: 5px;
    transition: background 120ms ease, color 120ms ease;
    line-height: 24px;
}

.plan_popup_close:hover {
    background: rgb(252 175 60 / 30%);
    color: #0f172a;
}

/* visible state set by JS */
.plan_popup_wrapper.open {
    display: flex;
}

.plan_popup_wrapper.open .plan_popup_overlay {
    opacity: 1;
}

.plan_popup_wrapper.open .plan_popup_content {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* small screens */
@media (max-width: 520px) {
    .plan_popup_content {
        padding: 38px 25px;
        border-radius: 10px;
    }

    .plan_popup_inner_content h2 {
        font-size: 1.25rem;
    }
}

/*************************/

@media (max-width: 1024px) {
    .brand_list_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .positions_lists_wrap .card {
        padding: 20px;
        margin-bottom: 25px;
    }

    .positions_lists_wrap .card h2 {
        font-size: 20px;
        margin: 0 0 5px;
        letter-spacing: 1px;
    }

    .single-our-work .page-content ul li .x-overlay-image {
        max-width: 200px;
        bottom: -76px;
    }

    .career_form_wrapper {
        position: sticky;
        top: 90px;
    }
}

@media (max-width: 767px) {
    .category-section {
        flex-direction: column;
        height: auto;
    }

    .category-item {
        flex: none !important;
        height: 250px;
        opacity: 1 !important;
    }

    .category-item.active {
        flex: none !important;
    }

    .elementor-button.elementor-button-link.elementor-size-sm {
        padding: 14px 20px;
        font-size: 12px !important;
    }

    .hero_banner_section h1.elementor-headline {
        margin: 0 !important;
    }

    .hero_banner_section h1.elementor-headline {
        margin: 0;
    }

    .common_title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .common_subheading {
        font-size: 22px;
        margin-top: 0;
        letter-spacing: 1px;
    }

    .category-section:hover .category-item h3 {
        transform: none;
    }

    .category-section .category-item:hover .overlay h3 {
        font-size: 22px;
    }

    .internal_hero_banner .elementor-image-box-wrapper .elementor-image-box-title {
        margin: 0 0 5px;
        font-size: 20px;
    }

    .sidebar_nav #block-mainnavigation-menu {
        font-size: 15px;
        padding: 40px 5px;
    }

    .single-our-work .page-content ul li .x-overlay-image {
        max-width: 140px;
        bottom: -53px;
    }
}

@media (max-width: 600px) {
    .brand_list_wrapper {
        grid-template-columns: 1fr;
    }

    .brand_list_wrapper .brand-card {
        height: 250px;
    }
}