@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1440px;
    }
}


@media only screen and (max-width: 768px) {
    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a img {
        width: 140px;
        margin-top: 40px;
    }
}
.footer-link-widget:not(:last-child) {
    margin-right: -56px;
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    width: 95%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}

/* Wrapper Flex Layout */
.header-wrap {
    display: flex;
    justify-content: center; /* Center the logo initially */
    align-items: center;
    position: relative;
}

@media (min-width: 992px) {
    /* Center Logo */
    .header-wrap .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Push Action Icons to the Right */
    .header-wrap .header-right {
        margin-left: auto; /* Pushes the icons to the right */
        display: flex;
        flex-direction: row-reverse; /* Reverse the icon order if needed */
        align-items: center;
    }
}

.mobile-menu-close {
     position: fixed;
   right: 10px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    cursor: pointer;
}

.mobile-menu-close .close-style {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
}

.mobile-menu-close .icon-top,
.mobile-menu-close .icon-bottom {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
}


.mobile-header-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Keeps structure stable */
    padding: 10px 15px;
}

.mobile-header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}


.header-nav {
    width: 65%;
    display: flex;
    justify-content: center; /* Centers the inner content */
    align-items: center;     /* Vertically align if needed */
}

.header-nav > * {
    margin: 0 10px; /* Optional: adds space between categories and menu */
}

.main-menu nav {
    display: flex;
    justify-content: center;
}



/* Make sure the logo container takes full width and centers the logo inside */
.logo.logo-width-1.d-block.d-lg-none {
    display: block;       /* Ensure it's a block element */
    width: 100%;          /* Full width of the parent */
    text-align: center;   /* Center the inline elements like  and  */
}

/* Optional: Clean alignment inside */
.logo.logo-width-1.d-block.d-lg-none a {
    display: inline-block; /* Ensures the link wraps only the image */
      margin-left: 150px;
}

/* Optional: Control image size */
.logo.logo-width-1.d-block.d-lg-none img {
    max-height: 55px;
    height: auto;
}
.card-1 {
    width: 150px !important;
    height: 150px !important;
    min-width: 150px !important;
    min-height: 150px !important;
    max-width: 150px !important;
    max-height: 150px !important;
    border-radius: 50% !important;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically */
    align-items: center;     /* Center horizontally */
    padding: 10px;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Ensure the figure itself is centered and not causing issues */
.card-1 figure {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    overflow: hidden;
    margin: 0 auto !important;  /* Force center horizontally */
    padding: 0;
    display: flex;              /* Make figure content flexbox */
    justify-content: center;    /* Center image inside figure */
    align-items: center;        /* Center image inside figure */
}

.card-1 figure img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 50% !important;
    display: block;
}

.card-1 p {
    margin: 5px 0 0 0 !important; /* Minimal space between image and text */
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.2;
}
.brand-logo {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ccc; /* Optional border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow */
    transition: transform 0.3s ease;
}

.brand-logo img:hover {
    transform: scale(1.05); /* Optional zoom on hover */
    border-color: #333;     /* Optional hover effect */
}