.footer__wrapper-widget {
    border: none !important;
}
.tf-box {
    border: none;
    background: none;
    max-width: none;
}

.service-slide-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* allows slider items to be clickable */
}

.service-slide-prev,
.service-slide-next {
  background: #3e9422; /* optional – add your background color */
  border-radius: 50%;
  color:white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  pointer-events: all; /* re-enable click */
  cursor: pointer;
  z-index: 5;
}

/*.service-slide-prev {*/
/*  position: relative;*/
/*  left: -20px;*/
/*}*/

/*.service-slide-next {*/
/*  position: relative;*/
/*  right: -20px;*/
/*}*/

.service-slide-prev {
    position: relative;
  left: -40px !important;
}

.service-slide-next {
    position: relative;
  right: -40px !important;
}

/* Tablet screens (<= 991px) */
@media (max-width: 991px) {
  .service-slide-prev {
      position: relative;
    left: -20px !important;
  }
  .service-slide-next {
      position: relative;
    right: -20px !important;
  }
}

/* Mobile screens (<= 575px) */
@media (max-width: 575px) {
  .service-slide-prev {
      position: relative;
    left: 0 !important;
  }
  .service-slide-next {
      position: relative;
    right: 0 !important;
  }
}

.service__item {
  padding: unset;
  display: flex;
  flex-direction: column; 
  align-items: start;
  justify-content: flex-start;
  text-align: start;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: unset;
  background: unset;
}
.service__item:hover {
    box-shadow: unset;
}

.service__item:hover {
  transform: translateY(-5px);
}

.service__item-image {
  width: 100%;
  min-height: 300px; 
  background-size: cover;
  background-position: center;
  border-radius: 8px; 
}

.service__item .title {
    font-size: 16px;
    line-height: 24px;
    color: rgba(15, 15, 15, 1.00);
    text-decoration-line: none;
    text-transform: none;
    font-weight: 600;
    text-align: left;    
}

html.dark-theme .service__item .title {
    color: white;
}


.service__item-btn {
  line-height: 6px;
    font-size: 10px;
}
.service-item-btn {
        display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid var(--btn-clr);
}

/*<!-----------------------------------------start here--------------------------------------->*/

/* ========================= */
/* Popup container overrides */
/* ========================= */
.slider-wrapper .service__item-popup {
    position: fixed !important; /* ensure it floats above everything */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.7) !important; /* dark overlay */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    z-index: 9999 !important;
    padding: 15px !important;
}

/* Show popup */
.slider-wrapper .service__item-popup.active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Popup inner container */
.slider-wrapper .service__item-popup-inner {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    background: #fff !important;
    border-radius: 12px !important;
    width: 100% !important;
    max-width: 900px !important;
    padding: 20px !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
    position: relative !important;
    overflow-y: scroll !important;
    animation: popupFadeIn 0.3s ease forwards !important;
    flex-grow: 0;
    padding: unset;
}

/* Close button */
.slider-wrapper .service__item-popup-inner .close__popup {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: #ff5e5e !important;
    border: none !important;
    color: #fff !important;
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
    font-size: 18px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.3s ease !important;
}

.slider-wrapper .service__item-popup-inner .close__popup:hover {
    transform: scale(1.1) !important;
}

/* Left content */
.slider-wrapper .service__item-popup-inner .left-content {
    flex: 1 1 40% !important;
    background: #f8f9fa !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
    border-radius: 12px 0 0 12px !important;
}

/* Left content image */
.slider-wrapper .service__item-popup-inner .left-content .service__item-icon img {
    width: 100% !important;
    max-width: 180px !important;
    border-radius: 50% !important;
    margin-bottom: 15px !important;
    object-fit: cover !important;
}

/* Left content title and text */
.slider-wrapper .service__item-popup-inner .left-content .title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin-bottom: 10px !important;
}

.slider-wrapper .service__item-popup-inner .left-content .txt {
    font-size: 14px !important;
    color: #555 !important;
}

/* Right content */
.slider-wrapper .service__item-popup-inner .right-content {
    flex: 1 1 60% !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    text-align: left !important;
}

/* Right content text */
.slider-wrapper .service__item-popup-inner .right-content .top-text {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #444 !important;
    margin-bottom: 15px !important;
}

/* Inner slider images */
.slider-wrapper .service-inner-slider-item {
    text-align: center !important;
    margin-right: 10px !important;
}

.slider-wrapper .service-inner-slider-item img {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    margin-bottom: 5px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.slider-wrapper .service-inner-slider-item span {
    display: block !important;
    font-size: 13px !important;
    color: #333 !important;
    line-height: 1.5 !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
    white-space: nowrap !important;
}

/* Popup open animation */
@keyframes popupFadeIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 991px) {
    .slider-wrapper .service__item-popup-inner {
        flex-direction: row !important;
        padding: 20px !important;
        flex-grow: 0;
        overflow-y: scroll !important;
    }

    .slider-wrapper .service__item-popup-inner .left-content,
    .slider-wrapper .service__item-popup-inner .right-content {
        width: 100% !important;
        padding: 10px !important;
    }

    .slider-wrapper .service-inner-slider-item img {
        width: 80px !important;
        height: 80px !important;
    }
}

@media (max-width: 575px) {
    .slider-wrapper .service__item-popup-inner {
        padding: 15px !important;
        flex-direction: row !important;
        flex-grow: 0;
        overflow-y: scroll !important;
    }

    .slider-wrapper .service-inner-slider-item img {
        width: 60px !important;
        height: 60px !important;
    }
}

/*<!-------------------------------------------------testinomials------------------------------------------------------>*/

/* ============================
   Testimonial Card Style (Snip1157 Inspired)
   ============================ */
.testimonial-section {
  /*background-color: #212121;*/
  background: transparent;
  text-align: center;
}

figure.snip1157 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px auto;
  min-width: 220px;
  max-width: 320px;
  width: 100%;
  color: #333;
  text-align: left;
  background: transparent;
  /*padding: 5px;*/
}

@media (max-width: 1024px) {
    figure.snip1157 {
        padding: 8px;
    }
}

figure.snip1157 * {
  box-sizing: border-box;
  transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

figure.snip1157 img {
  max-width: 100%;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  margin: 40px 0 0 10px;
  object-fit: cover;
}

figure.snip1157 blockquote {
  display: block;
  border-radius: 8px;
  position: relative;
  background-color: #84b985;
  padding: 25px 50px 30px 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.6em;
  font-style: italic;
}

figure.snip1157 blockquote:before,
figure.snip1157 blockquote:after {
  font-family: 'FontAwesome';
  content: "\201C";
  position: absolute;
  font-size: 50px;
  opacity: 0.3;
}

figure.snip1157 blockquote:before {
  top: 25px;
  left: 20px;
}

figure.snip1157 blockquote:after {
  content: "\201D";
  right: 20px;
  bottom: 0;
}

figure.snip1157 .arrow {
  top: 100%;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid #84b985;
  margin: 0;
  position: absolute;
}

figure.snip1157 .author {
  position: absolute;
  bottom: 45px;
  padding: 0 10px 0 120px;
  margin: 0;
  text-transform: uppercase;
  color: #fff;
  transform: translateY(50%);
}

figure.snip1157 .author h5 {
  margin: 0;
  font-weight: 800;
  opacity: 0.8;
}

figure.snip1157 .author h5 span {
  font-weight: 400;
  text-transform: none;
  padding-left: 5px;
  color: #ccc;
}

/* Swiper alignment tweaks */
.testimonial-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.testimonial__item-item.swiper-slide-active{
  background: transparent !important;  
}
.testimonial__item-item {
  display: flex;
  justify-content: center;
  /* position: relative;*/
  /*overflow: hidden;*/
  /*margin: 10px;*/
  /*min-width: 220px;*/
  /*max-width: 310px;*/
  /*width: 100%;*/
  /*color: #333;*/
  /*text-align: left;*/
  box-shadow: none !important;
  background: transparent !important;
}

.slider-bottom .owl-btn {
  cursor: pointer;
  color: #fff;
  font-size: 22px;
}

.topbar-text.dropdown.d-flex .topbar-link{
    color: white !important;
}
.navbar-top-wrapper .top-padding .tel-link.text--base{
    color: white !important;
}

/*<!--------------------------------------------------login page------------------------------------------------------>*/

/* Background */
/*.login-bg {*/
/*    background: url("{{ asset('public/assets/provider-module/img/media/login-bg.png') }}") no-repeat center center;*/
/*    background-size: cover;*/
/*    min-height: 100vh;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: space-between;*/
/*}*/
.login-bg{
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: space-around;
    position: relative;
}

@media (min-width: 1025px) {
    .login-bg{
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: flex-end;
    }
    
}



/* Left Overlay Text */
.overlay-text {
    position: relative;
    /*top: 100px;*/
    left: 40px;
    color: #000;
    text-align: center;
}
.welcome-subheading {
    font-size: 20px;
    color: #000;
}
.deposit-label1 {
    font-size: 42px;
    line-height: 1.3;
    color: #000;
}
.welcome-message {
    font-size: 18px;
    color: #44992b;
}

/* Login Card */
.login-card {
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}
.login-card .form-label {
    font-weight: 500;
    color: #000;
}
.login-card .form-control {
    border-radius: 9px !important;
    background: #fff !important;
    border: 1px solid #ddd;
    color: #000 !important;
    font-size: 0.875rem;
}
.custom-font-size{
    font-size: 0.875rem !important;
}

/* Buttons */
.btn-primary {
    background-color: #44992b !important;
    border: none !important;
}
/*.btn-primary:hover {*/
/*    background-color: #a14d62 !important;*/
/*}*/

/* Customer Care */
.customer-care {
    background-color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #000;
    font-weight: 500;
}
.cc {
    color: #861f41;
}

/* Responsive */
@media (max-width: 768px) {
    .overlay-text {
        position: relative;
        top: 0;
        left: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
}

.badge.badge-primary.fz-12.opacity-75{
    position: absolute;
    top: 0;
    right: 0;
}
/*.col-md-5.d-none.d-md-block {*/
/*    display: flex !important;*/
/*    justify-content: flex-end;*/
/*    align-items: center;*/
    /*justify-content: flex-start;*/
/*    padding-left: 40px;*/
/*}*/
/*.overlay-text {*/
/*    position: relative;*/
/*    left: 0; */
/*    text-align: center;*/
/*    transform: none; */
/*}*/
/*#login-form{*/
/*    width: 100%;*/
/*}*/



