/*
Theme Name: fixerup
Description: Top-rated home-based professionals in your area and book with confidence in minutes.
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: local business, home services, contractor directory, service listings, responsive layout, wpbakery compatible, modern design, bootstrap framework
Text Domain: fixerup
*/



/* =Global Elements
-------------------------------------------------------------- */
/* Import google font */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    
  --bs-primary: #1353d1;
  --bs-primary-rgb: 19, 83, 209;
  
  --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: 'Inter', sans-serif;
    font-size: 14px;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-weight: 600;
    margin-bottom: 1rem;
}
h1, .h1{font-size: 36px;}
h2, .h2{font-size: 30px;}
h3, .h3{font-size: 24px;}
h4, .h4{font-size: 20px;}
h5, .h5{font-size: 18px;}
h6, .h6{font-size: 16px;}
a {
    color: var(--bs-primary);
    text-decoration: none;
    transition: all .1s linear;
}

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

.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 */
}

.company-logo{
    max-height: 60px;
    padding: 10px 20px;
    background: var(--bs-light);
    border-radius: 5px;
    margin: 15px 0 20px;
}

.page .entry-title {
    display: none;
}

.vc_row{
    padding-top: 5vw;
    padding-bottom: 5vw;
}
.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);
}


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

header {
	padding: 20px 0;
    background-color: var(--bs-white);
    border-bottom: 1px solid rgba(var(--bs-dark-rgb), 0.2);
}

/* Branding loog */
#branding img {
	max-height: 75px;
}


/* =Menu
-------------------------------------------------------------- */

.navbar-nav{
    gap:20px;
    font-weight: 500;
}
.navbar-nav .menu-item a{
   color: var(--bs-secondary);
}
.navbar-nav .menu-item.current-menu-item a, .navbar-nav .menu-item a:hover{
    color: var(--bs-dark);
}


.dropdown-menu{
    border: 0;
    box-shadow: 0 0 20px rgba(var(--bs-dark-rgb), 0.1);
    font-size: .9em;
    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);
  }
}

/* =Flipbox
-------------------------------------------------------------- */
.vc-hoverbox-block-inner {
    padding: 40px!important;
}

/* =Card
-------------------------------------------------------------- */
.card{
    border:0; 
    padding: clamp(15px, 4.5vw, 40px);
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(var(--bs-dark-rgb), 0.1);
    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: 20px;
}
.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;
	line-height:0;
}
.custom-cards .card>.card-bottom>.btn{
    min-width: inherit;
    display: grid;
    place-content: center;
    padding-inline: 0;
    aspect-ratio: 1;
    height: 36px;
	width:36px;
}
.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);
}


/* =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-control, .btn{
    border-width: 1px;
}
*/
.form-control, .form-select{
    border-color: var(--bs-secondary);
}
.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.btn, input.btn, .btn,
.form-select,
.form-floating > .form-control,
.form-floating > .form-select {
	height: 44px;
	min-height: initial;
	padding: 10px 16px!important;
	font-size: 1rem;
	line-height: normal;
	box-sizing: border-box;
}
textarea.form-control{
    height: inherit;
    resize: none;
}
.form-floating>label {
	display: flex;
	align-items: center;
}
.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{
	padding: 2px 16px;
	background: #fff;
	height: inherit;
	top: -5px;
}

.form-control-sm,
.form-control-lg,
.btn-sm,
.btn-lg {
  height: auto !important;
}

.formgroup-lg{font-size:18px;}
.formgroup-lg input.form-control,
.formgroup-lg select.form-control,
.formgroup-lg textarea.form-control,
.formgroup-lg input[type="file"].form-control,
.formgroup-lg button.btn, .formgroup-lg input.btn, .formgroup-lg .btn,
.formgroup-lg .form-select,
.formgroup-lg .form-floating > .form-control,
.formgroup-lg .form-floating > .form-select{
	height:54px;
}


.btn, .vc_btn3, .ult-modal-input-wrapper.btn button{
    font-weight: 600;
    padding-inline: 25px;

}
.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-primary, .vc_btn3.vc_btn3-color-blue{
     background-color: var(--bs-primary)!important;
     border-color: var(--bs-primary)!important;
}
.btn-primary:hover, .vc_btn3.vc_btn3-color-blue:hover{
     background-color: rgba(var(--bs-primary-rgb), 0.9)!important;
     border-color: rgba(var(--bs-primary-rgb), 0.9)!important;
}
.btn-outline-dark{
     border-color: var(--bs-dark);
}
.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-sm{
    font-size: 10px!important;
    font-weight: 400;
}

.btn-groups button i, .btn-groups button img {
    display: block;
    max-height: 44px;
    font-size: 2em;
    line-height: normal;
    margin: auto auto 6px;
}
.btn-groups button {
    aspect-ratio: 1;
    height: 150px;
    line-height: normal;
    background: rgb(255 255 255 / 50%);
    border:0;
    color: inherit;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 5px rgb(0 0 0 / 10%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-groups button:hover{
    background: rgb(255 255 255 / 80%);
}


.ult-modal-input-wrapper.btn{
    padding: 0!important;
}
.ult-modal-input-wrapper.btn.text-uppercase button{
    text-transform: uppercase;
}
.ult-modal-input-wrapper.btn button{
    border: 0;
    padding-block: 0 !important;
    height: 100%;
}
.ult-modal-input-wrapper.btn button, .ult-modal-input-wrapper.btn button:hover{
    background: transparent !important;
}




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




/* =Saved Images
-------------------------------------------------------------- */
#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;
}


/* =Drag and Drop file input
-------------------------------------------------------------- */

.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
-------------------------------------------------------------- */

.list ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.list ul>li{
    display: flex;
    gap:10px;
}
.list ul>li+li{
    margin-top: 15px;
}
.list ul>li::before {
    content: "\F633";
    font-family: "Bootstrap-icons";
}



/* =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(https://fixerupapp.com/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;
}
.table td .btn:not(.modal .btn){
	width:100%;
}


/* =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: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 20px;
    margin-top: clamp(20px, 3.5vw, 40px);
}
/*ul.service-list li {
    flex: 0 0 168px;
}*/
ul.service-list li a{
    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);
    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);
    border-top: 1px solid rgba(var(--bs-dark-rgb), 0.2);
	z-index:1;
}

footer, footer a{
    color: rgba(var(--bs-dark-rgb), 0.6);
}
footer a:hover{
    color: rgba(var(--bs-dark-rgb), 1);
}
footer #footer-widget-area{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
footer #footer-widget-area #first p{
    margin-bottom: 0;
}
footer #footer-widget-area #first{flex: 1;}

#menu-footer-nav{padding: 0; margin: 0 0 15px 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: 1;
}
.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;
}

/* =Added by Arupa
-------------------------------------------------------------- */
/*
.btn-dark-primary .vc_btn3{background-color: #1452d1!important; color:#fff!important; font-weight:700!important; text-transform:uppercase!important; border-color:#1452d1!important;}
.btn-dark-primary .vc_btn3:hover{background-color: #1e479d!important; border-color:#1e479d!important;}
*/
/* .btn-darkblue-primary .vc_general{border:0!important; background-color: #1e479d!important; color:#fff!important; font-weight:700!important; text-transform:uppercase!important;}
.btn-darkblue-primary .vc_general:hover{background-color: #000!important;} */
.bg-light-primary{background-color:#0c3690;}
.word-space{line-height:30px;}
.patternbox{position:relative;}
.patternbox:before{position:absolute; content:''; inset:0; background:url(https://fixerupapp.com/wp-content/uploads/2025/06/newpattern.png); opacity:.5;}
.imgbox img{border-radius:30px;}
.contact-form .form-floating>label {padding:7px 10px;}
.lineshape{position:relative;}
.lineshape:before{position:absolute; content:''; width:100%; height:100%; background:url(https://fixerupapp.com/wp-content/uploads/2025/06/lineshape.png);right: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    rotate: -180deg;
    opacity: .2;}
.contactpic img{border-radius:20px!important; height: 590px !important;
    object-fit: cover;
    width: 100%;}


/* =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;
}
*/

/* =Login Page
-------------------------------------------------------------- */

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

.home .upb_video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
	opacity: .5;
}

.home .upb_video-bg {
  width: 100%!important;
  height: 100%;
  min-width: unset;
  left: 0;
transform: scale(1.1);
	filter: blur(5px);
}

.home .upb_video-src {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        width: 98%;
    }



.aio-icon-title{
	margin-top:1rem;
}
.grid-card .wpb_wrapper{
	    display: flex;
	flex-wrap:wrap;
    gap: 30px;
}
.grid-card .wpb_wrapper .aio-icon-box{
/* 	border: 1px solid #ccc; */
	box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    background: #fff;
    padding: 30px;
	height: 100%;
}
.grid-card .wpb_wrapper>div {
    flex: 0 0 calc(33.333% - 20px);
	    margin-bottom: 0;
}


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

@media (min-width: 1400px) {
    .container, 
	.container-lg, 
	.container-md, 
	.container-sm, 
	.container-xl, 
	.container-xxl {
        max-width: 1600px;
    }
	body, footer{font-size: 18px;}
	h1, .h1{font-size: 60px;}
	h2, .h2{font-size: 48px;}
	h3, .h3{font-size: 40px;}
	h4, .h4{font-size: 30px;}
	h5, .h5{font-size: 24px;}
	h6, .h6{}
	h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
		margin-bottom: 1.5rem;
	}
	#branding img {max-height: 100px;}
	.formgroup-lg{font-size:20px;}
	.btn-sm{font-size: 12px!important;}
	input.form-control, select.form-control, textarea.form-control, input[type="file"].form-control, button.btn, input.btn, .btn, .form-select, .form-floating > .form-control, .form-floating > .form-select{
		font-size:18px;
	}
	.table>:not(caption)>*>*{ padding-block: 1rem; }
	/*ul.service-list li { flex: 0 0 178px; }*/
	.avatar-stack .avatar-item {height: 40px;width: 40px;}
	.custom-cards .card>.card-bottom>.btn {height: 40px;width: 40px;}
    .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;
  }

  .dropdown-toggle::after {
    transform: rotate(180deg); /* Optional: arrow effect */
  }
}
@media (max-width: 575.98px) {
	h1, .h1{font-size: 36px;}
	h2, .h2{font-size: 30px;}
	h3, .h3{font-size: 24px;}
	h4, .h4{font-size: 20px;}
	h5, .h5{font-size: 18px;}
	h6, .h6{}
}