html {
    scroll-behavior: smooth;
}

*, ::after, ::before {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none !important;
    color: var(--colorPrimary);
}

.base_margin {
    min-height: 700px;
    margin-top: 90px;
    background-color: white;
}

.toolbar_root {
    position: fixed;
    top: 0;
    z-index: 9990;
    width: 100%;
    min-height: 60px;
    background: #080808;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);*/
    transition: 0.4s;
}

.toolbar_top_link {
    color: white;
    padding: 12px 8px;
    font-weight: 500;
    line-height: 1;
    font-size: 12px;
}

.toolbar_top_link span {
    margin-left: 12px;
}

.toolbar_root #main_logo {
    height: 60px;
    margin: 12px 16px;
    transition: 0.4s;
}

.menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    flex: 1 1 auto;
    padding: 0 14px;
}

.menu_item {
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    transition: 0.4s ease;
}

.menu_item span {
    color: white;
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
    text-transform: capitalize;
    font-weight: 400;
    margin: 0 2px;
    font-family: 'Montserrat', sans-serif;
    transition: 0.4s ease;
}

.menu_item span.highlight {
    background: var(--colorAccent);
    border-radius: 24px;
    color: white;
    margin: 0 8px;
}

.menu_item:hover {
    background-color: var(--colorAccent);
}

.menu_item:hover span {
    color: white;
}

.menu_item:hover span.highlight {
    background-color: rgba(0, 0, 0, 0.1);
}

.drawer_item {
    display: flex;
}

.drawer_item span {
    padding: 10px 10px 10px 30px;
    font-size: 15px;
    transition: 0.4s;
    font-family: 'Montserrat', sans-serif;
}

.drawer_item.other_link {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: bold;
}

.drawer_item:hover {
    background-color: #f6f6f6;
}

.drawer_item.other_link:hover {
    color: var(--colorAccent);
    background-color: transparent;
}

.main_content {
    width: 100%;
    max-width: 1300px;
}

.home-sideNav-virtual-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.3);
}

.home-sideNav {
    position: fixed;
    top: 0;
    width: 250px;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    z-index: 9999;
    right: -100%;
    overflow: hidden;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.slide_nav {
    padding: 4px 12px;
    background: #ffd9c8;
    color: var(--colorAccent);
    border-radius: 50%;
    /*position: absolute;*/
    /*top: 50%;*/
    /*transform: translateY(-50%);*/
}

.slide_nav#industry_left {
    left: 20px;
}


.slide_nav#industry_right {
    right: 20px;
}

.side_navigation {
    position: relative;
    background-color: white;
    z-index: 1;
    width: 100%;
    overflow-y: scroll;
}

.side_navigation::-webkit-scrollbar {
    display: none;
}

.side_navigation_content_wrapper {
    overflow-y: auto;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px 20px 20px;
}

.side_navigation_content {
    overflow-y: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.header_wrapper {
    background-size: cover;
    min-height: 500px;
    background-position: right center;
    justify-content: center;
}

.header_content_wrapper {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 10%;
    width: 80%;
    max-width: 500px;
    transform: translateY(-50%);
    padding: 80px 20px;
    align-items: flex-start;
}

.header_content_wrapper span {
    color: white;
    font-family: "Designer", sans-serif;
    font-size: 2.3vw;
}

.header_content_wrapper p {
    color: white;
    font-size: 18px;
    max-width: 300px;
}

.header_content_wrapper .accent_button {
    margin-top: 20px;
}


.accent_button {
    background: var(--buttonGradient);
    color: white;
    font-weight: 500;
    padding: 12px 24px;
    border: none;
    font-size: 15px;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    outline: none;
    text-transform: capitalize;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: 0.4s;
}

.accent_button:hover {
    background-color: var(--colorAccent);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

.accent_button.white {
    background-color: white;
    color: #212121;
}

.accent_button.bordered {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 8px 16px;
}


.services_item_wrapper {
    background: url("../images/service-bg.jpg");
    background-size: cover;
    border-radius: 10px;
    padding: 24px;
}

.services_item_wrapper .title {
    color: white;
    font-size: 24px;
    font-family: "Designer", sans-serif;
}

.services_item_wrapper .description {
    color: white;
    font-size: 15px;
    margin: 12px 0;
    line-height: 1.5;
    max-width: 300px;
}

.services_item_wrapper img {
    width: 30% !important;
    height: auto;
    align-self: center;
    margin-left: 24px;
}

.services-nav-left {
    position: absolute;
    top: 33%;
    left: -5%;
    border-radius: 50%;
    padding: 8px 11px;
    border: 2px solid #212121;
    transition: 0.4s ease;
}

.services-nav-right {
    position: absolute;
    top: 33%;
    right: -5%;
    border-radius: 50%;
    padding: 8px 11px;
    border: 2px solid #212121;
    transition: 0.4s ease;
}

.services-nav-left:hover, .services-nav-right:hover {
    background: #212121;
}

.door_step_section_wrapper {
    background-image: url("../images/contect_detail_banner@2x-100.jpg");
    background-size: cover;
}

.page_heading {
    color: var(--colorAccent);
    font-size: 24px;
    padding: 12px 0;
    text-align: center;
    letter-spacing: 1px;
    margin: 4px 10px 16px;
    font-family: Designer, sans-serif;
    position: relative;
    text-transform: uppercase;
}

.page_sub_heading {
    color: #5a5a5a;
    font-size: 16px;
    padding: 12px 0 0;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
    margin: 4px 10px -10px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

.section_wrapper {
    padding: 40px 0;
    position: relative;
}

.about_section_wrapper {
    background-image: url("../images/about-bg.jpg");
    background-size: cover;
}

.contact_detail_item_wrapper {
    margin: 8px;
    background: white;
    padding: 16px;
    max-width: calc(100% - 16px);
    border-radius: 12px;
}

.contact_detail_item_wrapper i {
    font-size: 28px;
    margin-bottom: 12px;
}

.contact_detail_item_wrapper a {
    font-weight: bold;
    font-size: 16px;
    margin: 4px;
}

.contact_detail_item_wrapper a {
    line-height: 1.4;
    margin-top: 12px;
}

.footer_wrapper {
    padding: 40px 0;
    background: #050505;
    z-index: 1;
}

.footer_logo {
    width: 90%;
    max-width: 250px;
    min-width: 200px;
}

.footer_container {
    width: calc((100% / 3) - 3px);
    padding: 20px;
}

.footer_container p {
    font-size: 12px;
    color: #454545;
}

.footer_social_link {
    font-weight: 500;
    font-size: 15px;
    padding-top: 4px;
    width: 32px;
    height: 32px;
    text-align: center;
    color: #454545;
    margin: 8px 4px;
    border-radius: 50%;
    border: 2px solid #454545;
    transition: 0.4s ease;
}

.footer_social_link:hover {
    background-color: var(--colorAccent);
    color: white;
    border: 2px solid var(--colorAccent);
}

.footer_heading {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 24px;
}

.footer_link {
    color: white;
    font-size: 14px;
    margin: 8px;
}


#dialog-background {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    display: none;
}

.dialog-container {
    background-color: white;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    width: 90%;
    max-height: 90%;
    overflow: auto;
    max-width: 650px;
    z-index: 9999;
    padding: 12px;
}

.dialog-container .close-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    text-align: center;
    top: 24px;
    right: 16px;
    border-radius: 50%;
    font-size: 16px;
    padding: 4px;
    color: var(--colorAccent);
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.bs_form {
    padding: 10px;
}

.bs_form .label {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 0 8px 4px;
    color: #212121;
}

.bs_form input, .bs_form select, .input_field, .bs_form textarea {
    padding: 8px 12px;
    width: 100%;
    font-size: 14px;
    margin: 8px;
    color: white;
    background: transparent;
    min-height: 34px;
    border: 2px solid white;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    outline: none;
    transition: all 0.4s;
}

.bs_form textarea {
    min-height: 100px;
    resize: vertical;
}

.bs_form .accent_button {
    padding: 8px 12px;
    font-size: 14px;
    margin: 8px;
}

.testimonial_item_wrapper {
    border-radius: 20px;
    background-image: url("../images/testimonial_bg-100.jpg");
    background-size: cover;
    padding: 16px;
}

.testimonial_item_wrapper .name {
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial_item_wrapper i {
    margin-right: 8px;
    font-size: 14px;
    color: #2a1fdc;
    margin-top: 8px;
}

.testimonial_item_wrapper img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    margin-right: 12px;
}

.testimonial_item_wrapper p {
    color: white;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
}

.why_choose_item_wrapper {
    background: var(--colorAccent);
    padding: 24px;
    justify-content: center;
    min-height: 275px;
}

.why_choose_item_wrapper img {
    height: 70px;
    object-fit: contain;
    object-position: left;
    width: auto;
}

.why_choose_item_wrapper span {
    font-weight: 500;
    color: white;
    font-size: 18px;
    margin: 12px 0 6px;
    letter-spacing: 1px;
}

.why_choose_item_wrapper p {
    font-weight: 300;
    color: #dbdbdb;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.about_wrapper {
    width: 80%;
}

.contact_form_wrapper {
    width: 80%;
}

.footer_fav_icons {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 8px;
    z-index: 999999;
}

.footer_fav_icons a {
    border-radius: 50%;
    color: white;
    margin: 8px;
    width: 54px;
    height: 54px;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    padding: 15px 0;
    background: var(--whatsapp_color);
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.footer_fav_icons a.call {
    background: var(--blueColor);
}

.footer_fav_icons a.whatsapp {
    font-size: 28px;
    padding: 13px 0;
}

@media only screen and (max-width: 780px) {
    .about_wrapper {
        width: 100%;
    }

    .contact_form_wrapper {
    width: 90%;
}

    .logo_container {
        display: flex;
        flex: 1 1 auto;
    }

    .toolbar_root img {
        height: 40px;
        margin: 10px 16px;
        transition: 0.4s;
        flex: 1 1 auto;
        object-fit: contain;
    }


    .header_content_wrapper {
        padding: 40px 24px;
        min-height: 550px;
        align-items: flex-start;
    }

    .header_content_wrapper p {
        font-size: 14px;
    }

    .header_content_wrapper .accent_button {
        padding: 10px 14px;
        margin-top: 8px;
        font-size: 14px;
    }

    .header_content_wrapper span {
        font-size: 6.2vw;
    }

    .page_heading {
        font-size: 5vw;
    }

    .section_wrapper {
        padding: 30px 10px;
    }

    .page_heading.left_aligned {
        text-align: center;
    }

    .footer_container {
        width: 100%;
        padding: 10px 20px;
    }

    .operational_section_wrapper img {
        width: 200px;
        height: 200px;

    }

    .footer_heading {
        margin-bottom: 8px;
        cursor: pointer;
        padding: 8px 12px;
        font-size: 16px;
        position: relative;
        border-bottom: 1px solid var(--divider);
    }

    .footer_heading:after {
        content: '\2b';
        transform: translateY(-50%);
        font-family: "Font Awesome 6 Free" !important;
        position: absolute;
        right: 12px;
        top: 50%;
        transition: 0.4s ease;
    }

    .footer_heading.active:after {
        content: '\2b';
        transform: translateY(-50%) rotate(135deg);
    }


    .footer_sub_content {
        display: none;
    }

    .footer_sub_content.active {
        display: flex;
        padding: 0 20px 12px;
    }

    .mobile_footer_bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
        padding: 8px;
        justify-items: center;
        align-items: center;
    }
}