:root {
    --primary: #fff;
    --green: #25D366;
    --rgb: rgba(48, 69, 92, 0.8);
    --blue: #469CF8;
    --bg: #E7F1FF;
    --font_family: 'Montserrat', sans-serif;
    --lime: #f0f0f0;
    --stroke: #2c3e50;
    --opacity: .8;
    --purple: #8E24AA;
    --skyblue: #1976D2;
    --font-family: Arial, sans-serif;
    --business: #4CAF50;
    --main:#fff;
    --border:#f5f5f5;
    --background_color:#f5f5f5;
    --shadow: 0 4px 20px rgba(233, 223, 223, 0.08);
}
body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: var(--stroke);
	-webkit-tap-highlight-color: transparent;
}
::-webkit-scrollbar {
    background: transparent;
    width: 8px;
    margin: 10px;
}
::-webkit-scrollbar-button {
    height: 90px;
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--rgb);
    height: 90px;
}
#product_info_wrapper::-webkit-scrollbar {
    display: none;
}
.main_header_section {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    align-items: center;
    justify-content: space-between;
}
.main_header_section img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.main_header_section .user_action_wrapper {
    width: 250px;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-left: 40px;
}
.main_header_section .user_action_wrapper a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    color: var(--stroke);
    justify-content: center;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 11px;
}
.main_header_section .user_action_wrapper a span {
    margin-top: 5px;
}
.main_header_section .nav_section {
    width: 300px;
    height: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-right: 70px;
}
.main_header_section .nav_section a {
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    color: var(--stroke);
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
}
.main_header_section .nav_section a span {
    margin-top: 5px;
}
.main_header_section .nav_section a svg {
    color: var(--blue);
}
.main_header_section .user_action_wrapper a svg {
    color: var(--blue);
}

.main_wrapper_section {
    width: 100%;
    margin-top: 0px;
    background-color: #fff;
    height: auto;
    min-height: 100vh;
}
.main_wrapper_section .main_wrapper_left_section {
    width: 30%;
    height: 100vh;
    border-right: 1px solid var(--border);
}
.search_div {
    width: 50%;
    margin-left: 25%;
    height: 60%;
    display: flex;
    flex-direction: row;
    padding: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin-top: 30px;
}
.search_div #search_input {
    width: 95%;
    border: none;
    outline: none;
    background-color: transparent;
}
.search_div #search_btn {
    border: none;
    width: 40px;
    height: 40px;
}
.main_wrapper_section .main_wrapper_right_section {
    width: 70%;
    height: auto;
    min-height: 100vh;
    margin-left: 10%;
}
.products_grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-top: 20px;
}
.products_grid article {
    height: 450px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 20px;
}
.products_grid article img{
    height: 55%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.product_name {
    font-size: 20px;
    margin-top: -5px;
    font-weight: 450;
}
.product_brand {
    font-size: 18px;
    opacity: .5;
    text-transform: uppercase;
    font-weight: 500;
}
.product_category {
    font-size: 12px;
    margin-top: -10px;
    opacity: .5;
    text-transform: uppercase;
    font-weight: 600;
}
.product_price {
    font-size: 13px;
    font-weight: 600;
    margin-top: 20px;
}
.products_a {
    border: none;
    padding: 10px;
    color: var(--blue);
    border-radius: 20px;
    text-decoration: none;
    margin-left: 35px;
    margin-bottom: -5px;
}
.product_description {
    font-size: 13px;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.products_a:hover {
    cursor: pointer;
    transform:scale(1.08);
}
.big_headers {
    font-size: 30px;
    height: auto;

}
.brands_grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}
.brands_grid article {
    height: 180px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: #d5dff0;
    padding: 10px 0;
}

.marquee {
    display: inline-block;
    animation: scroll 60s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

.marquee img {
    height: 60px;
    margin: 0 30px;
    vertical-align: middle;
    /*filter: grayscale(100%);*/
    transition: filter 0.3s ease;
}

.marquee img:hover {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* For continuous loop effect */
.marquee-inner {
    display: inline-block;
}

.marquee-inner:after {
    content: "";
    display: inline-block;
    width: 100%;
}
.complaint_form {
    display: flex;
    flex-direction: column;
}
.complaint_form textarea {
    height: 120px;
    border: 2px solid var(--border);
    outline: none;
    resize: none;
    padding: 10px;
    border-radius: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
}
.complaint_form textarea::placeholder {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
}
.complaint_form input {
    padding: 10px;
    margin-top: 20px;
    border: 2px solid var(--border);
    outline: none;
    border-radius: 20px;
}
#attach_product_photo::-webkit-file-upload-button {
    padding: 10px;
    border: none;
    background-color: var(--blue);
    border-radius: 20px;
    color: #fff;
}
#send_complaint {
    background-color: var(--blue);
    border: none;
    color: #fff;
}
#send_complaint:hover {
    transform: scale(1.05);
}
.popup_title {
    text-align: center;
    font-size: 25px;
}
.contacts_card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contacts_card div {
    display: flex;
    flex-direction: row;
    align-items: center;
    float: left;
    width: 50%;
    margin-top: 40px;
}
.contacts_card div span {
    margin-left: 15px;
}
#product_info_wrapper {
    width: 50%;
    margin-left: 25%;
    height: auto;
    min-height: 100%;
    padding-bottom: 70px;
}
#product_info_wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}
.product_title {
    text-transform: uppercase;
    opacity: .7;
    font-weight: 500;
    padding: 10px;
}
.product_detail {
    margin-top: -30px;
    font-size: 15px;
    font-weight: 480;
    padding: 10px;
}
#popup1 {
    margin-top: -50px;
}
.admin_body {
    background-color: #f5f5f5;
}
.dashboard_header_section {
    width: 100%;
    height: 70px;
    display: flex;
    flex-direction: row;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background-color: #fff;
    justify-content: space-around;
}
.dashboard_header_section .left {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.dashboard_header_section .center {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.dashboard_header_section .center img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.dashboard_header_section .right {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.dashboard_main_section {
    width: 90%;
    height: auto;
    min-height: 100vh;
    margin-top: 80px;
    margin-left: 5%;
}
.dashboard_main_section .stats_section{
    width: 100%;
    height:100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.stats_grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    width: 50%;
}
.stats_grid button {
    height: 140px;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}
.stats_grid button:hover {
    transform: scale(1.05);
    cursor: pointer;
}
#logout_btn {
    position: absolute;
    right: 20px;
    padding: 10px;
    border: none;
    background-color: #ff0000;
    color: #fff;
    margin-top: -20px;
    cursor: pointer;
}
.admin_search_div {
    width: 90%;
    height: 40px;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px;
    margin-left: 5%;
}
.admin_search_div #admin_search_input {
    padding: 8px;
    width: 95%;
    border: none;
    outline: none;
}
.admin_search_div #admin_search_btn {
    color: var(--blue);
    border: 1px solid var(--border);
    padding: 8px;
    cursor: pointer;
    background-color: transparent;
}
.admin_prod_grid {
    width: 90%;
    margin-left: 5.5%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-top: 30px;
}
.admin_prod_grid article {
    height: 380px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: #fff;
}
.add_item_btn {
    padding: 10px;
    background-color: var(--blue);
    color: #fff;
    text-decoration: none;
    margin-left: 45%;
}
#create_item_popup {
    border-radius: unset;
    margin-top: 20px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: unset;
}
.form-group {
    margin-bottom: 15px;
    min-width: 400px;
    max-width: 400px;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
input[type="text"], 
input[type="number"], 
select, 
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    resize: none;
}
textarea {
    height: 100px;
}
.preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}
.preview-item {
    width: 150px;
    position: relative;
}
.preview-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
}
.submit-btn {
    padding: 10px 20px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}
.file-input-label {
    display: inline-block;
    padding: 10px 20px;
    background: #2196F3;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
}
#file-input {
    display: none;
}
#create_item_popup::-webkit-scrollbar {
    display: none;
}
.hero_section {
    height: 100vh;
    width: 100%;
    background-image: url('../bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}
.hero_section_top {
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.hero_section_bottom {
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero_section_bottom img {
    width: 200px;
    height: 200px;
}
.hero_section_bottom .big_text {
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 30px;
    font-weight: 600;
}
.red {
    color: #ff0000;
}
.blue {
    color: #2196F3;
}
.quotation_link {
    text-decoration: none;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    margin-top: 30px;
    width: 250px;
    text-align: center;
    text-transform: uppercase;
}
.quotation_link:hover {
    transform: scale(1.08);
}
.catalog_wrapper {
    width: 90%;
    margin-left: 5%;
    height: 380px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-top: 30px;
}
.catalog_wrapper article {
    height: 100%;
    background-color: #f5f5f5;
    border-radius: 20px;
}
.big_title {
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 50px;
    text-align: center;
    padding: 8px;
    padding-left: unset;
}
.footer_section {
    height:auto;
    width: 100%;
    background-image: url('../bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}
.footer_section .row {
    display: flex;
    flex-direction: row;
    margin-bottom: 50px;
    align-items: center;
    height: 40px;
    justify-content: space-between;
}
.footer_section .hour_table {
    width: 30%;
    margin-left: 5%;
}
.footer_section .hour_table th {
    font-size: 15px;
}
.footer_section .hour_table td {
    font-size: 15px;
}
.footer_section .header_text {
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 50px;
}
@media(max-width:768px){

    .footer_section .hour_table {
        width: 80%;
        margin-left: 10%;
    }

    .footer_section .row {
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
        height: auto;
    }
    .footer_section .row div {
        margin-top: 30px;
        min-width: 180%;
    }
}
.hero_section_top .center {
    width: 30%;
}
.hero_section_top .right {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding-right: 30px;
}
.hero_section_top .left {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.hero_section_top .right a {
    text-decoration: none;
    color: #1976D2;
    text-transform: uppercase;
}
.hero_section_top .right a:hover {
    transform: scale(1.08);
}
.header_logo {
    text-transform: uppercase;
    padding-left: 30px;
    font-weight: 600;
    opacity: .7;
}
.hours_section {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hours_section table {
    color: #fff;
    width: 100%;
    text-align: left;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hours_section table th {
    text-transform: uppercase;
    font-size: 25px;
}
.footer_title {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
}
.hours_section table td .right {
    margin-left: 40px;
}
.menu {
    display: flex;
    list-style: none;
    flex-direction: row;
    height: 100%;
    align-items: center;
    text-transform: uppercase;
    position: absolute;
    right: 30px;
}
.menu li {
    position: relative;
}
.menu a {
    display: block;
    color: #27394b;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 14px;
    font-weight: 500;
}
.menu a:hover {
    transform: scale(1.01);
    
}
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.dropdown li {
    width: 100%;
}
.dropdown li a {
    color: #333;
    text-decoration: none;
    text-align: left;
    margin-top: -30px;
}
.menu li:hover .dropdown {
    opacity: 1;
    visibility: visible;
}
.office_wrapper {
    width: 100%;
    height: auto;
    overflow-y: auto;
    background-image: url('../prime_traders_assets/bg2.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}
.office_main_section {
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-color: rgba(0,0,0,0.9);
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.office_main_section img {
    width: 140px;
    height: 140px;
}
.office_title {
    color: #fff;
    font-size: 25px;
    text-transform: uppercase;
}
.office_text {
    color: #fff;
    width: 60%;
    text-align: center;
    line-height: 28px;
    font-size: 20px;
    font-weight: 400;
}
#category, #sort {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
}
.control-group label {
    text-transform: uppercase;
    padding-bottom: 20px;
}
.main_header_section {
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    width: 100%;
    height: 70px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    padding-left: 20px;
}
.main_header_section a {
    color: #2c3e50;
}
.office_wrapper_section {
    width: 60%;
    margin-left: 20%;
    height: auto;
    min-height: 100vh;
    margin-top: 80px;
    background-color: #fff;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.business_logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f5f5f5;
}
.business_big_name {
    font-size: 30px;
    text-transform: uppercase;
    margin-top: 20px;
}
.business_about_title {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: .6;
}
.business_info_card {
    width: 80%;
}
.row_data {
    display: flex;
    flex-direction: row;
    width: 20%;
    height: 50px;
    margin-top: 10px;
    align-items: center;
    padding-left:80px;
}
.row_data span {
    margin-left: 10px;
}
.footer_content {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.hour_table {
    width:70%;
    margin-left: 24%;
    text-align: left;
    margin-top: 30px;
}
.hour_table tbody td {
    padding-top: 20px;
    font-size: 18px;
}
.hour_table th {
    font-size: 20px;
    text-transform: uppercase;
}
.bottom-pagination {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}

.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #eee;
}

.items-per-page {
    font-size: 14px;
    color: #666;
}

.page-navigation {
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-info {
    font-size: 14px;
    color: #666;
}

.page-btn {
    padding: 6px 16px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.page-btn:hover:not(:disabled) {
    background-color: #e0e0e0;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
@media(min-width:768px){
    .navbar {
        display: none;
    }
    
}
@media(max-width:768px){

    .footer_content .row, #title {
        display: none;
    }
    .physical_address {
        text-align: center;
    }

    .big_title {
        font-size: 20px;
    }
    .controls, .marquee-container, .menu, .header_logo, .hero_section_top{
        display: none;
    }
    .big_text {
        text-align: center;
        padding-left: unset;
        line-height: 25px;
    }
    .hero_section {
        height: 100vh;
    }

    .navbar {
        background-color: #ffffff;
        padding: 0 20px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        top: 0;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
        
    .nav-brand {
        font-size: 1rem;
        font-weight: 550;
        color: #1e40af;
        text-decoration: none;
        text-transform: uppercase;
    }

    .hamburger {
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 1001;
        position: relative;
    }
    
    .hamburger-line {
        height: 1.5px;
        width: 24px;
        background-color: #1e40af;
        margin: 3px 0;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .nav-menu {
        list-style: none;
        background-color: #ffffff;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        padding: 20px 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: inset 0 10px 10px -10px rgba(0,0,0,0.1);
    }
    
    .nav-menu li {
        position: relative;
    }
    
    .nav-menu > li {
        border-bottom: 1px solid #f1f5f9;
    }
    
    .nav-menu li a {
        color: #1e293b;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 400;
        display: block;
        padding: 15px 25px;
        transition: all 0.2s ease;
        text-transform: capitalize;
    }

    .hamburger_logo_icon {
        width: 160px;
        height: 160px;
        object-fit: cover;
        margin-left: 33%;
    }
    

    .submenu-toggle {
        position: absolute;
        right: 20px;
        top: 15px;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    
    .submenu-toggle::before {
        content: '+';
        font-size: 1.2rem;
        font-weight: bold;
        color: #64748b;
    }
    
    .submenu {
        list-style: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background-color: #f8fafc;
    }
    
    .submenu li a {
        padding-left: 40px;
        font-size: 1rem;
    }

    #menu-toggle:checked ~ .nav-menu {
        transform: translateX(0);
    }
    
    #menu-toggle:checked + .hamburger .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    #menu-toggle:checked + .hamburger .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    #menu-toggle:checked + .hamburger .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .submenu-active .submenu {
        max-height: 500px; /* Adjust based on content */
    }
    
    .submenu-active .submenu-toggle::before {
        content: '-';
    }
    
    .submenu-active .submenu-toggle {
        transform: rotate(180deg);
    }

    .office_wrapper_section {
        width: 80%;
        height: auto;
        min-height: 100vh;
        margin-top: 80px;
        background-color: #fff;
        margin-bottom: 50px;
        margin-left: 10%;
    }

    .business_info_card {
        width: 100%;
    }

    .has-submenu a:hover {
        background-color: unset;
    }

    .hamburger_links {
        font-weight: 400;
    }

    .row_data {
        font-size:13px;
    }


        
}
