/* * {font-family: "Montserrat", sans-serif;} */
.action-bar {
    padding-top: 5px;
    padding-bottom: 5px;
}
.menu {
    background-color: #bfbfbf;
}
.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
.nav-item {
    margin-right: 18px;
    white-space: nowrap;
}
.nav-phone {
    background-color: #fff;
    padding-right: 15px;
    border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -ms-border-radius: 5px 5px 5px 5px;
    -o-border-radius: 5px 5px 5px 5px;
    width: 55%;
    padding-right: 0px;
}
.nav-phone a {
    color: #000 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-transform: lowercase;
}
.nav-phone i {
    color: #2929ff;
    font-weight: 600;
    font-size: 16px;
}
.nav-mail {
    background-color: #fff;
    border-radius: 0px 5px 5px 0px;
    -webkit-border-radius: 0px 5px 5px 0px;
    -moz-border-radius: 0px 5px 5px 0px;
    -ms-border-radius: 0px 5px 5px 0px;
    -o-border-radius: 0px 5px 5px 0px;
}
.nav-mail a {
    color: #000 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-transform: lowercase;
}
.nav-mail i {
    color: #ff6235;
    font-weight: 600;
    font-size: 16px;
}

@media (max-width: 425px) {
    .nav-phone {
        background-color: #fff;
        padding-right: 15px;
        border-radius: 5px 0px 0px 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        padding: 15px;
        margin-top: 10px;
        width: 100%;
    }
}

.footer {
    background-color: #f5f5f5;
    padding-top: 30px;
    padding-bottom: 5px;
}
.footer p {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    text-align: justify;
}
.footer a {
    color: #000;
    text-decoration: none !important;
    font-weight: 600;
}
.footer i {
    margin-right: 10px;
}
.footer h4 {
    margin-top: 10px;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 15px;
}
.footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 1px;
}
.footer ul li {
    margin-bottom: 1px;
    list-style: none;
}
.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    /* float: right; Float the list to the right */
}

.social-icons li {
    margin: 0;
}

.social-icons a {
    display: block;
    width: 40px;
    height: 40px;
}

.social-icons img {
    width: 70%;
    height: auto;
}
.colored-hr {
    border: 0;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end; /* Align items to the right */
    gap: 15px; /* Space between list items */
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    text-decoration: none !important; /* Remove underline */
    color: #000; /* Default text color */
    font-size: 14px; /* Font size for the links */
}
.banner {
    padding-top: 10px;
}
.slider-container {
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 1s ease-in-out; /* Smooth transition */
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    vertical-align: middle;
}

.controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.popular-subcategory-item {
    text-align: center;
    margin-bottom: 5px;
}
.popular-subcategory-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.popular-subcategory-content:hover {
    transform: translateY(-8px);
}
.popular-subcategory-image {
    max-width: 125px;
    height: 95px;
    border-radius: 25px;
    border: 1px solid #a6b7ee;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
}
.popular-subcategory-content:hover .popular-subcategory-image {
    transform: scale(1.08);
    border-color: #2929ff;
    box-shadow: 0 10px 20px rgba(41, 41, 255, 0.2);
}
.subcategory-title {
    color: #000 !important;
    margin-top: 10px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    word-spacing: 1px !important;
    font-family: "Montserrat", sans-serif;
    transition: color 0.3s ease;
}
.popular-subcategory-content:hover .subcategory-title {
    color: #2929ff !important;
}
@media only screen and (max-width: 767px) {
    .popular-subcategory-image {
        max-width: 135%;
    }
}
.control-prev,
.control-next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}
.search-bar {
    position: relative;
}

.search-bar input[type="text"] {
    padding-left: 40px; /* Space for the search icon */
}

.search-bar .input-group-text {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent; /* Ensure background is transparent */
    border: none; /* Remove border for clean look */
}

.search-bar .input-group-text i {
    font-size: 16px;
    color: #007bff;
}
.form-group label {
    font-weight: bold;
    color: #333;
}

.input-group-prepend .input-group-text {
    background-color: #f2f2f2;
    color: #555;
}
.input-group {
    border: 1px solid #000;
}
.btn-danger {
    background-color: #2929ff;
    border-color: #2929ff;
    /border-radius: 0px;
    -webkit-border-radius:;
    -moz-border-radius:;
    -ms-border-radius:;
    -o-border-radius:;
}
.categories {
    padding-top: 30px;
    padding-bottom: 10px;
    border-radius: 5px;
}

.categories a {
    text-decoration: none;
    display: block;
}
.categories a:hover {
    background: #f6f6f6;
}
.categories h1 {
    color: #2929ff;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
}
.categories h5 {
    font-family: "Montserrat", sans-serif;
    color: #000;
    font-weight: 700;
    margin-bottom: 0px;
    font-size: 13px;
}
.categories p {
    font-family: "Montserrat", sans-serif;
    color: #615959;
    margin-bottom: 20px;
    font-size: 11px;
}
.categories h4 {
    color: #2929ff;
    margin-top: 20px;
}
.categories h3 {
    color: #4e4d4d;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 400;
    word-spacing: 1px;
    font-family: "Montserrat", sans-serif;
}

.categories h5 {
    padding-top: 10px;
}
@media (max-width: 425px) {
    .categories h1 {
        color: #2929ff;
        font-family: "Montserrat", sans-serif;
        margin-bottom: 10px;
        font-size: 23px;
        text-transform: uppercase;
    }
}

/* @media (max-width: 991px) {
  }
  
  @media (max-width: 425px) {
  }
  
  
  @media (max-width: 1199px) {
    }
   */
   .breadcrumb-text span{
    font-size: 14px;
    color: #3800ff;
   }

.cat_page a {
    text-decoration: none;
    color: black;
    font-size: 14px;
}
.cat_page li a {
    list-style: none;
    font-weight: 400;
}

.gray-image {
    filter: grayscale(1);
}
.listing {
    border: 1px solid #25c7e8 !important;
    border-radius: 8px;
    padding: 12px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: #fff;
    position: relative;
    overflow: hidden;
}
.animation-listing:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: #2929ff !important;
    box-shadow: 0 12px 30px rgba(41, 41, 255, 0.12) !important;
}
.listing:hover h1 {
    color: #2929ff;
}

/*.listing-all {*/
/*    width:48%;*/
/*    margin: 2px;*/
/*}*/

@media (min-width: 992px) {
    .listing-all {
        width: 48%;
        margin: 2px;
    }
}

.listing-mobile {
    border: 1px solid #25c7e8 !important;
    border-radius: 10px;
    padding: 10px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: #fff;
    position: relative;
    overflow: hidden;
}
.listing-mobile:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: #2929ff !important;
    box-shadow: 0 12px 30px rgba(41, 41, 255, 0.12) !important;
}
.listing-mobile:hover h1 {
    color: #2929ff;
}

.listing-mobile h1 {
    font-size: 16px;
    margin-bottom: 0px;
}

.listing-home {
    padding: 10px !important;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.listing-home:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: #2929ff !important;
    box-shadow: 0 12px 30px rgba(41, 41, 255, 0.12) !important;
}
.listing-home:hover h1 {
    color: #2929ff;
}
.listing-home h1 {
    text-decoration: none;
    color: black;
    font-size: 14px;
}
.listing-home a {
    text-decoration: none;
    color: black;
    font-size: 14px;
}

.listing a {
    text-decoration: none;
    color: black;
    font-size: 14px;
}

.listing h1 {
    font-size: 16px;
    margin-bottom: 0px;
}
.listing p {
    font-size: 14px;
    margin-bottom: 0px;
    line-height: 25px;
}

#spinner_gif {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    z-index: 9999; /* Ensure the spinner is on top of other elements */
}

.phone-icon-custom {
    background-color: rgb(41, 41, 255);
    color: White;
    padding: 5px !important;
    border-radius: 3px;
    margin-right: 5px;
    font-size: 16px;
}

.fa-whatsapp {
    background-color: #128c7e;
    color: White;
    padding: 5px !important;
    border-radius: 3px;
    margin-right: 5px;
    font-size: 16px;
}

.map-icon-custom {
    background-color: rgb(247, 2, 39);
    color: White;
    padding: 5px !important;
    border-radius: 3px;
    margin-right: 5px;
    font-size: 16px;
}

a.view {
    background-color: #2929ff;
    color: #fff;
    border-radius: 3px;
    padding: 5px;
    display: block;
    width: 60px;
    text-align: center;
}

.tablinks {
    background-color: #2929ff;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    margin-right: 5px;
    transition: background-color 0.3s;
}

.tablinks:hover {
    background-color: #2929ff;
}

.tablinks.active {
    background-color: #2929ff;
}

.tabcontent {
    display: none;
}

.tabcontent.active {
    display: block;
}

.sociallink ul {
    list-style: none;
    padding: 0;
}

.sociallink li {
    padding: 5px;
}

.stars a {
    display: inline-block;
    padding-right: 15px;
    text-decoration: none;
    margin: 0;
}

.stars a:after {
    position: relative;
    font-size: 31pt;
    font-family: "FontAwesome", serif;
    display: block;
    content: "\f005";
    color: #9e9e9e;
}

span {
    font-size: 0;
}
.select2-container span {
    font-size: 14px !important;
}

.stars a:hover ~ a:after {
    color: #9e9e9e !important;
}

span.active a.active ~ a:after {
    color: #9e9e9e;
}

span:hover a:after {
    color: blue !important;
}

span.active a:after,
.stars a.active:after {
    color: blue;
}

.starchecked {
    color: orange;
}

.checked {
    color: orange;
}

.tab {
    overflow: hidden;
    border: 1px solid #fff;
    background-color: #2929ff;
}

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 0px;
    transition: 0.3s;
    font-size: 17px;
    border-right: 1px solid #fff;
    font-size: 13px;
    color: #ffffff;
}

.tab button:hover {
    background-color: #2929ff;
}

.tab button.active {
    background-color: #2929ff;
    font-weight: bold;
}
.sociallink ul {
    list-style: none;
    padding: 0;
}

.sociallink li {
    padding: 5px;
}

.pagination .page-item.active .page-link {
    background-color: #2929ff !important;
    border-color: #2929ff !important;
    color: white !important;
}

.pagination .page-item .page-link {
    color: #2929ff !important;
    border: 1px solid #dee2e6;
    padding: 5px 10px;
}

.pagination .page-item .page-link:hover {
    background-color: #2929ff !important;
    color: white !important;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    border-radius: 5px;
}

ul.tst {
    max-height: 200px;
    padding: 1px;
    scroll-behavior: smooth;
    overflow-y: scroll;
}
.col-md-9 {
    flex: 0 0 auto;
    width: 50%;
}

.select2-container {
    z-index: 1050 !important;
}
.select2-container--default .select2-results__option {
    opacity: 1 !important;
    font-size: 16px !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    opacity: 1 !important;
    font-size: 16px !important;
}
.select2-container .select2-search--dropdown .select2-search__field {
    width: 100% !important;
    height: 35px !important;
}
#suggestions {
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    text-align: left;
}

.suggestions {
    display: none;
    border: 1px solid #ddd;
    background-color: #fff;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

.tst {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.subcategory-item:nth-child(odd) {
    background-color: white;
}

.subcategory-item:nth-child(even) {
    background-color: #f0f5f5;
}

.view {
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
}

.view.disabled {
    pointer-events: none;
    color: gray;
    background-color: lightgray;
}

/* .bgcl{*/
/*    background-color:#e8f7fb !important;*/
/*}*/
.website {
    max-width: 200px;
    word-wrap: break-word;
}
.search-business {
    display: none;
    order: 1px solid #ddd;
    background-color: #fff;
}
.search-category {
    display: none;
}
.select2-container {
    width: 100% !important;
}
.f-25 {
    font-size: 20px !important;
}
.rating {
    display: inline-block;
    /*margin-left:70px;*/
}

.star {
    font-size: 35px;
    color: gray;
    cursor: pointer;
}

.star:hover,
.star.active {
    color: rgb(255, 207, 0);
}
.display-none {
    display: none;
}
.featured-image {
    width: 100%;
    height: 140px;
}
.featured-image1 {
    width: 200px;
    height: auto;
}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}
/*#sliderimg{*/
/*    max-height:80px !important;*/
/*}*/

/*.bgcl{background-color:#bbdefb !important;}*/
@media (max-width: 768px) {
    #sliderimg {
        height: 37px;
    }
}

.owl-carousel {
    margin: 0 auto;
    padding: 5px 0;
}

.rm-bord {
    border: none !important;
    padding: 10px;
}

.owl-carousel .item {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: auto;
    border: 2px solid #bbdeff;
    /*padding: 10px 10px;*/
    /*margin: 10px;*/
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    z-index: 99999;
    width: 40px;
    height: 40px;
    background-color: #ccc;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
}

.owl-nav button span {
    font-size: 30px;
    height: 100%;
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 0;
}

.owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.owl-carousel .owl-nav {
    margin: 0;
}

.btn-wrap {
    text-align: center;
}

.btn-wrap button {
    background-color: #2929ff;
    color: #fff;
    border: none;
    border-radius: 55%;
    margin: 0px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: absolute;
}

.btn-wrap button.prev-btn {
    left: 10px;
    z-index: 999;
    top: 90px;
}

.btn-wrap button.next-btn {
    right: 10px;
    z-index: 999;
    top: 90px;
}

.owl-theme .owl-nav .disabled,
button.disabled {
    opacity: 0.6;
}
.text-blk {
    color: #000 !important;
    font-weight: bold !important;
    font-size: 16px !important;
}
.pagination-btn {
    border: none;
    background-color: #f0f0f0;
    color: #000;
    padding: 5px 10px;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.pagination-btn.active {
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
}

.pagination-btn:hover {
    background-color: #007bff;
    color: #fff;
}
#blogPagination {
    margin-top: -50px;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-family: Arial, sans-serif;
    font-size: 10px;
}

#blogPagination .blog-page {
    padding: 5px 10px;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#blogPagination .blog-page:hover {
    background-color: #007bff;
    color: #fff;
}

#blogPagination .blog-page.active {
    background-color: #007bff;
    color: #fff;
    pointer-events: none;
}

.category-item {
    text-align: center;
    margin-bottom: 10px;
}

.category-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-image {
    max-width: 30%;
    height: auto;
}

.category-title {
    margin-top: 10px;
    font-size: 1.25rem;
    font-weight: bold;
}

@media (min-width: 992px) {
    .business-image {
        width: 120px !important;
    }
}

.business-image {
    height: 120px !important;
    width: 100% !important;
}
.search-business {
    display: none;
    order: 1px solid #ddd;
    background-color: #fff;
}
.blog-home {
    text-align: justify;
}
.business-home {
    position: relative;
}
.home-whatsapp {
    width: 18px !important;
}
.featured-category {
    /*filter: grayscale(1);*/
    width: 120px;
    height: 120px;
    margin-top: 5px;
}
.featured-category-no-image {
    /*filter: grayscale(1);*/
    width: 100%;
    height: 120px;
    margin-top: 5px;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}
.whatsapp-category {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
}
.search-category {
    display: none;
}
.imgs {
    width: 400px;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.eye-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.container-login {
    width: 100%;
    padding-top: 10px;
}

.card-login {
    padding-left: 50px;
    padding-bottom: 50px;
    justify-content: center;
}

.h3-login {
    text-align: center;
}

.form-addons {
    position: relative;
}
.searchInput {
    width: 100%;
}

.website a {
    display: inline-block;
    word-break: break-word;
    white-space: pre-wrap;
    max-width: 150px;
}

.website b {
    display: inline-flex;
    align-items: center;
    margin-right: 5px;
}
.featured-title {
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.subcategory-title {
    color: #000 !important;
    margin-top: 10px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    word-spacing: 1px !important;
    font-family: "Montserrat", sans-serif;
}
.details-details {
    line-height: 33px;
    text-align: justify;
}
.business-phone-icon {
    display: flex;
}
.ratingmsg {
    display: none;
}

.blog-padding {
    padding: 0 15px;
}

.card-img-top {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.card-text {
    text-align: justify;
}

.custom-p {
    text-align: justify;
    line-height: 33px;
}

.iframe-layout {
    width: 100%;
    height: 400px;
}

.text-white {
    color: white;
}

.img-blog {
    width: 100%;
    height: auto;
}

.map-image {
    width: 100%;
    height: 300px;
}

.errorMessage {
    color: red;
    display: none;
}
.ratingMessage {
    display: none;
}
.reviewMessage {
    display: none;
}

.tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f4f4f4;
    border-bottom: 2px solid #ddd;
}
.tab .tablinks {
    font-size: 16px;
    line-height: 26px;
    width: 20%;
    text-align: center;
    background: #f4f4f4;
    color: #555;
    border: none;
    position: relative;
    cursor: pointer;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}
.tab .tablinks:hover {
    background: #ddd;
    color: #333;
}
.tab .tablinks::after {
    content: "";
    height: 5px;
    width: 100%;
    position: absolute;
    background: #1e88e5;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.tab .tablinks:hover::after {
    opacity: 1;
}
.tab .tablinks.active {
    color: #1e88e5;
    font-weight: bold;
}
.line {
    position: absolute;
    height: 2px;
    background: #1e88e5;
    width: 20%;
    bottom: 0;
    left: 0;
    transition: left 0.25s ease;
}
.content-container {
    background: #eee;
    position: relative;
    height: 150px;
    font-size: 16px;
}
.content-container .content {
    padding: 15px;
    color: #333;
    display: none;
}
.content-container .content.active {
    display: block;
}
.average-rating-box {
    display: inline-block;
    border: 1px solid #ddd;
    padding: 15px 15px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.totalRating {
    display: inline-block;
    margin-top: 20px;
    margin-left: 12px;
}
.averageRating {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.content-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.table-container {
    max-width: 1200px;
    width: 100%;
}
.table {
    font-size: 1.1rem;
}
.table th,
.table td {
    padding: 5px;
}

a {
    text-decoration: none;
}

.stars {
    color: lightgray;
    /* Default color for empty stars */
    font-size: 24px;
    /* Size of the stars */
}
.stars.gold {
    color: gold;
}
.views {
    font-size: 14px;
}
.color-black {
    color: black;
    text-decoration: none;
}

@media (min-width: 769px) {
    .banner-container {
        display: flex;
    }

    .ads-left,
    .ads-right {
        flex: 1;
    }

    .page-content {
        flex: 2;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .banner-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 10px;
    }

    .ads-left {
        grid-column: 1 / 2;
        grid-row: 1;
    }

    .ads-right {
        grid-column: 2 / 3;
        grid-row: 1;
    }

    .page-content {
        grid-column: 1 / 3;
        grid-row: 2;
        padding: 15px;
    }

    .ads-left img,
    .ads-right img,
    .page-content img {
        width: 100%;
        height: auto;
    }
}

.eye-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.container {
    width: 100%;
    padding-top: 0px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 0px;
}
.cards {
    padding-left: 50px;
    padding-bottom: 50px;
    justify-content: center;
}
h3 {
    text-align: center;
    font-size: 1.5rem;
}
.form-addons {
    position: relative;
}
.invalid-feedback {
    display: block;
    color: red;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .eye-btn {
        font-size: 16px;
        right: 5px;
    }
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .cards {
        padding: 15px;
    }
    h3 {
        font-size: 1.25rem;
    }
    .invalid-feedback {
        font-size: 0.8rem;
    }
}

.subcategory-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.subcategory-item:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(41, 41, 255, 0.1);
}
.subcategory-item a {
    transition: color 0.2s ease;
}
.subcategory-item:hover a {
    color: #2929ff !important;
}
.subcategory-name {
    white-space: pre-wrap;
    word-break: break-word;
    font-size: 1rem;
    line-height: 1.4;
}
.headings a {
    text-decoration: none;
    color: black;
}
/* Style for the popup */
.popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    display: none; /* Hidden by default */
}

.popup-content {
    display: flex;
    flex-direction: column;
}

.popup .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    cursor: pointer;
}

.popup h5 {
    margin-top: 0;
}
.review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

/* Review Card */
.review-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.user-image {
    width: 50px;
    height: 50px;
    border-radius: 0;
    margin-right: 12px;
    object-fit: cover;
}

.user-name {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.user-details {
    margin: 0;
    font-size: 14px;
    color: #777;
}

.rating-section {
    margin-bottom: 12px;
}

.review-text {
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}
.popup form {
    margin-top: 15px;
}
.whatsapp-link {
    color: green !important;
}
@media (max-width: 768px) {
    .banners-container img {
        max-width: 100%;
        height: auto;
    }
    .banner {
        text-align: center;
    }
    .card {
        margin-bottom: 15px;
    }
    #blogSlider .item {
        margin-bottom: 15px;
    }
}

#newsPagination {
    margin-top: -50px;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-family: Arial, sans-serif;
    font-size: 10px;
}
#newsPagination .news-page.active {
    background-color: #007bff;
    color: #fff;
    pointer-events: none;
}
#newsPagination .news-page {
    padding: 5px 10px;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.nopadding {
    padding-right: 15px;
}
.btn-whatsapp {
    background-color: #25d366;
    color: white;
    padding: 10px 76px 20px 9px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease;
}
.btn-whatsapps {
    background-color: #25d366;
    color: white;
    padding: 10px 10px 10px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease;
}
.whatsapp-number-button {
    background-color: #25d366 !important;
    color: white !important;
}
.side-menus {
    width: 250px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.side-menus a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    border-radius: 5px;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
    border-bottom: 1px solid #ddd; /* Add a line separator */
}

.side-menus a:last-child {
    border-bottom: none; /* Remove separator for the last item */
}

.side-menus a:hover {
    background-color: #007bff;
    color: #fff;
}

.side-menus p {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}

.auth-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.auth-buttons a {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.auth-buttons a.logout {
    background-color: #dc3545;
    color: white;
}

.auth-buttons a.logout:hover {
    background-color: #a71d2a;
}
.vendor-page .col-md-9 {
    flex: 0 0 auto;
    width: 70%;
}
.login-section .container {
    width: 100%;
    padding-top: 10px;
}

.login-section .card {
    padding-left: 50px;
    padding-bottom: 50px;
    justify-content: center;
}
.text-danger {
    display: inline-block;
}

.customImg {
    width: 200px;
}

#tbl {
    background-color: #1565c0;
    font-size: 12px !important;
    padding: 5px;
    color: #fff !important;
}
td > a {
    color: #fff;
}

td:hover {
    background-color: #ffcc00;
}
