html {
    scroll-behavior: smooth;
}

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

body {
    padding: 0;
    margin: 0;
    background: #f4f6f9;
}

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

.base_margin {
    min-height: 700px;
    margin-top: 128px;
    background-color: #f4f6f9;
}

.toolbar_root {
    position: fixed;
    top: 0;
    z-index: 9990;
    width: 100%;
    min-height: 60px;
    background: white;
    transition: 0.4s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toolbar_root .main_content {
    border-bottom: 2px solid transparent;
}

.toolbar_root #main_logo {
    width: 140px;
    height: 80px;
    margin: 8px 16px;
    transition: 0.4s;
    background: url("../images/nirmal_logo.png") no-repeat center;
    background-size: contain;
}

.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: #212121;
    padding: 8px 0;
    font-size: 15px;
    white-space: nowrap;
    text-transform: capitalize;
    font-weight: 500;
    margin: 0 16px;
    font-family: 'Montserrat', sans-serif;
    transition: 0.4s ease;
    border-bottom: 2px solid transparent;

}

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

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

.menu_item:hover > span {
    /*color: white;*/
    border-bottom: 2px solid var(--colorAccent);
}

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


.toolbar_dropdown_container {
    /*position: relative;*/
}

.toolbar_dropdown_content {
    position: absolute;
    top: calc(100% - 16px);
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    max-width: 1200px;
    display: none !important;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    transition: 0.4s ease;
    padding: 24px;
    min-height: 450px;
    max-height: 550px;
    overflow-y: auto;

}

.toolbar_dropdown_container:hover .toolbar_dropdown_content {
    display: flex !important;
}

.toolbar_dropdown_content .menu_item {
    min-height: 40px;
    padding: 8px 16px;
    color: #212121;
    transition: 0.4s ease;
}

.search_bar_container {
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.06);
    padding: 6px 12px;
    margin: 0 8px;
    align-self: center;

}

.search_bar_container input {
    background: transparent;
    border: none;
    outline: none;
    padding: 8px;
}

.search_bar_container button {
    background: none;
    border: none;
    outline: none;
    padding: 4px 8px;
    color: #212121;
}

.search_bar_container input:focus {}

.drawer_item {
    display: flex;
}

.drawer_item span {
    padding: 10px 10px 10px 30px;
    font-size: 16px;
    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%;
    padding: 0 12px;
    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;
    left: -100%;
    overflow: hidden;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.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_container {
    position: relative;
    width: 100%;
    height: calc(100vw * 0.4);
}

.header_image {
    width: 100%;
    height: calc(100vw * 0.4);
    object-fit: cover;
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.slide img {
    width: 100%;
    height: calc(100vw * 0.4);
    object-fit: cover;
}

.slide_container {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.slide_track {
    position: relative;
    height: 100%;
    transition: transform 0.4s ease-in;
}

.slide {
    position: relative;
    z-index: 45;
    width: 100%;
    height: inherit;
    overflow: hidden;
}

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

.accent_button:hover {
    background-color: var(--colorAccent2);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

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

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

.bordered_button {
    background: transparent;
    color: var(--colorAccent);
    font-weight: 500;
    padding: 8px 16px;
    border: 2px solid var(--colorAccent);
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    outline: none;
    text-transform: capitalize;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: 0.4s;
}

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

.bordered_button.white {
    border: 2px solid white;
    color: white;
}

.page_heading {
    color: var(--colorAccent);
    font-size: 36px;
    padding: 8px;
    font-weight: 600;
    text-align: center;
    margin: 8px 0;
    font-family: "Montserrat", sans-serif;
    position: relative;
}

.page_sub_heading {
    color: #212121;
    font-size: 32px;
    text-align: center;
    margin: 4px 0 8px;
    padding-bottom: 8px;
    font-weight: bold;
    align-self: flex-start;
    font-family: "Montserrat", sans-serif;
    position: relative;
}

.page_sub_heading:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45%;
    height: 3px;
    background-color: var(--colorAccent2);
    border-radius: 1px;
}


.section_wrapper {
    padding: 40px 0;
}

.section_wrapper.dark {
    background: rgba(0, 0, 0, 0.7);
}

.about_content_wrapper {
    margin: 12px;
    padding: 16px;
    align-self: center;
}

.testimonial_wrapper {
    padding: 24px;
    background: white;
    margin: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.testimonial_wrapper .client_image {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    margin-right: 16px;
    object-fit: cover;
    object-position: center;
}


.testimonial_wrapper .client_name {
    font-size: 16px;
    font-weight: normal;
    font-family: "Montserrat", sans-serif;
}

.testimonial_wrapper p {
    font-size: 16px;
    padding: 0;
    margin: 0 0 16px;
    font-family: "Montserrat", sans-serif;
}

.service_item_wrapper {
    background-size: cover;
    border-radius: 8px;
    padding: 16px;
}

.service_item_wrapper img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 48px;
}

.service_item_wrapper span {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    font-family: "Chalkboard", sans-serif;
}

.service_item_wrapper p {
    font-size: 18px;
    text-align: center;
}

.service_item_wrapper .accent_button {
    align-self: flex-start;
}

.enquiry_container {
    border: 1px solid white;
    border-radius: 8px;
    padding: 8px;
    max-width: 500px;
    width: 90%;
    background: rgba(0, 0, 0, 0.5);
    margin: 40px 0;
}

.enquiry_container .page_heading, .contact_details_container .page_heading {
    color: white;
    font-size: 24px;
}

.form_wrapper {
    width: calc(100% - 20px);
    border-radius: 16px;
    padding: 16px;
    background: white;
    border-left: 4px solid var(--colorAccent);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.form_wrapper .title {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.form_wrapper p {
    margin: 0;
    padding: 0;
}

.form_wrapper label {
    font-size: 14px;
    padding: 8px 0;
    font-family: 'Montserrat', sans-serif;
}

.form_wrapper input, .form_wrapper select, .input_field {
    padding: 12px;
    width: 100%;
    font-size: 14px;
    margin: 8px 0;
    background: white;
    font-family: "Montserrat", sans-serif;
    outline: none;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.4s;
}

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

.form_wrapper input:focus, .form_wrapper select:focus, .form_wrapper textarea:focus, .input_field:focus {
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.multi-select-menuitem {
    padding: 0.6em 1em 0.6em 38px !important;
}

.contact_details_container {
    width: 90%;
    height: auto;
    max-width: 500px;
    color: white;
    padding: 26px;
}

.contact_details_container p {
    margin-left: 20px;
}


.footer_wrapper {
    padding: 40px 0 8px;
    background-size: contain;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: right center;
    box-shadow: 0 -1px 8px rgba(0, 0, 0, 0.1);
}

.footer_logo {
    width: 80%;
    max-width: 150px;
}

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

.footer_container p {
    font-size: 16px;
    color: #212121;
    line-height: 1.6;
}

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

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

.footer_heading {
    color: #212121;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 18px;
    padding-bottom: 8px;
    align-self: flex-start;
    border-bottom: 2px solid #212121;
    font-family: "Montserrat", sans-serif;
}

.footer_link {
    color: #212121;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    margin: 8px;
}

.footer_icon {
    font-size: 18px;
    margin-right: 16px;
}

.footer_link i {
    color: var(--colorAccent);
}

.footer_input_field {
    background-color: #fde8e8;
    padding: 8px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    margin-bottom: 18px;
    border: 1px solid #dad9d9;
    outline: none;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
}

.footer_accent_button {
    background-color: var(--colorAccent);
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: 0.4s;
    align-self: start;
}

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

.full_image {
    width: 100%;
    max-width: 500px;
    padding: 8px;
    object-fit: contain;
}

.product_detail_content_wrapper {
    padding: 8px 16px;
}

.product_list_wrapper .product_detail_container {
    width: 100%;
}

.product_slides .product_detail_container {
    max-width: none;
}

.product_detail_container {
    border-radius: 24px;
    margin: 8px 8px;
    padding: 12px;
    max-width: 400px;
    background: white;
    border: 1px solid var(--colorAccent);
    box-shadow: 0 0 0 transparent;
    transition: 0.4s ease;
}

.product_id_wrapper {
    color: #525252;
    margin: 0 8px 16px;
    font-size: 14px;
    font-weight: 500;
}

.product_detail_container .product_name {
    font-weight: bold;
    text-align: left;
    font-size: 18px;
    margin-bottom: 4px;
}

.product_detail_container .image_container_wrapper {
    height: 280px;
    position: relative;
    width: 100%;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    overflow: hidden;
}

.image_container_wrapper #image_1,
.image_container_wrapper #image_2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.4s ease;
}

.image_container_wrapper #image_1 {
    opacity: 1;
}

.image_container_wrapper #image_2 {
    opacity: 0;
}

.product_detail_container:hover .image_container_wrapper #image_1 {
    opacity: 0;
}

.product_detail_container:hover .image_container_wrapper #image_2 {
    opacity: 1;
}

.product_detail_container:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.product_detail_container p {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    font-size: 15px;
}

.product_detail_container .heading {
    font-weight: 500;
    font-size: 16px;
    padding: 16px 4px 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--colorAccent);
}

.product_detail_container .accent_button {
    margin-top: 12px;
}

.product_detail_wrapper {
    padding: 8px;
}

.product_detail_wrapper p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 4px;
}

.product_detail_wrapper ul {
    padding: 0 0 0 16px;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 0;
}

.product_detail_wrapper p strong {
    font-size: 18px;
}

#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 {
    display: none;
    position: fixed;
    width: 90%;
    max-width: 500px;
    top: 50%;
    left: 50%;
    padding: 12px;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.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;
}

.contact_input_field {
    background-color: transparent;
    padding: 12px 0;
    margin-bottom: 8px;
    border: none;
    border-bottom: 1px solid white;
    outline: none;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}

.category_item_wrapper {
    margin: 12px 8px;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    transform: translateY(0);
}

.category_item_wrapper img {
    width: 100%;
    height: 300px;
    transition: 0.4s ease;
    transform: scale(1);
    object-fit: cover;
}

.category_item_wrapper span {
    text-align: center;
    padding: 12px 6px;
    font-weight: bold;
    z-index: 1;
    background: white;
}

.category_item_wrapper:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
}

.category_item_wrapper:hover img {
    transform: scale(1.1);
}


.brand_item_wrapper {
    padding: 10px;
    margin: 4px;
    width: calc((100% / 7) - 8px);
}

.brand_item_wrapper img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.about_feature_item_wrapper {
    padding: 8px;
}

.about_feature_item_wrapper img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 16px;
    align-self: center;
}

.about_feature_item_wrapper span {
    font-size: 14px;
    line-height: 1.5;
    align-self: center;
}


.faq_wrapper {
    padding: 16px;
    background: #ebebeb;
    border-radius: 16px;
    cursor: pointer;
    margin: 4px;
    transition: 0.4s ease;
}

.faq_wrapper:hover, .faq_wrapper.active {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq_wrapper i {
    margin-right: 16px;
    font-size: 24px;
    color: #b9b9b9;
}

.faq_wrapper .question {
    font-weight: 500;
    font-size: 16px;
}

.faq_wrapper .answer {
    font-size: 16px;
    margin-top: 8px;
    display: none;
    line-height: 1.6;
}

.faq_wrapper.active .answer {
    display: flex;
}

.faq_wrapper.active i:before {
    content: '\f106';
}

.contact_form_section_wrapper {
    background-image: url("../images/contact_us_home_banner.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.contact_form_section_wrapper label {
    color: white;
    font-weight: 600;
    padding: 4px 0;
}

.contact_form_section_wrapper form div {
    padding: 8px;
}

.category_page_side_section {
    width: 25%;
    padding: 0 16px;
    min-width: 200px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, #357caf, #24699c);
}

.category_page_side_section a {
    color: white;
    padding: 16px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.4s ease;
    background: transparent;
}

.category_page_side_section a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.about_mission_vision_item {
    border: 1px solid rgba(0, 0, 0, 0.5);
    padding: 24px;
}

.about_mission_vision_item img {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
    object-fit: contain;
    align-self: center;
}

.about_mission_vision_item span {
    color: #00406D;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    text-align: center;
}

.about_mission_vision_item p {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.contact_info_item_wrapper {
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact_info_item_wrapper i {
    width: 80px;
    padding: 12px 16px;
    font-size: 24px;
    color: var(--colorAccent);
    border: 1px solid rgba(0, 0, 0, 0.5);
    align-self: flex-start;
    text-align: center;
    margin-right: 16px;
    border-radius: 6px;
}

.contact_info_item_wrapper span {
    font-size: 16px;
    line-height: 1.6;
    align-self: center;
}

.contact_info_item_wrapper span b {
    font-size: 16px;
    font-weight: 600;
}

.menu_sub_item {
    color: #212121;
    padding: 16px 16px;
    margin-right: 16px;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.4s ease;
    background: transparent;
}

.menu_sub_item:hover {
    background: rgba(0, 0, 0, 0.05);
}

@media only screen and (max-width: 780px) {

    .product_detail_content_wrapper {
        padding: 16px 0;
    }

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

    .toolbar_root #main_logo {
        height: 60px !important;
        margin: 4px;
    }

    .page_heading {
        font-size: 32px;
    }

    .section_wrapper {
        padding: 30px 0;
    }


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

    .footer_container {
        width: calc(100% - 6px);
    }


    .header_container {
        height: calc(100vw * 1.4);
    }

    .header_image {
        height: calc(100vw * 1.4);
    }

    .slide img {
        height: calc(100vw * 1.4);
    }

    .product_item_wrapper {
        width: calc(100% - 12px);
    }

    .base_margin {
        margin-top: 112px;
    }


    .brand_wrapper {
        width: calc((100% / 2) - 10px);
        margin: 5px;
        padding: 6px;
    }

    .founder_info_container {
        width: calc((100% / 2) - 16px);
        margin: 8px;
    }


    .contact_page_heading {
        align-self: center;
    }

    .brand_item_wrapper {
        width: calc((100% / 2) - 8px);
    }
}

