/********** Template CSS **********/

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

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

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

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

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


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

.btn-primary, .btn-outline-primary:hover {
    color: #494034;
}

.btn-secondary,
.btn-outline-secondary:hover {
    color:#fff;
}

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

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.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: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 40px;
    padding: 20px 0;
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #ffffff;
}

.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-bottom: 0rem;
    padding-top: 0rem;
    padding-right: 2rem;
    padding-left: 9rem;
    z-index: 1;
}

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

.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: 2rem;
    }
}

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

.page-header {
    background: #f2ebe3;
    background-size: cover;
}


/*** About ***/
@media (max-width: 767.98px) {
  .reverse-on-mobile {
    display: flex;
    flex-direction: column-reverse;
  }
}

.about-img {
    position: relative;
}


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

/*** Features ***/
.feature {
    background: linear-gradient(to right, rgb(0 0 0 / 58%), #3b382f 50%);
    background-size: cover;
     margin-top: 30px; /
}

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0);
    margin-top: 30px !important; 
    background-color: #f4f4f400;
}

.feature-item {
    border-color: rgb(0 0 0 / 13%) !important;
    border-radius: 7px;
    margin: 5px !important;
    background-color: #ffffff;
}
.feature-content {
    border-color: rgba(0, 0, 0, .03) !important;
    margin: 5px !important;
    background-color: #f2ebe3;
    padding: 20px;
}

.feature-icon {
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 90px;
    height: 90px;
    background-color: #f2ebe3 !important;
    border-radius: 50px;
}


.feature-item:hover .feature-icon {
    transform: translateY(0);
}

.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);
    overflow: hidden;
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    z-index: 0;
}

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

.service .service-item img {
    margin-top: -45px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

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

/* Keep text black on hover */
.service .service-item:hover h5,
.service .service-item:hover p {
    color: #797672 !important;
}

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

/*** Appoinment ***/
.appoinment {
    background-color: #534d3d;
    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-color: #534d3d;
    background-size: cover;
}

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

.footer .btn.btn-link::before {
    display:none;
    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: #494034;
}

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

.copyright a:hover {
    color: var(--bs-primary);
}
span.num.mbr-fonts-style.display-1 {
    font-size: 40px;
    padding-top: 40px;
    padding-left: 30px;
    margin-top: 30px;
    line-height: 80px;
    color: #ce9233;
}
.feature-border {
    background-color: #50453812;
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}
p.text-light.mb-4.wow.fadeIn {
    font-size: 15px;
    line-height: 19px;
}

/* Tabs container */
.nav-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
  border-bottom: none;
}

/* Each tab: equal width and responsive */
.nav-tabs .nav-item {
  flex: 1 0 100%;
  max-width: 100%;
}

@media (min-width: 600px) {
  .nav-tabs .nav-item {
    flex: 1 0 33.33%;
    max-width: 33.33%;
  }
}

/* Tab links */
.nav-tabs .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 70px;
  font-size: 1rem;
  font-weight: 500;
  color: #40382e;
  background: rgba(0,0,0,0.04);
  border: none;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.3s, color 0.3s;
}

/* Active Tab */
.nav-tabs .nav-link.active {
  color: #ce9233;
  background-color: #f2ebe3;
  border: 1px solid rgba(0,0,0,0.13);
  border-bottom-color: transparent;
}

/* Hover effect */
.nav-tabs .nav-link:hover:not(.active) {
  color: #555;
  cursor: pointer;
}

/* Tab icon */
.tab-icon {
  font-size: 1.4rem;
  line-height: 1;
}

/* Content box */
.tab-content {
  background-color: #f2ebe3;
  border: 1px solid rgba(0,0,0,0.13);
  padding: 1.5rem;
  color: #000;
}

/* Pagination */
.pagination-tabs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.pagination-tabs button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  background: #f2ebe3;
  cursor: pointer;
  transition: background-color 0.3s;
}

.pagination-tabs button.active,
.pagination-tabs button:hover {
  background-color: #ce9233;
}

/* Tab title */
h3.tab-title {
  font-size: 18px;
  color: #40382e;
  margin: 0;
  display: inline-block;
}

.section-title {
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  height: 3px;
  width: 100px;
  margin: 14px auto 0;
  background: linear-gradient(
    to right,
    #DD9933 0%,         /* 1st bar starts */
    #DD9933 15%,        /* 1st bar ends */
    transparent 15%,   
    transparent 30%,   /* space */

    #DD9933 30%,        /* 2nd bar starts */
    #DD9933 55%,        /* 2nd bar ends (25% wide) */
    transparent 55%,
    transparent 65%,   /* space */

    #DD9933 65%,        /* 3rd bar starts */
    #DD9933 95%         /* 3rd bar ends (30% wide) */
  );
  border-radius: 3px;
}
.wa-chat-box-poweredby {
    display: none!important;
}
.wa-chat-box-content {
    background: #f2ebe3!important;
}
