/*
Theme Name: ittakesavillage
Description: Nothing is more fulfilling than helping someone in need.
Author: Diggity Solutions
Author URI: https://diggity.us/
Version: 1.0
Tested up to: 6.4
Requires at least: 3.0
Requires PHP: 5.2.4
Tags: It takes a village
Text Domain: twentyten
*/


/* =Reset default browser CSS. Based on work by Eric Meyer.
-------------------------------------------------------------- */

/* =Global Elements
-------------------------------------------------------------- */
/* Import google font */
@import url('https://fonts.googleapis.com/css2?family=Nata+Sans:wght@100..900&display=swap');

:root {

    --bs-primary: #02325d;
    --bs-primary-rgb: 2, 50, 93;

    --bs-green: #009e60;
    --bs-green-rgb: 2, 158, 96; 

    --bs-light: #f1f3f5;
    --bs-light-rgb: 241, 243, 245;

    --bs-secondary: #888888;
    --bs-secondary-rgb: 136, 136, 136;

    --bs-white: #ffffff;
    --bs-white-rgb: 255, 255, 255;

    --bs-dark: #000000;
    --bs-dark-rgb: 0, 0, 0;
    
}

/* Main global 'theme' and typographic styles */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}
body {
    font-family: "Nata Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: var(--bs-primary);
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-weight: 700;
    margin-bottom: 1rem;
}
h1, .h1{font-size: clamp(36px,3.5vw,50px);}
h2, .h2{font-size: clamp(30px,3.5vw,36px);}
h3, .h3{font-size: clamp(24px,3.5vw,30px);}
h4, .h4{font-size: clamp(20px,3.5vw,24px);}
h5, .h5{font-size: clamp(18px,3.5vw,20px);}
h6, .h6{font-size: clamp(16px,3.5vw,18px);}
a {
    color: var(--bs-primary);
    text-decoration: none;
    transition: all .1s linear;
}
h1 i,
h2 i,
h3 i,
h4 i,
h5 i,
h6 i {
    font-size: .8em
}

dl, ol, ul{
    padding: 0;
    margin: 0;
        list-style-position: outside;
    padding-left: 1rem;
}
.xoxo{
    padding: 0;
    margin: 0;
    list-style: none;
}
.mainlayout {
  display: grid;
  min-height: 100vh;
  grid-template-rows: auto 1fr auto;
}
.page-template-blank-layout header, 
.page-template-blank-layout footer, 
.page-template-landing header,
.page-template-landing footer,
.page-template-enter header,
.page-template-enter footer,
.page-template-like-to-help header,
.page-template-like-to-help footer
{
    display: none;
}

.fullwidth {
  box-shadow: 0 0 0 100vmax var(--bs-white); /* Extends to viewport edges */
  clip-path: inset(0 -100vmax); /* Clips shadow to visible area */
  background: var(--bs-white); /* Fallback color */
}




.vc_row{
    padding-top: 30px;
    padding-bottom: 30px;
}
.vc_row-o-equal-height .wpb_wrapper, .vc_row-o-equal-height .wpb_wrapper>div, .vc_row-o-equal-height .wpb_wrapper.ult-content-box{
    height: 100%;
}
.vc_col-has-fill>.vc_column-inner{
        
}
.vc_col-has-fill.card{
    padding: 0!important;
}

/* =Bootstrap element
-------------------------------------------------------------- */

.text-secondary{
    color: var(--bs-secondary);
}
.text-success{
    color: var(--bs-green)!important;
}

.bg-success, .text-bg-success{
    background-color: var(--bs-green)!important;
}

/* =Header
-------------------------------------------------------------- */

header {
    background-color: var(--bs-white);
}

/* Branding loog */
#branding img {
/* 	max-width: 60px; */
	max-height:80px;
}


/* =Menu
-------------------------------------------------------------- */
header .navbar{
    margin-bottom: -8px;
    margin-top: 10px;
    padding: 0;
}
.navbar-nav{
/*     gap:0 20px; */
    font-size: 14px;
    flex-wrap: wrap;
}
.navbar-nav a{
    color: var(--bs-white);
    padding-top: 10px;
    padding-bottom: 12px;
}
.navbar-nav a:hover{
    color: var(--bs-secondary);
}

.dropdown-menu{
    border: 0;
    box-shadow: 0 0 20px rgba(var(--bs-dark-rgb), 0.1);
    font-size: .9em;
    max-width: 230px;
}
/* Top arrow */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px; /* adjust based on alignment */
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff; /* same as dropdown background */
    z-index: 1001;
}

/* Adjust for right-aligned dropdowns */
.dropdown-menu-end::before {
    left: auto;
    right: 20px; /* adjust as needed */
}
.dropdown-item {
    padding-block:8px;
    white-space: normal;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 10px;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: var(--bs-primary);
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}
.dropdown-item.active, .dropdown-item:active {
    color: var(--bs-primary);
    text-decoration: none;
    background-color:transparent;
}

.dropdown-header{
    display: flex;
    align-items: center;
    gap:10px;
}
.dropdown-header img{
    max-width: 30px;
}

/* =Inner banner
-------------------------------------------------------------- */
.inner-banner{
    display: grid;
    place-content: center;
    align-items: center;
    text-align: center;
     background: var(--bs-dark);
    max-height: 300px;
        overflow: hidden;
}
.inner-banner img{
    filter: blur(4px);
    opacity: 0;
    animation: fadeInImage 1.5s ease-out forwards;
    animation-delay: 0.2s;
}
@keyframes fadeInImage {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.6;
  }
}
.inner-banner>*{
    grid-area: 1 / 1;
}
.inner-banner>.hero-tile{
    z-index: 1;
    color: var(--bs-white);
}

.inner-banner .hero-tile{
    opacity: 0;
    animation: fadeInup .5s ease-out forwards;
    animation-delay: 0.5s;
}
@keyframes fadeInup {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.full-screen{
    height: 100vh;
	    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	padding-block:clamp(24px,4vw,50px);
}

/* =Card
-------------------------------------------------------------- */
.card{
    border-width:3px;
    border-color: var(--bs-primary);
    padding: clamp(15px, 4.5vw, 30px);
    border-radius: 20px;
    overflow: hidden;
}

.custom-cards .card{
    padding: clamp(15px, 4.5vw, 30px);
    box-shadow:none;
    min-height: 170px;
}
.custom-cards .card .card-title{
    display: flex;
    align-items: center;
}
.custom-cards .card .card-title i {
    font-size: 2em;
    vertical-align: middle;
    margin-right: 10px;
}
.custom-cards .card .card-bottom{
    margin-top: auto;
}
.custom-cards>.col:nth-child(1) .card{
    background-color: #f8eedc;
}
.custom-cards>.col:nth-child(2) .card{
    background-color: #e4eff1;
}
.custom-cards>.col:nth-child(3) .card{
    background-color: #e2e8f5;
}
.custom-cards .card>.card-bottom>*{
    margin-bottom: 0;
}
.custom-cards .card>.card-bottom>.btn{
    min-width: inherit;
    display: grid;
    place-content: center;
    padding-inline: 0;
    aspect-ratio: 1;
    height: 36px !important;
}
.custom-cards .card>.card-bottom>.btn:hover{
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);
}
.custom-cards .card>.card-bottom>.btn i{
    font-size: 20px;
}
.custom-cards a{
    color: var(--bs-dark);
    font-weight: 600;
}
.custom-cards .alert a{
    color: var(--bs-primary);
}
.custom-cards a:hover{
    color: var(--bs-primary);
}


.category-box{
    border: 5px solid var(--bs-primary);
    border-radius: 20px;
    padding: clamp(10px,2vw,20px);
    box-sizing: border-box;
    text-align: center;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.category-box:hover{
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(var(--bs-primary-rgb), .1);
}
.category-box>.category-desc{
/*     flex: 1; */
    line-height: normal;
}
.category-box .category-title{
	margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    height: 2.5em;
}
.category-box>span{
    width: clamp(50px, 8vw, 100px);
    height: clamp(50px, 8vw, 100px);
    aspect-ratio: 1;
    display: grid;
    place-content: center;
	margin-bottom: .8em;
    background: #dfedf9;
    padding: 10px;
    border-radius: 50%;
}
.category-box>span img{    
    max-width: 65px;
	width:100%;
    max-height: 45px;
}
.category-wraper>*:nth-child(6n+2)>.category-box>span{
    background: #eef9df;
}
.category-wraper>*:nth-child(6n+3)>.category-box>span{
    background: #f9dfe9;
}
.category-wraper>*:nth-child(6n+4)>.category-box>span{
    background: #dff9f6;
}
.category-wraper>*:nth-child(6n+5)>.category-box>span{
    background: #fff5dd;
}
.category-wraper>*:nth-child(6n+6)>.category-box>span{
    background: #e1d7ff;
}

.district-wraper{
    padding: 0;
    margin: auto;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: clamp(20px, 3.5vw, 50px);
    font-size: 20px;
    font-weight: 600;
	max-width: 1050px;
	width:100%;
}
.district-wraper>a{
    aspect-ratio:1;
    display: grid;
    place-content:center;
    padding: 20px;
    border: 2px solid rgba(var(--bs-primary-rgb), 0.2);
    border-radius: 20px;
}
.district-wraper>a:hover{
    border-color: rgba(var(--bs-primary-rgb), 1);
    box-shadow: 0 10px 10px rgba(var(--bs-primary-rgb), .05);
}

/* =Avtar stack
-------------------------------------------------------------- */
.avatar {
  width: 100%;
  height: 100%;
object-fit: cover;
  border-radius: 100%;
    aspect-ratio:1;
  box-shadow: 0 0 10px rgba(var(--bs-dark-rgb), 0.1);
}

.avatar-stack {
  display: flex;
}
.avatar-stack .avatar-item {
  height: 32px;
  width: 32px;
  display: inline-block;
  transition: margin 0.1s ease-in-out;
}
.avatar-stack .avatar-item + .avatar-item {
  margin-left: -15px;
}
.avatar-stack .avatar-item:first-child {
  z-index: 5;
}
.avatar-stack .avatar-item:nth-child(2) {
  z-index: 4;
}
.avatar-stack .avatar-item:nth-child(3) {
  z-index: 3;
}
.avatar-stack .avatar-item:nth-child(4) {
  z-index: 2;
}
.avatar-stack .avatar-item:last-child {
  z-index: 1;
}
.avatar-stack:hover .avatar-item {
  margin-left: 0px;
  margin-right: -5px;
}



/* =Input, buttons
-------------------------------------------------------------- */
.form-label{
    margin-bottom: .3rem;
}
.form-control, .form-select, .input-group-text{
    border-width: 2px;
    border-color: var(--bs-primary);
    background-color: var(--bs-white);
}
.input-group-text+.form-select, .input-group-text+.form-control{
    border-left: 0;
    padding-left: 0;
}
.form-control:focus {
    border-color: var(--bs-dark);
    outline: 0;
    box-shadow:none;
}
.form-control:disabled{
    background: rgba(var(--bs-secondary-rgb), 0.1)
}
input.form-control,
select.form-control,
textarea.form-control,
input[type="file"].form-control,
button, button.btn, .btn,
.form-floating > .form-control,
.form-floating > .form-select {
    min-height: inherit;
}
textarea.form-control{
    height: inherit;
    resize: none;
}

.form-floating>.form-control-plaintext:focus, .form-floating>.form-control-plaintext:not(:placeholder-shown), .form-floating>.form-control:focus, .form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.form-floating>label {
    padding: .65rem .75rem;
    font-size: 14px;
}
.form-floating>.form-control-plaintext~label, .form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {
    transform: scale(.8) translateY(-.8rem) translateX(.6rem);
/*    color: var(--bs-primary);*/
    background: var(--bs-white);
    padding: 2px 6px;
    height: inherit;
}
.form-floating>.form-select {
    padding-top: .625rem;
}

.form-control::placeholder {
  font-size: .9em;
}

.form-control::-webkit-input-placeholder {
  font-size: .9em;
}

.form-control::-moz-placeholder {
  font-size: .9em;
}

.form-control:-ms-input-placeholder {
  font-size: .9em;
}

.form-control:-moz-placeholder {
  font-size: .9em;
}

.btn, .vc_general{
    font-weight: 600;
    text-transform: uppercase;
}
.btn-check:checked+.btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check)+.btn:active:focus-visible, .btn:focus-visible {
    box-shadow: none;;
}

.btn-link{
    color: inherit;
    text-decoration: none;
}
.btn-link:hover{
    color: var(--bs-green);
}
.btn-red:hover{
    color: red;
}
.btn-primary{
     background-color: var(--bs-primary);
     border-color: var(--bs-primary);
}
.btn-primary:hover{
     background-color: var(--bs-primary);
     border-color: var(--bs-primary);
}
.btn-outline-primary{
     border-color: var(--bs-primary);
    color: var(--bs-primary);
}
.btn-outline-primary:hover{
     background-color: var(--bs-primary);
     border-color: var(--bs-primary);
}
.btn-light{
     background-color: var(--bs-white);
     border-color: var(--bs-white);
}
.btn-light:hover{
     background-color: var(--bs-light);
     border-color: var(--bs-light);
}
.btn-secondary{
     background-color: rgba(var(--bs-primary-rgb), 0.1);
     border-color: transparent;
    color: var(--bs-primary);
}
.btn-secondary:hover{
     background-color: rgba(var(--bs-primary-rgb), 0.2);
     border-color: transparent;
    color: var(--bs-primary);
}
.btn-success{
     background-color: rgba(var(--bs-green-rgb), 0.9);
     border-color: rgba(var(--bs-green-rgb), 0.9);
}
.btn-success:hover{
     background-color: rgba(var(--bs-green-rgb), 1);
     border-color: rgba(var(--bs-green-rgb), 1);
}

.btn-lg, .vc_btn3.vc_btn3-size-lg, .vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-lg {
    font-size: clamp(20px,3.5vw,24px);!important;
    height: inherit;
    padding: 6px 30px 8px !important;
}
.btn-lg, .vc_btn3.vc_btn3-size-lg.vc_btn3-style-outline{
    border-width: 6px!important;
}
.btn-lg, .vc_btn3.vc_btn3-size-lg.vc_btn3-shape-rounded{
    border-radius: 10px!important;
}
.vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline {
    color: var(--bs-primary)!important;
    border-color: var(--bs-primary)!important;
}
.vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline.active, .vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline:active, .vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline:focus, .vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline:hover {
    color: var(--bs-white)!important;
    background-color: var(--bs-primary)!important;
}
.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline.active, .vc_btn3.vc_btn3-color-white.vc_btn3-style-outline:active, .vc_btn3.vc_btn3-color-white.vc_btn3-style-outline:focus, .vc_btn3.vc_btn3-color-white.vc_btn3-style-outline:hover {
    color: var(--bs-primary)!important;
}
.btn-xxl, .btn-xxl>.vc_btn3.vc_btn3-size-lg{
    font-size: clamp(36px,15vw,80px);;
    padding: clamp(50px,15vw,150px) clamp(20px,5vw,40px);
    font-weight: 700;
    line-height: clamp(36px,15vw,90px);;
    text-transform: inherit;
    border-width: 8px;
    border-radius: 25px;
    height: 100%;
	max-height: 470px;
    display: grid;
    place-content: center;
}

.input-group-light>*{
    border-color: #d9d9d9;
        border-width: 1px;
}
.input-group-light>*:focus{
    border-color: #d9d9d9;
        outline: none; 
    box-shadow: none;
}
.input-group-light>.input-group-text{
    color: var(--bs-secondary);
}
.input-group-light>.btn, .input-group-light>button{
    color: var(--bs-primary);
}
.input-group-light>.btn:hover, .input-group-light>button:hover{
    border-color: #d9d9d9;
    background-color: var(--bs-light);
}


input[type="radio"]{
  display: none;
}
input[type="radio"] + label{
  position: relative;
  display: inline-block;
  padding-left: 1.5em;
  cursor: pointer;
  line-height: 1em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
input[type="radio"] + label:before,
input[type="radio"] + label:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  text-align: center;
  color: white;
  font-family: Times;
  border-radius: 50%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
input[type="radio"] + label:before {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  box-shadow: inset 0 0 0 0.15em var(--bs-white), inset 0 0 0 1em var(--bs-white);
    border: 2px solid var(--bs-secondary);
}

input[type="radio"]:checked + label:before {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  box-shadow: inset 0 0 0 0.15em var(--bs-white), inset 0 0 0 1em var(--bs-primary);
border: 2px solid var(--bs-primary);
}

.form-group .form-check{padding-left: 0;}

.toggle-eye{
    cursor: pointer;
    position: absolute;
    right: .5rem;
    bottom: 0;
    display: grid;
    place-content: center;
    padding-inline: 10px;
    line-height: 0;
    height: 40px;
}


#saved-images{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
#saved-images .image-wrapper{
    display: inline-block;
    position: relative;
}
#saved-images .image-wrapper img{
    width: 100px;
    border-radius: 3px;
    aspect-ratio: 1;
    object-fit: cover;
}
#saved-images .image-wrapper .remove-icon{
    position: absolute;
    top: 2px;
    right: 2px;
    cursor: pointer;
    color: red;
    background: white;
    aspect-ratio: 1;
    font-size: 14px;
    line-height: normal;
    width: 15px;
    display: grid;
    place-content: center;
    border-radius: 3px;
}
#saved-images .image-wrapper .remove-icon:hover{
        color: white;
    background: red;
}



.dropzone-area {
    background-color: rgba(var(--bs-primary-rgb), 0.03);
    padding: 15px;
    border-radius: 10px;
    transition: border-color 0.3s;
    cursor: pointer;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: normal;
    font-size: .9em;
    color: #ccc;
    border: 1px dashed  rgba(var(--bs-primary-rgb), 0.5);
    margin-block: 10px;
    max-width: 300px;
}

.dropzone-area.drag-over {
    background-color:  rgba(var(--bs-primary-rgb), 0.1);
    border-color:  rgba(var(--bs-primary-rgb), 1); 
}


/* =ul li
-------------------------------------------------------------- */

ul.list{
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.list>li{
    display: flex;
    gap:10px;
}
ul.list>li>a.active{
    font-weight: 700;
}
ul.list>li+li{
    margin-top: 5px;
}
/*
ul.list>li::before {
    content: "\F633";
    font-family: "Bootstrap-icons";
}
*/


/* =Search listing page
-------------------------------------------------------------- */
.search-listing-wraper{
    display: grid;
    grid-template-rows: auto 1fr;
}
.search-listing-wraper header{
    border-bottom:6px solid var(--bs-primary);
}
ul.search-list{
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.search-list>li{
    display: flex;
    gap:10px;
}
ul.search-list>li+li{
    margin-top: 10px;
}
ul.search-list>li>a>img{
    max-width: 50px;
    aspect-ratio:1;
    object-fit: cover;
    border-radius: 5px;
}

/* =Dashboard
-------------------------------------------------------------- */
.column-left{
    border-right: 1px solid rgba(var(--bs-dark-rgb), 0.1);
    padding-block:40px;
}
.column-right{
    padding-block:40px;
}
.avtar-profile, .vendor-profile{
    max-width: 150px;
    aspect-ratio: 1;
    width: 100%;
    border-radius: 50%;
    background-color: var(--bs-light);
    background-image: url(http://digitalvtx.com/fixerup/wp-content/uploads/2025/06/user.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(var(--bs-dark-rgb), 0.1)
}
.avtar-profile>img, .vendor-profile>img{
    width: 100%;
    height: 100%;
    aspect-ratio:1;
    object-fit: cover;
}
.vendor-profile{
    max-width: inherit;
    border-radius: 5px;
     box-shadow:none;
}
.left-nav{
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    font-weight: 600;
}
.left-nav>li{
    margin-bottom: 5px;
}
.left-nav>li>a{
    color: rgba(var(--bs-dark-rgb), 0.6);
    display: block;
    border-radius: 5px;
    padding: 10px;
}
.left-nav>li>a:hover, .left-nav>li>a.active{
    color: rgba(var(--bs-dark-rgb), 1);
}
.left-nav>li>a i{
    margin-right: 10px;
}

.left-nav>li.highlight>a{
    color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.1);
      position: relative;
  overflow: hidden;
}
.left-nav>li.highlight>a:hover{
    background: rgba(var(--bs-primary-rgb), 0.15);
}

.left-nav>li.highlight>a::after {
  content: '';
  display: block;
  width: 75px;
  height: 175%;
  background: rgb(255,255,255);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 25%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 75%, rgba(255,255,255,0) 100%);
  opacity: 0.5;
  position: absolute;
  top: -20px;
  left: 0;
  animation: shine 2s infinite;
  transform: translateX(250px) rotate(-25deg);
}
@keyframes shine {
    0% {
    transform: translateX(-30px) rotate(-25deg);
  }
  50% {
    transform: translateX(250px) rotate(-25deg);
  }
  100% {
    transform: translateX(250px) rotate(-25deg); /* Hold position for pause */
  }
}


/* =Table
-------------------------------------------------------------- */

.table .avtar-profile{
    width: 40px;
    height: 40px;
    margin: 0;
}
.table .btn{
    min-width: 70px;
    text-transform: uppercase;
}
.table>thead th{
    color: rgba(var(--bs-dark-rgb), 0.5);
    font-size: .9em;
    font-weight: 400;
}

.table th[scope="col"] {
    min-width: 130px; /* Minimum column width */
    max-width: 300px; /* Maximum column width */
}

/* Example: Highlight "Name" column */
.table th[scope="col"]:nth-child(1) {
  min-width: 60px;
}
.table th[scope="col"]:nth-child(2), .table th[scope="col"]:nth-child(3) {
  width: 50%;
}

.no-content td{
    font-size: .8em;
    font-style: italic;
    color: var(--bs-secondary);
    padding-block: 1rem;
}



/* =Tab
-------------------------------------------------------------- */

.nav.nav-tabs{
    gap:5px;
}
.nav-tabs .nav-link{
    background: var(--bs-light);
    color: inherit;
        padding: 15px;
        padding-block: 12px;
}


/* =Review
-------------------------------------------------------------- */
.review-box+.review-box{
    margin-top: 40px;
}
.review-box .review-container{
    background: var(--bs-light);
    padding: 20px 20px;
    border-radius: 10px;
    font-style: italic;
    position: relative;
        margin-bottom: 20px;
}
.review-box .review-container:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 30px;
    aspect-ratio: 1;
    width: 16px;
    background: var(--bs-light);
    transform: rotate(45deg);
}
.review-images img{
    height: 50px;
    width: 50px;
    aspect-ratio:1;
    object-fit: cover;
    border-radius: 5px;
        border: 1px solid #ccc;
}

.review-box .user-profile img{
        width: 28px;
    height: 28px;
}


/* =Swiper Js
-------------------------------------------------------------- */

.swiper-button-next:after, .swiper-button-prev:after {
    background: #fff;
    font-size: 16px!important;
    aspect-ratio: 1;
    width: 30px;
    height: 30px;
    border-radius: 3px;
    display: grid;
    place-content: center;
}


/* =Service List
-------------------------------------------------------------- */
ul.service-list{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: clamp(20px, 3.5vw, 40px);
}
ul.service-list li {
    flex: 0 0 168px;
}
ul.service-list li a{
    aspect-ratio:1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bs-white);
    border: 2px solid var(--bs-dark);
    border-radius: 10px;
    box-shadow: 3px 3px 0 var(--bs-dark);
    font-size: 16px;
    line-height: normal;
    color: #000;
    padding: clamp(15px, 2.5vw, 30px);
    text-align: center;
    height: 100%;
}
ul.service-list li a:hover{
    background: #e2eeff;
    border-color: var(--bs-primary);
    box-shadow: 3px 3px 0 var(--bs-primary);
}

ul.service-list li a img{
    max-height: 55px;
    margin-bottom: 20px;
}
ul.service-list li a i{
    font-size: 30px;
    margin: 12px 0 26px;
}


/* =Footer
-------------------------------------------------------------- */

footer {
    font-size: 14px;
    padding: 20px 0;
    background: var(--bs-white);
    color: var(--bs-secondary);
    border-top: 1px solid rgba(var(--bs-dark-rgb), 0.2);
}

footer a:hover{
    color: var(--bs-green);
}
footer #footer-widget-area{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
footer #footer-widget-area #first p{
    margin-bottom: 0;
}

#menu-footer-nav{padding: 0; margin: 0; list-style: none;}
#menu-footer-nav li{display: inline-block; margin-right: 20px;}



/* =Modal
-------------------------------------------------------------- */
.modal-content>.btn-close{
    position: absolute;
    right: 0;
    padding: 15px;
    z-index: 1;
}
.modal-body, .ult_modal-body{
    padding: clamp(30px, 3vw, 40px)!important;
}
.ult_modal-content{
    border: 0!important;
}


/* =Alert
-------------------------------------------------------------- */
.alert{
    position: absolute;
    right: 30px;
    top: 120px;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 13px;
    z-index: 9999;
}
.alert-dismissible .btn-close {
    padding: 14px;
}
.norecords-alert{
     position: relative;
    left: 0;
    top: 0;
    color: var(--bs-danger-text-emphasis);
    background: var(--bs-danger-bg-subtle);
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 13px;
}

.bi.bi-star-fill, .bi.bi-star-half{
    color: var(--bs-primary);
}

/* =Mobile Safari ( iPad, iPhone and iPod Touch )
-------------------------------------------------------------- */

pre {
	-webkit-text-size-adjust: 140%;
}
code {
	-webkit-text-size-adjust: 160%;
}
#access,
.entry-meta,
.entry-utility,
.navigation,
.widget-area {
	-webkit-text-size-adjust: 120%;
}
#site-description {
	-webkit-text-size-adjust: none;
}


/* =Print Style
-------------------------------------------------------------- */

@media print {
	body {
		background: none !important;
	}
	#wrapper {
		clear: both !important;
		display: block !important;
		float: none !important;
		position: relative !important;
	}
	#header {
		border-bottom: 2pt solid #000;
		padding-bottom: 18pt;
	}
	#colophon {
		border-top: 2pt solid #000;
	}
	#site-title,
	#site-description {
		float: none;
		line-height: 1.4em;
		margin: 0;
		padding: 0;
	}
	#site-title {
		font-size: 13pt;
	}
	.entry-content {
		font-size: 14pt;
		line-height: 1.6em;
	}
	.entry-title {
		font-size: 21pt;
	}
	#access,
	#branding img,
	#respond,
	.comment-edit-link,
	.edit-link,
	.navigation,
	.page-link,
	.widget-area {
		display: none !important;
	}
	#container,
	#header,
	#footer {
		margin: 0;
		width: 100%;
	}
	#content,
	.one-column #content {
		margin: 24pt 0 0;
		width: 100%;
	}
	.wp-caption p {
		font-size: 11pt;
	}
	#site-info,
	#site-generator {
		float: none;
		width: auto;
	}
	#colophon {
		width: auto;
	}
	img#wpstats {
		display: none;
	}
	#site-generator a {
		margin: 0;
		padding: 0;
	}
	#entry-author-info {
		border: 1px solid #e7e7e7;
	}
	#main {
		display: inline;
	}
	.home .sticky {
		border: none;
	}
}



/* =Added by Amiya
-------------------------------------------------------------- */

.profile-image-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eee;
    position: relative;
    overflow: hidden;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
#cameraIcon {
    font-size: 24px;
/*    color: #ccc;*/
}
.user-profile img{
  border-radius: 100%;
  width: 40px;
  height: 40px;
object-fit: cover;
}




/* =Contact form 7 plugin
-------------------------------------------------------------- */

.wpcf7-not-valid-tip {
    font-size: .8em!important;
    margin-top: 3px;
}
.wpcf7 form .wpcf7-response-output{ 
    font-size: .8em!important;
    margin-inline: 0!important;
}


/*
.wpcf7-form-control-wrap{
    position: relative;
}
.wpcf7-form label {
  position: absolute;
  top: 0.75rem;
  left: 1rem;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  pointer-events: none;
}
.wpcf7-form .form-control:focus + label,
.wpcf7-form .form-control:not(:placeholder-shown) + label {
  top: -0.5rem;
  font-size: 0.75rem;
  color: #0d6efd;
}
*/

.img-blur{
    position: absolute;
    height: 100%;
    object-fit: cover;
    opacity: .5;
    filter: blur(5px);
    transform: scale(1.1);
}

.sticky-topbar{
    position: sticky;
    top: var(--sticky-offset, 0px); /* Default fallback */
}
.filterbox{
    background: #ffffff;
    padding-block: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    z-index: 1;
}

.share-topbar{
	background: #ffffff;
    padding-block: 10px;
    z-index: 1;
}
.map-box{
    border: 0;
    border-radius: 0.375rem;
}

#state-list{
	border-radius:10px;
}

/* =Responsive
-------------------------------------------------------------- */

@media (min-width: 1200px) {
    body{
        font-size: 16px;
    }
    .column-left{
        max-width: 290px; 
        width: 100%;
        padding-right: 40px;
        position: sticky;
        top: 87px;
        align-self: flex-start;
    }
    .column-right{
        padding-left: 40px;
    }
}
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Optional: fixes offset jump */
  }
.dropdown:hover .dropdown-menu.dropdown-menu-end {
    left: auto !important;
    right: 0;
    inset-inline-start: auto; /* for RTL support */
    inset-inline-end: 0;
  }
}
@media (max-width: 991.98px) {
#branding img {
    max-height: 50px;
}
.search-listing-wraper {
    border-top: 6px solid var(--bs-primary);
}
	#state-list{
	border-radius:0px;
}
	.district-wraper{
		max-width:inherit;
	}
	footer {
    text-align: center;
}
	}