/********** Template CSS **********/
.TextBlock{width: 550px;}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
body{overflow-x: hidden;}

/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px; border-radius: 5px;
        padding-top: 16px !important;
}

/*.btn-lg-square {
    width: 45px;
    height: 45px;
}*/

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 4px 10px 15px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s; border-bottom: 1px solid #eee;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--bs-dark);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}





/*** Header ***/
.carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;
    background: rgba(0, 0, 0, .7);
    padding: 3rem;
    padding-left: 11rem;
    /*z-index: 1;*/
}

.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem; display: none;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .carousel .carousel-item {
        position: relative;
        min-height: 600px;
    }

    .carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }

    .carousel .carousel-caption {
        padding-left: 10rem;
    }
}

@media (max-width: 768px) {
    .carousel .carousel-item {
        min-height: 500px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }

    .carousel .carousel-caption {
        padding-left: 9rem;
    }
}



@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 7rem;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}

/* .about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid var(--bs-primary);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
} */

@keyframes animateUpDown {
    0% {
        top: -25px;
    }
    50% {
        top: -45px;
    }
    100% {
        top: -25px;
    }
}


/*** Features ***/
.feature {
    background: linear-gradient(to right, rgba(0, 0, 0, .1), rgba(0, 0, 0, 1) 50%), url(../img/carousel-1.jpg) left center no-repeat;
    background-size: cover;
}

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important; margin: 0 5px;
}

.feature-icon {
    position: relative;
    transition: .5s;
}

.feature-item:hover .feature-icon {
    margin-left: 3rem;
}

.feature-item a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--bs-secondary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.feature-item a:hover {
    color: var(--bs-primary) !important;
}

.feature-item a:hover::after {
    background: var(--bs-primary);
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Service ***/
.service .service-item {
    position: relative;
    margin-top: 45px;
}

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: var(--bs-primary);
}

.service .service-inner:hover::before {
    height: 100%;
    top: 0;
}

.service .service-item img {
    margin-top: -45px;
    padding-left: 45px;
}

.service .service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}

.service .service-item:hover a {
    padding-left: 45px !important;
}


/*** Appoinment ***/
.appoinment {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.jpg) left center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team .team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.testimonial-img div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-duration: 5s;
}

.testimonial-img div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: .1s;
}

.testimonial-img div:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: .4s;
}

.testimonial-img div:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: .7s;
}

.testimonial-img div:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px var(--bs-white) inset;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Appoinment ***/
.newsletter {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-3.jpg) left center no-repeat;
    background-size: cover;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #dbdbdb;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--bs-primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #1d2439;
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}
.has-search .form-control {
    padding-left: 2.375rem;
}

.has-search .form-control-feedback {
position: absolute; z-index: 2; display: block;
width: 2.375rem; height: 2.375rem;
line-height: 2.375rem;
text-align: center;
    pointer-events: none;
    color: #aaa;
}
.gry-bg{background:#fbf8f6;}
.BoxInner{background: #fff; border: 1px solid #dee2e6; padding: 15px;}
.tabLink{width: 100%;}
.tabLink a{background: #fff;
  border: 1px solid #999;
  color: #999;
  padding: 7px 13px;
  border-radius: 25px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px; cursor: pointer;}

.tabLink a.bg-primary {
    background-color: #ce9233 !important;
    border: 1px solid #ce9233 !important;
}
.name{width: 45px;
  height: 45px;
  border-radius: 50%;
  line-height: 45px;
  color: #fff;
  font-size: 23px; margin-bottom:10px;}
.CondetailsArea a{padding-top: 5px;
  padding-left: 13px;
  font-size: 22px;
  color: #000;}
  .CondetailsArea img{margin-top: 10px;
  margin-left: 9px;}
.mobile {
  align-items: center;
  display: flex;
  margin: .5rem 0; color: #000; margin-left: 2px;
}
.mobile a{color: #000; font-size: 16px; padding-top: 0;
  padding-left: 6px;}
  .key-points{width: 100%; align-items: center;
  display: flex;
  margin: .5rem 0;}
.key-points span {
  align-items: center;
  background:#faf9f8;
  color: #000;
  display: flex;
  font-size: 14px;
  line-height: normal;
  margin-right: 1rem;
  padding: .6rem 1rem; border-radius: 5px;
}
.Rowview.liStP {
  display: block;
  margin-bottom: 11px;
}
.Rowview a.viewBtn {
  width: auto;
  color: #fff;
  padding: 9px 26px;border-radius: 5px; margin-right:6px ;
}

.Rowview a.ConBtn {width: auto;background: #374b5c; color: #fff; padding: 9px 26px; border-radius: 5px;}
.Rowview a.WhatsApp {width: 51px; border: 1px solid #a8a8a8; color: #29a71a; padding: 6px 11px;
  border-radius: 5px; text-align: center; margin-left: 10px; display: inline-block;}
  a.shareIcon {border: 1px solid #a8a8a8; color: #fff; padding: 6px 11px;
  border-radius: 5px; text-align: center; margin-left: 10px; display: inline-block; color: #000;}

  span.animation-element {
    font-family: sans-serif;
    display: inline-block;
    border-radius: 5px;
  }

@keyframes skew-x-shaking {
 0% { transform: skewX(-15deg); }
 5% { transform: skewX(15deg); }
 10% { transform: skewX(-15deg); }
 15% { transform: skewX(15deg); }
 20% { transform: skewX(0deg); }
 100% { transform: skewX(0deg); }
}
.Rowview a.WhatsApp img {
  width: 22px;
  margin-top: -3px;
}
.rating {
  line-height: 25px;
  color: #000;
}
.cNmae{font-size: 18px; color: #000;}
.dateT {
  line-height: 25px;
  color: #a5a5a5;
  font-size: 15px;
  margin-left: 10px;
}
.bluebg{background: #264764;}
.bg-red{background: #df604f;}
.text-justify{text-align: justify;}
.ConBox h3{font-size: 24px; }
.conList li{list-style-type: none; margin-bottom: 10px;}
.feature-item h5{font-size: 16px; line-height: 25px;}
.footer{background: #171d2f;}
.footer-title { color: #fff; font-size: 20px;font-weight: 600;  margin-bottom: 30px;}
.footer .footer-widget.footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  outline: none;
}
.footer-menu ul.footerlist li {
  line-height: 32px;  position: relative;  display: inline-block;  text-transform: capitalize;
}
ul.footerlist li a {
  margin-right: 10px;
  color: #dbdbdb !important;
  font-size: 15px;
}
ul.footerlist span {
  display: inline-block;
  margin-right: 10px;
  color: #dbdbdb;
}
.footer p{color: #dbdbdb;font-size: 15px;}

/*home page css*/

.slider {
  background: url(../img/searchBanner.jpg) 0 0 no-repeat;
    background-size: auto;
  width: 100%;
  padding:130px 0 130px;
  background-size: 100%;
}
.darkText{color: #303e47;}
.primery-text{color: #ce9233;}
.form-control{border-radius: 5px;}
.form-floating > .form-select{padding-top: 11px; box-shadow: 0 0 0 .25rem rgba(206,146,51,.25);
border-radius: 5px;}
.form-floating{box-shadow:0 0 0 .25rem rgba(206,146,51,.50); border-radius: 5px;}
.themeBtm{border-radius: 5px; box-shadow:0 0 0 .25rem rgba(206,146,51,.50);}
.input-group{height: calc(3.5rem + 2px); border-radius: 5px;}
.input-group-text{background-color: transparent; border-radius: 5px 0;}
.Sr-Box:hover{background: #fff; border-radius: 5px;}
.tetx-justify{text-align: justify;}
.Sr-Box h4 a{font-size:24px;}

/* cities list css */

.category-item { margin-bottom: 22px; border-radius: 4px; -webkit-transition: all 0.3s; -moz-transition: all 0.3s;
  -ms-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; position: relative;
  text-align: center;  z-index: 1; border-radius: 5px;
}
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none;
  background-color: #000; opacity: 0.4; z-index: -1; border-radius: 5px;}
.category-item .overlay { z-index: 1;}
.category-item .category-img { width: 100%; border-radius: 5px;}
.category-item .category-content { position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 2;}
.category-item .cat-title {font-size: 18px;  color: #fff;}

.category-item:hover .badge { background-color: #f0aa3c;}
.category-item .badge { padding: 6px 11px; border: 2px solid #f0aa3c; font-size:14px;
  color: #fff; font-weight: 600; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -ms-transition: all 0.2s;
-o-transition: all 0.2s; transition: all 0.2s;border-radius: 5px;}


/*categories css*/

.category-items li {
  display: inline-block;
  width: 16.3%;
  padding: 0 6px;
}
.categories-box {
  filter: drop-shadow(0px 1px 4px rgba(19, 16, 34, 0.1));
      margin-bottom: 30px;
}
.categories-info {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #ffffff;
  border: 1px solid #f1f1f1;
  padding: 15px;
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  text-align: center;
  flex-direction: column;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.categories-info span {display: inline-block; margin:20px 0;}
.categories-info h6 {
  font-size: 17px;
  margin: 0 0 6px;
}

.categories-info:hover {
  background-color: #ce9233;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.categories-info:hover span img {
  filter: invert(1) brightness(100);
}
.categories-info:hover h6, .categories-info:hover p {
  color: #ffffff;
}

/*populer section css*/

.space-section .space-sec {
  border-bottom: 1px solid #d9d9d9;
  padding: 80px 0 56px;
}
.space-section .space-wrap {
  background: #ffffff;
  box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05), 0px 4px 9px -1px rgba(19, 16, 34, 0.03);
  border-radius: 10px;
  margin: 0 0 24px;
}
.space-section .space-img {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.space-section .space-img .fav-item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 10px;
  z-index: 1;
  font-size: 14px;
}
.space-section .space-img .featured-text {
  background: #ffba08;
  border-radius: 5px;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  padding: 5px 12px;
}
.space-section .space-content {
  position: relative;
  padding: 20px;
}
.space-section .space-cat {
  width: 55px;
  height: 55px;
  background: #f5f8fd;
  box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05), 0px 4px 9px -1px rgba(19, 16, 34, 0.03);
  border-radius: 10px;
  position: absolute;
  top: -28px;
  right: 10px;
}
.rating {
  margin: 0 0 10px;
}
.rating i.filled {
  color: #ffa800;font-size: 14px;
}
.space-section .space-content h5 {
  font-size: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0 0 8px;
}
.space-section .space-content ul {
  margin: 0 0 18px;
}
.space-section .space-content ul li.addr {
  font-size: 14px;
}
.space-section .space-content ul li {
  margin: 0 0 10px;
}
.Serv ul{padding-left: 0px;}
.Serv ul li{list-style-type: none;}

/*cat listing css*/

.Catlist-box {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 7px;
  padding: 15px 12px;
  min-height: auto;
}
.Catlist-box .Headinh{color: #000;
  font-weight: bold;}
.industry-list {
  font-size: 14px;
  margin-top: 10px;
  margin-left: 7px;
}
.industry-list li {
  font-size: 15px;
  margin-bottom: 10px; list-style-type: none;
}

.industry-list li a {
  color: #333;
}

.btn-light{color: #ce9233;}

.ProfInner {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px; box-shadow: 1px -1px 10px 2px rgba(222, 226, 231, 0.44);
}
.author-box {
  position: relative;
  display: flex;
  align-items: center;
}

.author-meta {
  width: calc(100% - 99px);
}
.author-img {
  width: 75px;
  height: 75px;
  margin-right: 24px;
}
.author-meta h4{position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: #242424;
  line-height: 22px;
}
.author-meta p {
  font-size: 14px;
  color: #6D6D6D;
  margin: 4px 0;
  line-height: 16px;
}
.verified {
  position: absolute;
  top: 5px;
  right: -25px;
  width: 16px;
  height: 16px;
  text-align: center;
  font-size: 8px;
  border-radius: 50%;
  color: #ffff;
  background-color: #00ba00;
  display: inline-block;line-height: 17px;
}
.location-box {
  padding: 13px 20px;
  position: relative;
  border: 1px solid #f0f0f0;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #6d6d6d;
}
.map {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: #d5a252;
  padding: 16px 40px;
  background-color: rgba(213, 162, 42, 0.1);
  border: 1px solid #d5a252;
  text-transform: uppercase;
  height: 100%;
}
.contact-box-main {
  padding: 20px;
  background-color: #F6FBF6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.contact-box {
  display: flex;
  align-items: center;
  gap: 6px;
}
.meta small {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #242424;
  text-transform: capitalize;
}
.meta a {
  color: #4FAD52;
}
.phone-2 .meta a {
  color: #4C7BE3;
}

a.btn.btn-whatsap {
  font-size:18px;
  background: #25d366;
  padding: 10px 35px;
  color: #fff;
  border-radius: 4px;
  margin-top: 20px;
  line-height: 25px;
}
.card-header {
  padding: 0 0 13px;
  border-bottom: 1px solid #dee2e7;
  display: flex;
  border-radius: 0;
  background: none;
}
.PostImg img{border-radius: 10px; margin-bottom: 30px;}
.ProfInner h6{font-size: 16px;}

/*gallery css*/

.gallery-item {
  display: block;
}

.gallery-item img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s;
}

.gallery-item:hover img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
}

.lightbox-modal .modal-content {
  background-color: var(--lightbox);
}

.lightbox-modal .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  z-index: 10;
  filter: invert(1) grayscale(100);
}

.lightbox-modal .modal-body {
  display: flex;
  align-items: center;
  padding: 0;
}

.lightbox-modal .lightbox-content {
  width: 100%;
}

.lightbox-modal .carousel-indicators {
  margin-bottom: 0;
}

.lightbox-modal .carousel-indicators [data-bs-target] {
  background-color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-inner {
  width: 75%;
}

.lightbox-modal .carousel-inner img {
  animation: zoomin 10s linear infinite;
}

.lightbox-modal .carousel-item .carousel-caption {
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 2rem;
  background-color: var(--lightbox);
  color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  width: auto;
}

.lightbox-modal .carousel-control-prev {
  left: 1.25rem;
}

.lightbox-modal .carousel-control-next {
  right: 1.25rem;
}

@media (min-width: 1400px) {
  .lightbox-modal .carousel-inner {
    max-width: 60%;
  }
}

[data-bs-theme = "dark"] .lightbox-modal .carousel-control-next-icon,
[data-bs-theme = "dark"] .lightbox-modal .carousel-control-prev-icon {
    filter: none;
}

.btn-fullscreen-enlarge,
.btn-fullscreen-exit {
  position: absolute;
  top: 1.25rem;
  right: 3.5rem;
  z-index: 10;
  border: 0;
  background: transparent;
  opacity: .6;
  font-size: 1.25rem;
}

.bi {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.035em;
  fill: currentcolor;
}
.modal{background-color: rgba(0,0,0,0.6);}
.gallery-item img{border-radius: 10px;}
#map iframe{border-radius: 10px;}

.whatsapp-box {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    border: 1px solid #eee;
    padding: 24px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.whatsapp-box-icon {
    margin-bottom: 12px;
}
.whatsapp-box-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    text-align: center;
}
.whatsapp-box-subtitle {
    font-size:15px;
    font-weight: 400;
    color: #666;
    text-align: center;
    line-height: 1.5;
}
.whatsapp-icon-container {
    position: absolute;
    left: -2px;
}
.whatsapp-icon {
    width: 50px;
    height: 50px;
    display: block;
    position: relative;
    z-index: 2;
}
.whatsapp-btn {
    display: flex;
    align-items: center;
    background: #1ebe57;
    border-radius: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    padding: 8px 18px 8px 8px;
    text-decoration: none;
    transition: box-shadow 0.2s, background 0.2s;
    position: relative;
    overflow: visible;
    max-width: max-content;
    margin: 0 auto;
}
.whatsapp-action {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", Arial, sans-serif;
    white-space: nowrap;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.10);
    padding-left: 50px;
}
.ContentPage ul li{list-style-type: none; padding-bottom: 10px;}
.ContentPage ul{padding: 0; margin: 0; padding-bottom: 20px;}
.ContentPage p{padding-bottom: 20px;}
.about-img img{border-radius:11px;}
.ScoreArea img{  width: 23px; margin-right:8px;}
.ScoreArea span { align-items: center; background: #f7f4f1;
    color: #000; display: flex;  font-size:13px;  line-height: normal;
    padding:5px 7px; border-radius: 5px;
    margin-bottom: 10px;}
.ScDiv{width: auto;}

/* =============== */

.ListingSeoCon h2{font-size: 25px; margin-bottom: 15px;}
.ListingSeoCon h3, h4, h5{color: #2b2c2e; font-size: 21px; margin-bottom: 15px;}
.ListingSeoCon table{width: 800px; margin: 0 auto;}
.ListingSeoCon table th{background-color: #ce9233; color: #fff; text-align: center;}
.listingBanner .carousel-item{height:430px;}
.listingBanner .carousel-item img{width: 100% !important;
  height: 100%;
  object-fit: cover;}
.listingBanner .carousel .carousel-caption{ padding-left: 8rem;
    padding-right: 8rem;}

/* side bar filtter css */

#sidebarCollapse {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  cursor: pointer;
}
#sidebarCollapse span {
  width: 80%;
  height: 2px;
  margin: 0 auto;
  display: block;
  background: #555;
  transition: all 0.8s cubic-bezier(0.81, -0.33, 0.345, 1.375);
  transition-delay: 0.2s;
}
#sidebarCollapse span:first-of-type {
  transform: rotate(45deg) translate(2px, 2px);
}
#sidebarCollapse span:nth-of-type(2) {
  opacity: 0;
}
#sidebarCollapse span:last-of-type {
  transform: rotate(-45deg) translate(1px, -1px);
}

#sidebarCollapse.active span {
  transform: none;
  opacity: 1;
  margin: 5px auto;
}

@media (max-width: 768px) {
  #sidebar {
    margin-left: -250px;
    transform: rotateY(90deg);
  }

  #sidebar.active {
    margin-left: 0;
    transform: none;
  }

  #sidebarCollapse span:first-of-type {
    transform: none;
    opacity: 1;
    margin: 5px auto;
  }
  #sidebarCollapse span:nth-of-type(2) {
    transform: none;
    opacity: 1;
    margin: 5px auto;
  }
  #sidebarCollapse span:last-of-type {
    transform: none;
    opacity: 1;
    margin: 5px auto;
  }

  #sidebarCollapse.active span {
    margin: 0 auto;
  }
  #sidebarCollapse.active span:first-of-type {
    transform: rotate(45deg) translate(2px, 2px);
  }
  #sidebarCollapse.active span:nth-of-type(2) {
    opacity: 0;
  }
  #sidebarCollapse.active span:last-of-type {
    transform: rotate(-45deg) translate(1px, -1px);
  }
}

.onhover-dropdown:hover .onhover-show-div {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  visibility: visible;
  border-radius: 5px;
  overflow: hidden;
}
.onhover-dropdown .onhover-show-div {
  -webkit-box-shadow: 0 0 20px rgba(89, 102, 122, 0.1);
  box-shadow: 0 0 20pxrgba 89, 102, 122, 0.1;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  left: 0;
  display: block;
  transition: all linear 0.3s;
}

.modal.left .modal-dialog,
.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 450px;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content,
.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
}

.modal.left .modal-body,
.modal.right .modal-body {
  padding: 15px 15px 80px;
}

/*Right*/
.modal.right.fade .modal-dialog {
  right: -320px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.show .modal-dialog {
  right: 0;
}

/* ----- MODAL STYLE ----- */
.modal-content {
  border-radius: 0;
  border: none;
}

.modal-header {
  border-bottom-color: #eeeeee;
  background-color: #fafafa;
}

/* end side bar filtter css */

.close {

  background:none;
  border: none;
      font-size: 23px;
}

.btn-outline-secondary {
  color: #c5c2be;
    border-color: #c5c2be;
        border-radius: 5px !important;
    font-weight: 400;
}

.right .modal-header {
  position: fixed;
    width: 100%; z-index: 9;

}
.right .modal-header h5{margin-top: 11px;}
.right .modal-body {

    padding: 10px 25px !important
}

.right .modal-footer {
    justify-content: center;
    position: fixed;
    width: 100%;
    bottom: 0;background: #fff;
}

.modal-footer button {
  border-radius: 20px;
}

#staticBackdrop .btn-close {

     margin-top: -49px !important;
}

    #staticBackdrop .modal-lg, .modal-xl {
        max-width: 600px;
    }

    .rounded {
    border-radius: 5px !important;
}

.fs-12 {font-size: 12px;}
.modal-content .tabLink a{margin-bottom: 11px;}
.誰nner-scroll{height: 100vh; overflow-y:scroll ; margin-top:80px;}
.btn-primary:focus{box-shadow: none !important; background-color: #ce9233 !important;
   color: #fff !important;}
.ProfInner .contact-box {    display: flex;
    align-items: center;
    width: 100%;
    text-align: center;
    justify-content: center; font-size: 18px;}

.ProfInner .contact-box-main{    background-color: #f7f4f1;     padding: 12px;}
.ProfInner.LeftArea .ScoreArea span{background: transparent; padding-left: 0px;}
.ProfInner .badge{margin-bottom: 12px;
    padding: 7px 10px;
    font-weight: normal;
    font-size: 16px;
    border-radius: 3px;
    background: #e8e8e8 !important;
    color: #000;;}

    .Rsev .btn-primary {

      font-weight: 400 !important;
      border-radius: 5px !important;
      font-size: 13px;
    }
    .RealtedSrv h2{font-size: 20px;}
    .RealtedSrv h5{color: #494949;
    font-size: 18px;
    font-weight: normal;}
    .Rsev{border-bottom: 1px solid #e5e5e5;
    padding: 20px 0; }


.space-img img {

    height:215px;  object-fit: contain !important;
}

.breadcrumb {
        margin-bottom: 70px !important;
}

.mission {

        min-height: 447px;

}


.footer .btn-light {
    padding-top: 16px;
}


/*24*/
@media screen and (max-width: 600px) {

 .pb-6 { padding-bottom: 3rem;}

.pt-6 {padding-top: 3rem;}

.space-section .space-img {text-align: center;}

 .category-items li {display: inline-block; width: 49%; padding: 4px;margin-bottom: 12px;}
    .categories-info h6 { font-size: 14px;margin: 0 0 6px;}

.category-items {padding: 0 !important;}
.Sr-Box h4 a { font-size: 16px;}
.entry-content p {font-size: 13px;}
.slider { padding: 62px 0 0;}
.form-floating {margin-bottom: 22px;}
.listingBanner .carousel .carousel-caption {padding: 0 25px;}
.Rowview.liStP { margin-top: 15px; margin-bottom: 0;}
.Rowview a.WhatsApp {margin: 25px 3px;}
.ListingSeoCon table {width: 100%;}
.CondetailsArea {width: auto;}
.space-section h1 { font-size: 24px;}
.author-img { width: 54px; height: 102px; margin-right: 9px;}
.author-meta h4 { font-size: 15px;}  
.ProfInner {padding: 18px 14px;}
a.btn.btn-whatsap { font-size: 16px; padding: 10px 20px;}
.RealtedSrv h5 { color: #494949; font-size: 16px; font-weight: normal;}
.about-img {position: relative;padding-left: 0;}
.whatsapp-box { margin-bottom: 20px;}
.modal.left .modal-dialog, .modal.right .modal-dialog {width: 100%;}
/*tum 600*/
.Sidebox{width: 100% !important;}
ul.Mobcitypop{    grid-template-columns: repeat(4, 1fr) !important;}
.deskrtg{display: none !important;}
.ListingSeoCon h2{font-size: 20px;}
.list-group-item{padding: 2px}
.ListHdg h3{font-size: 18px !important}
.ScoreArea span{font-size: 10px; padding: 6px 5px}
.ScDiv{padding-right: 0px;}
.name{line-height: normal;}
.rating{ margin:7px 0 10px 2px}
.contentVendor p{ display: -webkit-box;
  max-width: 400px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; display: none;}
  .name{width: 50px; height:50px;margin-top: 0;}
  .CondetailsArea a{font-size: 16px; width: 172px; margin-bottom: 16px;}
.BoxInner{padding-bottom: 0;}
.ScoreArea img{ width: 17px;}
.ProfInner .ScoreArea span{font-size: 12px; padding: 6px 12px; margin-right: 7px; margin-bottom: 8px;display: inline-block;}
.SrvImgArea{ height: auto !important;
    margin: 0 auto 20px !important;}
.sticky-top.shadow-sm .StkNavLogo{display: none;}
span.ScoreCount{display: none !important;}
.CondetailsArea img{margin-right: 9px;}

}


.name img{max-width: 100%;}

/*mobile caraousel*/

/*#news-slider {
  margin-top: 80px;
}*/
.post-slide {
  background: #fff;
  margin: 20px 15px 20px;
  border-radius: 15px;
  padding-top: 1px;
  box-shadow: 0px 14px 22px -9px #bbcbd8;
}
.post-slide .post-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: -12px 15px 8px 15px;
  margin-left: -10px;
}
.post-slide .post-img img {
  width: 100%;
  height: auto;
  transform: scale(1, 1);
  transition: transform 0.2s linear;
}
.post-slide:hover .post-img img {
  transform: scale(1.1, 1.1);
}
.post-slide .over-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: linear-gradient(
    -45deg,
    rgba(6, 190, 244, 0.75) 0%,
    rgba(45, 112, 253, 0.6) 100%
  );
  transition: all 0.5s linear;
}
.post-slide:hover .over-layer {
  opacity: 1;
  text-decoration: none;
}
.post-slide .over-layer i {
  position: relative;
  top: 45%;
  text-align: center;
  display: block;
  color: #fff;
  font-size: 25px;
}
.post-slide .post-content {
  background: #fff;
  padding: 2px 20px 40px;
  border-radius: 15px;
}
.post-slide .post-title a {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}
.post-slide .post-title a:hover {
  text-decoration: none;
  color: #3498db;
}
.post-slide .post-description {
  line-height: 24px;
  color: #808080;
  margin-bottom: 25px;
}
.post-slide .post-date {
  color: #a9a9a9;
  font-size: 14px;
}
.post-slide .post-date i {
  font-size: 20px;
  margin-right: 8px;
  color: #cfdace;
}
.post-slide .read-more {
  padding: 7px 20px;
  float: right;
  font-size: 12px;
  background: #2196f3;
  color: #ffffff;
  box-shadow: 0px 10px 20px -10px #1376c5;
  border-radius: 25px;
  text-transform: uppercase;
}
.post-slide .read-more:hover {
  background: #3498db;
  text-decoration: none;
  color: #fff;
}
.owl-controls .owl-buttons {
  text-align: center;
  margin-top: 20px;
}
.owl-controls .owl-buttons .owl-prev {
  background: #fff;
  position: absolute;
  top: 0;
  left: 15px;
  padding: 0 18px 0 15px;
  border-radius: 50px;
  box-shadow: 3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;margin-top: 164px;
}
.owl-controls .owl-buttons .owl-next {
  background: #fff;
  position: absolute;
  top:0;
  right: 15px;
  padding: 0 15px 0 18px;
  border-radius: 50px;
  box-shadow: -3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s; margin-top: 164px;
}
.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
  content: "\f104";
  font-family: FontAwesome;
  color: #333;
  font-size: 30px;
}
.owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
}
@media only screen and (max-width: 1280px) {
  .post-slide .post-content {
    padding: 0px 15px 25px 15px;
  }
}

.SrvImgArea{width: 120px; height: 120px; margin: 0 auto 30px;}
.list-group-item {

    border:none !important;
}

.ProfInner .gallery-item img{width: 100%;
  height: 200px;
  object-fit: cover;}
  .Innerlisting .categories-Iner{ position: relative;
    width: 100%; border: 1px solid #f1f1f1;
padding: 15px 59px; text-align: center; border-radius: 11px;} 

.Innerlisting .categories-Iner img{width: 79px; margin-bottom: 13px; height: 79px;}
.result_filter{display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto; position: static;
    scroll-snap-type: x mandatory;}
 .btn.MobFilterBtn{border: 1px solid #eaeaea;
    height: 36px;
    color: #111;
    border-radius: 6px;
    background: #ffffff;
    /* padding: 0 7px; */
    margin-right: 5px;
    font-size: 14px; white-space: nowrap;}

.result_filter .dropdown{position: static;}

/* asif */
    

.AddOther{    background-color: #ce9233 !important;
    border: 1px solid #ce9233 !important; color: #fff !important;}
.StkNavLogo img{width: 126px;
    height: 48px;
    object-fit: contain;}
.sticky-top.shadow-sm .StkNavLogo{display: block;     margin-top: 10px;
    margin-right:150px;}
.sticky-top .StkNavLogo{display: none;}

.topCall{font-size:20px;}
.navbar-expand-lg .navbar-collapse{justify-content: space-between !important;}
/*.sticky-top .topCall i{background: #ce9233;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;}*/
    .sticky-top .topCall a{color: #fff;}

    .sticky-top .topCall{    background: #ce9233;
    color: #fff;
    border-radius: 22px;
    text-align: center;
    padding: 8px 15px; display: none;}
    .sticky-top.shadow-sm .topCall{display: block;}
.photo-gallery img{width: 100%; height: 200px; object-fit: cover;}
.RealtedSrv img{width: 60px; height: 60px; object-fit: contain;}
.MobileDesVendor{cursor: pointer; color: var(--bs-primary); text-decoration: underline;}
.VendorMobBtn{position: fixed;
    background: #fff;
    width: 100%;
    bottom: 0; z-index: 999;}
.fixdBtn{display: inline-flex;
    padding: 8px 10px;
    border-radius: 6px;
    text-align: center;
    justify-content: center;
    position: relative;
    align-items: center; margin: 9px 7px; background: #ce9233;
    color: #fff;}

.fixdBtn:hover{color: #fff;}
span.ScoreCount{padding: 0px; margin-bottom: 0px;}

ul.Mobcitypop {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    background: rgb(255, 255, 255); padding-left: 0px;    margin-top: 20px;
}
ul.Mobcitypop li {
    box-sizing: border-box;
    border-right: 1px solid rgb(245, 245, 245);
    border-bottom: 1px solid rgb(245, 245, 245);
    background: rgb(255, 255, 255);
    text-align: center;
    min-height: 78px;
    justify-content: center;
    align-items: center;
        list-style-type: none;
}

ul.Mobcitypop li .imgbox {
    display: inline-block;
    width: 46px;
    height: 46px;
}
ul.Mobcitypop li p{font-size: 14px;}
.ProfInner .ScoreArea span{display: inline;}

.filternav {
    position: fixed !important;
    top:73px;
    height: 70px;
    z-index: 1; background:#fff; padding-left:13px;
}
.FltrNav {
    height: 70px; width:1300px;
}

.FltrNav .btn.MobFilterBtn{margin-right: 17px;}
.frmfix {
    position:sticky !important;
    top: 155px;
 background:#fff; width:310px;
}
.Sidebox{border: 1px solid #dee2e6;padding: 15px; width:310px; display:inline-block;background:#fff;}
.dropdown-item{cursor: pointer !important;}

/*add css about us page*/

.process-wrapper {
    position: relative;
}
.process-wrapper .process-line {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(calc(-50% + 500px), calc(-50% - 25px));
    -ms-transform: translate(calc(-50% + 500px), calc(-50% - 25px));
    transform: translate(calc(-50% + 500px), calc(-50% - 25px));
    margin: 0 -500px;
    z-index: -1;
}
.gy-40 {
    --bs-gutter-y: 40px;
}
.process-box {
    text-align: center;
}
.process-box .process-box_img {
position: relative;
  border-radius: 50%;
  display: inline-block;
  width: 160px;
  margin: 0 auto;
  border: 1px dashed #ce9233;
  height: 160px; line-height: 150px;

}
.process-box .process-box_img img {
    width: 80px;
    -webkit-transition: 0.4s;
    transition: 0.4s; max-width: 100%;
}
.process-box .process-box_img .process-box_icon span.number1 {
    -webkit-transform: translate(-100%, -68px) rotate(-15deg);
    -ms-transform: translate(-100%, -68px) rotate(-15deg);
    transform: translate(-100%, -68px) rotate(-15deg);
}
.process-box .process-box_img .process-box_icon span.number2 {
    -webkit-transform: translate(-100%, -136px) rotate(15deg);
    -ms-transform: translate(-100%, -136px) rotate(15deg);
    transform: translate(-100%, -136px) rotate(15deg);
}
.process-box .process-box_img .process-box_icon span.number3 {
    -webkit-transform: translate(-100%, -90px) rotate(-13deg);
    -ms-transform: translate(-100%, -90px) rotate(-13deg);
    transform: translate(-100%, -90px) rotate(-13deg);
}
.process-box .process-box_img .process-box_icon span.number4 {
    -webkit-transform: translate(-100%, -140px) rotate(20deg);
    -ms-transform: translate(-100%, -140px) rotate(20deg);
    transform: translate(-100%, -140px) rotate(20deg);
}
.process-box .process-box_img .process-box_icon span {
    position: absolute;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #ce9233;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    left: -15px;
}
.process-box .process-box_title {
    font-size: 22px;
    margin-top: 20px;
}


/**/
.service-content-wrap {
  padding-top: 45px;
}
.service-item {
  background: #ffffff;
  box-shadow: 0px 43px 100px 0px rgba(0, 0, 0, 0.13);
  border-radius: 10px;
  /*border-top: 10px solid #d5a252;*/
  transform: translate3d(0, 0, 0);
  padding: 30px 40px 40px;
  margin-top: 30px;
  transition: all 0.3s linear;
}
.service-item.service-01, .service-item.service-03 {
  margin-top: 55px;
}
.service-item .service-content .title {
  font-size: 24px;
  line-height: 30px;
  padding-right: 15px;
  margin-top: 20px;
}
.service-item .service-content p {
  margin-top: 15px;
}
.service-item:hover {
  transform: translateY(-5px) translate3d(0, -5px, 0);
}

.service-img img{width: 90px; filter: brightness(0) invert(1);}

/*=================*/
.title-area {
    margin-bottom: calc(var(--section-title-space) - 12px);
    position: relative;
    z-index: 2;
}
.sub-title.style2 {
    border: 1px solid #ce9233;
    background: transparent;
    padding: 2px 15px 2px 28px;
}
.sub-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ce9233;
    margin-bottom: 23px;
    background: #ce9233;
    border-radius: 17px;
    padding: 3px 15px 3px 28px;
    position: relative;
}
.service-grid.style2:not(:nth-last-child(-n+4)) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.service-grid.style2:not(:nth-child(3n)) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);

}
.service-grid.style2:not(:nth-last-child(-n+3)) {
    border-top: 0;
}
.service-grid.style2 {
    background: transparent;
    --space-x: 40px;
    --space-y: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);}

.service-grid.style2 .service-grid_title {
    margin-bottom: 10px;
}
.global-icon{width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  line-height: 80px;
  margin-left: 20px;}
.service-grid_content{width: 300px;}
.global-icon:after {
    content: '';
    position: absolute;
    left: -6px;
    top: -6px;
    height: 80px;
    width: 80px;
    border: 3px dashed #fff;
    border-radius: 50%;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.service-grid.style2 .global-icon:after {
    top: -8px;
    left: -8px;
    height: 90px;
    width: 90px;
}
.service-grid.style2 .global-icon {
    border: 5px solid #000;
    height: 90px;
    width: 90px;
    line-height: 70px; position:relative;
}
.text-white{color: #fff;}
.global-icon img{width: 50px; height: 50px;}

 .techwix-pricing-section .pricing-wrap .pricing-content-wrap {
  padding-top: 30px;
}

.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing::before {
  content: "";
  position: absolute;
  right: -38%;
  top: -29%;
  border: 30px solid #ffffff;
  width: 445px;
  height: 445px;
  border-radius: 50%;
  z-index: -1;
}
.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 45px 30px 70px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;height: 952px;
}
.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing .pricing-badge .title {
  font-size: 32px;
  font-weight: 600;
  color: #0e0e0e;
}
.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing .pricing-price {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing .pricing-price .currency {
  font-size: 30px;
  line-height: 54px;
  font-weight: 600;
  color: #ce9233;
  display: inline-block;
  position: relative;
  bottom: -10px;
}
.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing .pricing-price .price {
  font-size: 90px;
  line-height: 54px;
  font-weight: 600;
  display: inline-block;
  color: #ce9233;
}
.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing .pricing-content {
  padding-top: 26px;
}
.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing .pricing-content .pricing-list li {
  font-size: 18px;
  line-height: 30px;
}
.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing .pricing-content .pricing-btn {
  padding-top: 40px;
}
.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing.active {
  background: linear-gradient(-180deg, #ffd89c 0%, #ce9233 100%);
}

.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing.active .pricing-content .pricing-list li {
  color: #ffffff;
}
.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing .pricing-content .pricing-list li {
  font-size: 18px;
  line-height: 30px;margin-bottom: 8px;
}
.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing .pricing-price {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing .pricing-price .price {
  font-size: 70px;
  line-height: 54px;
  font-weight: 600;
  display: inline-block;
  color: #ce9233;
}
.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing.active::before {
  opacity: 0.2;
}
.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing .pricing-price .price span {
  font-size: 18px;
  font-weight: 500;
  color: #959595;
}
.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing.active .pricing-price .price {
  color: #ffffff;
}
.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing .pricing-price .price span {
  font-size: 18px;
  font-weight: 500;
  color: #959595;
}
.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing.active .pricing-price .price span {
  color: #ffffff;
}
.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing .pricing-content .pricing-btn {
  padding-top: 40px;
}

.pricing-btn .btn {
  display: inline-block;
  overflow: hidden;
  transform: perspective(0) translateZ(0);
  background: linear-gradient(-180deg, #ffd89c 0%, #ce9233 100%);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  border-color: transparent;
  color: #ffffff;
  border-radius: 5px;
  font-size: 28px;
  font-weight: 700;
  line-height: 56px;
  padding: 0px 70px;
  border: 0;
  border-style: solid;
  box-shadow: none;
  transition: all 0.5s ease 0s;
  cursor: pointer;
  z-index: 1;
position: absolute;
  bottom: 50px;
}
.techwix-pricing-section .pricing-wrap .pricing-content-wrap .single-pricing.active .pricing-price .currency {
  color: #ffffff;
}
.BigText{font-size:200px; color: #cf9031; font-weight:bold; line-height: 225px; padding-top: 83px;}

.gradient1{background: #F05E1F;
background: linear-gradient(90deg, rgba(240, 94, 31, 1) 0%, rgba(195, 31, 28, 1) 100%);}

.gradient2{background: #FCBF2E;
background: linear-gradient(90deg, rgba(252, 191, 46, 1) 0%, rgba(179, 117, 29, 1) 100%);}
.gradient3{background: #C6D745;
background: linear-gradient(90deg, rgba(198, 215, 69, 1) 0%, rgba(100, 131, 48, 1) 100%);}
.Abt{font-size: 40px;}


/*===================*/


.listar-map-button {
  width: 100%;
  position: absolute;
  display: table;
  right: 0;
  top: 0;
  height: 200px;
  line-height: 164px;
  white-space: nowrap;
  font-size: 0;
}

.listar-map-button {
  right: auto;
  /***
    box-shadow: 0 0 65px rgba(0,0,0,.07) inset, 0 0 35px rgba(0,0,0,.05) inset;**/
}

.listar-map-button-text span {
  background-color: #fff;
  color: #252525;
  text-shadow: none;
}

.listar-page-header-content .listar-map-button-text span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  height: 44px;
  line-height: 1.6;
  padding: 10px 25px;
  box-shadow: 0 0 300px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  background-color: rgba(35, 40, 45, 0.9);
  color: #fff;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}


.listar-feature-item-wrapper {
  margin-bottom: 10px;
  padding-left: 27px;
  padding-right: 27px;
}

.listar-feature-item {
  height: calc(100% - 20px);
}

.listar-feature-item.listar-feature-has-link
  ~ .listar-feature-fix-bottom-padding.listar-fix-feature-arrow-button-height {
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
}

.listar-feature-item a {
  position: absolute;
  top: -12px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% + 4px);
  border-radius: 1000px;
  z-index: 10;
}




.listar-feature-item .listar-feature-item-inner {
  padding: 50px 30px;
  border-radius: 6px;
  z-index: 5;
  position: relative;
  height: 100%;
}

.listar-feature-item .listar-feature-item-inner {
  padding-top: 60px;
  padding-bottom: 60px;
}

.listar-feature-item .listar-feature-item-inner:before {
  border: 0;
  box-shadow: 120px 0px 150px rgba(80, 80, 80, 0.15),
    10px 0px 10px rgba(80, 80, 80, 0.02);
  border-radius: 1000px;
  background: rgba(255, 255, 255, 0);
  background: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgba(255, 255, 255, 0)),
    color-stop(40%, rgba(255, 255, 255, 0)),
    color-stop(100%, rgba(255, 255, 255, 1))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -ms-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#ffffff',GradientType=1);
}

.listar-feature-item .listar-feature-item-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.listar-feature-right-border {
  position: absolute;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  top: -12px;
  left: 50%;
  overflow: hidden;
}

.listar-feature-items {
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;margin-top: 116px;
}

.listar-feature-right-border:before,
.listar-hovering-features
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before {
  border: 11px solid #2f53bf;
}

.listar-feature-right-border:before,
.listar-hovering-features
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before,
.listar-hovering-features-grey
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 11px solid #d5a252;
  border-radius: 800px;
  left: -50%;
}

.listar-feature-item .listar-feature-block-content-wrapper {
  position: relative;
  display: block;
  text-decoration: none;
  margin: -30px;
  padding: 30px;
  height: calc(100% + 100px);
}

.listar-features-design-2 .listar-feature-item-wrapper {
  margin-bottom: 120px;
  padding-left: 27px;
  padding-right: 27px;
}



.listar-feature-icon-wrapper {
  width: 148px;
  height: 148px;
  line-height: 148px;
  border-radius: 500px;
  position: relative;
  background-color: #fff;
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.06);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  left: 50%;
  vertical-align: middle;
  margin-left: -74px;
  top: -66px;
  margin-top: -74px;
}

.listar-feature-icon-inner {
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 500px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.14);
  background: #fff;
}

.listar-feature-icon-inner div {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  display: inline-block;
  position: relative;
  width: 120px;
  height: 120px;
  text-align: left;
}

.listar-feature-icon-inner img {
  position: relative;
  margin: 0 auto;
  vertical-align: middle;
  display: inline-block;
  width: auto;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
  height: 55px;
}

.listar-feature-item img,
.listar-feature-item i {
  position: relative;
  display: inline-block;
  border-bottom: 0;
  font-size: 40px;
  top: 0;
  padding: 0;
  color: #258bd5;
}

.listar-feature-with-image .listar-feature-content-wrapper {
  top: 0;
}
.listar-feature-content-wrapper {
  position: relative;
  margin-top: -15.5px;
}

.listar-feature-item .listar-feature-item-title {
  padding-top: 0;
  margin: 0 0 30px;
  text-align: center;
  line-height: 1.5;
}

.listar-feature-item
  .listar-feature-item-title.listar-feature-counter-added
  > span {
  margin-left: 25px;
  border-radius: 0 50px 50px 0;
}



.listar-feature-item .listar-feature-item-title span {
  display: inline-block;
  font-size: 14px;
  line-height: normal;
  font-weight: 600;
  text-shadow: none;
  border-radius: 50px;
  color: #252525;
  font-size: 22px;
}

.listar-feature-item-excerpt {
  padding: 0 20px;
}

.listar-feature-item-excerpt {
  color: #252525;
  position: relative;
  top: 0;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.pset {
  padding-top: 80px;
}



.listar-map-button-text span {
  background-color: #fff;
  color: #252525;
  text-shadow: none;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}



.listar-map-button:hover .listar-map-button-text span {
  padding: 10px 43px 10px 51px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.topFootersec{width: 100%; background: #ce9232; padding: 30px 0;}
.TopLogo img{width:150px; height: auto;}
.contactext{font-size: 20px;
  line-height: 73px;
  margin-bottom: 0;
  padding-bottom: 0;}

.GetinTouch{border-radius: 25px;
  border: 2px solid #fff;
  font-size: 16px;
  padding: 10px 25px;
  margin-top: 14px;
  display: inline-block; color: #fff;transition: all 0.3s linear; moz-transition: all 0.3s linear; weblit-transition: all 0.3s linear; }

  .GetinTouch:hover{background: #fff; color: #ce9232; transition: all 0.3s linear; moz-transition: all 0.3s linear; weblit-transition: all 0.3s linear;}
.ContactBg{background: #ebe1e1;
background: linear-gradient(4deg, rgba(235, 225, 225, 1) 0%, rgba(255, 255, 255, 1) 100%); position: relative;
 padding:90px 0;}
.ContactFrmArea{position: absolute; width: 510px; border-radius: 7px;}

.ContactBg:before{clip-path: polygon(0 52%, 100% 0, 100% 100%, 0% 100%);
  content: "";
  width: 100%;
  height: 112px;
  position: absolute;
  bottom: -49px;
  background: white;}
.ContactFrmArea .form-floating{border-radius: 5px;}
.darkbg{background: #a56503;}
.lightbg{background: #c5913d;}
.SupportDtl h5{font-size:17px; margin-top: 20px;}
.SupportDtl{word-wrap: break-word; font-size: 15px; min-height: 237px;
  height: 100%;}

  /* 02/03/26 */
  .hero-badge {
    display: inline-block;
    background: #f5e6c8;
    color: #c8922a;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(200, 146, 42, 0.3);
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0F172A;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero h1 .gold {
    color: #c8922a;
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}


.btn-gold {
    background: #c8922a;
    color: white;
    padding: 13px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
}

.btn-outline {
    background: transparent;
    color: #334155;
    padding: 13px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    border: 2px solid #E2E8F0;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.hero-stat-num {
    font-size: 18px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 4px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid #ccc;
}

/* HERO CARD */
  .hero-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(200,146,42,0.12), 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
  }
  .hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gold);
    border-radius: 16px 16px 0 0;
  }
  .card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }
  .card-avatar {
    width: 50px; height: 50px;
    background: var(--gold-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border: 1px solid rgba(200,146,42,0.2);
  }
  .card-name {
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--text);
  }
  .card-verified {
    font-size: 0.72rem;
    color: #2a9d2a;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 3px;
  }
  .card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }
  .cstat {
    background: var(--section-bg);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    border: 1px solid var(--border);
  }
  .cstat-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
  }
  .cstat-label {
    font-size: 0.68rem;
    color: var(--text-light);
    margin-top: 2px;
  }
  .trust-row {
    margin-bottom: 10px;
  }
  .trust-row-top {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-mid);
    margin-bottom: 5px;
  }
  .trust-row-top span:last-child {
    font-weight: 700;
    color: var(--gold);
  }
  .trust-track {
    background: #eee;
    height: 5px;
    border-radius: 3px;
    overflow: hidden;
  }
  .trust-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    border-radius: 3px;
  }
  .card-ping {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2a9d2a;
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(42,157,42,0.3);
  }
  .card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
  }
  .tag {
    background: var(--gold-light);
    color: var(--gold-dark);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(200,146,42,0.2);
  }

 /* ===== 3 PILLARS ===== */
  .pillars-section { background: #f9f7f3 }

   .pillars-section h2 .gold {
    color: #c8922a;
}

.section-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 48px;
}

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .pillar-card {
    background: white;
    border: 1px solid #e8e0d0;
    border-radius: 12px;
    padding: 32px 28px 0 28px;;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }
  .pillar-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: #c8922a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .pillar-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(200,146,42,0.12); border-color: rgba(200,146,42,0.3); }
  .pillar-card:hover::after { transform: scaleX(1); }
  .pillar-icon-wrap {
    width: 56px; height: 56px;
    background: #f5e6c8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    border: 1px solid rgba(200,146,42,0.2);
  }
  .pillar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
  }
  .pillar-desc {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.65;
  }
  .pillar-chip {
    display: inline-block;
    margin-top: 16px;
    background: var(--gold-light);
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 100px;
  }


  /* ===== FIRST IMPRESSION ===== */
  .impression-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
  }
  .feature-list { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
  .feature-item { display: flex; gap:7px; }
  .feature-icon {
    width: 44px; height: 44px;
    background: var(--gold-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .feature-title {
    margin-top: 7px;
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
  }
  .feature-desc {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.65;
  }

  /* MOCK PROFILE */
  .mock-profile {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0,0,0,0.1);
  }
  .mock-topbar {
    background: #c8922a;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mock-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.5); }
  .mock-url {
    margin-left: 10px;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
  }
  .mock-body { padding: 22px; }
  .mock-vendor-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }
  .mock-avatar {
    width: 48px; height: 48px;
    background: #f5e6c8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 1px solid rgba(200,146,42,0.2);
  }
  .mock-vendor-name { font-weight: 700; font-size: 0.9rem; color: var(--text); font-size: 21px;
    color: black; }

  .mock-vendor-sub { font-size: 0.7rem; color: #2a9d2a; font-weight: 600; margin-top: 2px; }
  .mock-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
  }
  .mock-chip {
    background: var(--gold-light);
    color: var(--gold-dark);
    font-size: 0.67rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
     background: #f5e6c8;
  }
  .mock-info-row {
    background: var(--section-bg);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.73rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 10px;
    border: 1px solid var(--border);
  }
  .mock-open {
    background: #f0faf0;
    border: 1px solid #c3e6c3;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.75rem;
    color: #2a7d2a;
    font-weight: 600;
  }

 /* ===== TRUST SCORE ===== */
  .trust-section { background:#f9f7f3; }
  .trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
  }
  .trust-points { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
  .trust-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
  }
  .trust-point-dot {
    width: 20px; height: 20px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .score-list { display: flex; flex-direction: column; gap: 14px; }
  .score-row {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s;
  }
  .score-row:hover { border-color: rgba(200,146,42,0.3); box-shadow: 0 4px 16px rgba(200,146,42,0.08); }
  .score-row.combined {
    border-color: var(--gold);
    background: var(--gold-bg);
  }
  .score-logo {
    width: 38px; height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
  }
  .sl-jd { background: #fff0e6; color: #e06600; }
  .sl-im { background: #e6f0ff; color: #0055cc; }
  .sl-su { background: #e6fff0; color: #007a3d; }
  .sl-fss { background: var(--gold-light); color: var(--gold-dark); }
  .score-platform-name { font-size: 0.78rem; color: var(--text-light); }
  .score-stars { color: var(--gold); font-size: 0.8rem; margin-top: 2px; letter-spacing: 1px; }
  .score-value {
    margin-left: auto;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold);
  }

  
 .gold {
    color: #c8922a;
}

.fs-12 {

   font-size: 12px;
}


.inner-bg {
  background-color: #F8FAFC;
  border-radius: 5px;
  padding: 10px;
  margin-right:20px ;
}

.icon-ready {

   background-color: rgba(0, 0, 0, .03);
    border-radius: 50px;
    width: 60px;
    height: 60px;
    margin: 0 auto;

}

.star-rating i {
  font-size: 10px;
}

.successstorys {

    background-color: #CE9233;
 }

 .innerbg-sec {

       background-color:rgb(245, 245, 245, .1) ;
       border-radius: 5px;
       padding: 20px 20px;
       border: 1px solid rgb(245, 245, 245, .1);

 }

 .round {
    border: 4px solid #D19A3E;
    width: 70px;
    height: 70px;
    font-size: 20px;
    color: #D19A3E;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    font-size: 36px; background: #fff;
 }

 .ready {
  width: 60%;
  margin: 0 auto;
  background-color: #D19A3E;
  border-radius: 20px;
  padding: 20px;
  text-align: center;

 }

 .faq .accordion-button:not(.collapsed) {

    background: none !important;
    color: #0F172A !important;
 }


.star-rating {
      direction: rtl;
    display: inline-block;
    cursor: default;
    margin-top: -25px;
    margin-right: 10px;

  input[type="radio"] {
    display: none;
  }

  label {
    color: #bbb;
    font-size: 2rem;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  label:hover,
  label:hover ~ label,
  input[type="radio"]:checked ~ label {
    color: #f2b600;
  }
}
.OutlineStep{ background:#F1F5F9; width:1300px; height:2px; position:absolute; margin-top:45px; z-index: -1; }
.profile{position: relative;}

/* vendor 2 css */



.topbar{
    background:#111;
    color:#fff;
    padding:8px 20px;
    text-align:right;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    background:white;
}

.navbar ul{
    list-style:none;
    display:flex;
    gap:20px;
}

.navbar a{
    text-decoration:none;
    color:#333;
}

.hero-sec{
    text-align:center;
    padding:70px 20px;
    background:#fff;
}

.hero-sec h1{
    font-size:40px;
    margin-bottom:10px;
}

.hero-sec p{
    color:#555;
}

.search-box{
    margin-top:25px;
}

.search-box input{
    padding:12px;
    width:250px;
}

.search-box select{
    padding:12px;
}

.search-box button{
    padding:12px 20px;
    background:#ff6600;
    color:white;
    border:none;
}

.stats{
    display:flex;
    justify-content:center;
    gap:60px;
    padding:40px;
    background:#fafafa;
}

.stat{
    text-align:center;
}

.stat h2{
    color:#ff6600;
}

.section{
    padding:50px 10%;
}

.section h2{
    text-align:center;
    margin-bottom:30px;
}

.city-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
}

.city{
    background:white;
    padding:20px;
    border-radius:5px;
    text-align:center;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
}

.category{
    background:white;
    padding:20px;
    text-align:center;
    border-radius:5px;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
}
.Jtext{color: #94A3B8; font-weight: bold; font-size: 20px;}
.ScoreRound{width: 210px; height:210px; border-radius: 100%; border: 10px solid #F1F5F9; margin: 0 auto;
}
.ScoreRound span{color: #D19A3E; font-size: 56px; line-height: 20px; font-weight: 600; padding-top:66px; 
display: inline-block;}
.ScoreRound p{font-size:18px; color: #64748B; font-weight: 600;}
.Scicon{
  position: absolute;
  margin-left: 729px;
  border-radius: 100%;}
 
   .banner-top{margin-top: -127px;
  background: #fff;
  padding: 29px;
  border-radius: 25px; position: absolute;}







