/********** Template CSS **********/
:root {
    --primary: #B78D65;
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** 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 {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/" !important;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    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(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* FORCE breadcrumb divider fix (Bootstrap override) */
.breadcrumb {
    --bs-breadcrumb-divider: "/";
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/" !important;
    color: var(--light);
    padding: 0 8px;
}



/* ===============================
   HOW WE WORK – CUSTOM SECTION
================================ */

/* ===============================
   HOW WE WORK – FINAL STEPPER
================================ */

.how-we-work-v2 {
  padding: 80px 0;
  background: #fff;
}

/* TITLE */
.how-we-work-v2 .section-title {
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 50px;
}

/* STEPPER CONTAINER */
.work-stepper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto 80px;
}

/* DOTTED LINE */
.work-stepper::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  right: 0;
  border-top: 2px dotted #c89f54;
  z-index: 1;
}

/* STEP */
.step {
  position: relative;
  z-index: 2;
  text-align: center;
  cursor: pointer;
  background: transparent;      /* REMOVE BOX */
  box-shadow: none;              /* REMOVE BOX */
  padding: 0;                    /* REMOVE BOX */
}

/* NUMBER CIRCLE */
.step .circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f6ead5;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto;
  transition: all 0.3s ease;
}

/* ACTIVE STEP */
.step.active .circle {
  background: #c89f54;
  color: #fff;
}

/* LABEL */
.step p {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.4;
  max-width: 110px;
  margin-left: auto;
  margin-right: auto;
}

/* ===============================
   CONTENT AREA
================================ */

.work-content-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.work-content {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.work-content.active {
  display: flex;
}

/* TEXT */
.work-content .text {
  width: 45%;
}

.work-content .text h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.work-content .text p {
  font-size: 15px;
  color: #555;
}

/* IMAGE */
.work-content img {
  width: 55%;
  max-height: 340px;
  object-fit: contain;
}

/* KNOW MORE */
.know-more {
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid #c89f54;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.know-more:hover {
  background: #c89f54;
  color: #fff;
}

/* ===============================
   NAV ARROWS
================================ */

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.nav-arrow.left {
  left: -60px;
}

.nav-arrow.right {
  right: -60px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
  .work-stepper {
    overflow-x: auto;
    padding-bottom: 20px;
  }

  .work-content {
    flex-direction: column;
    text-align: center;
  }

  .work-content .text,
  .work-content img {
    width: 100%;
  }

  .nav-arrow {
    display: none;
  }
}


/* ===============================
   FORCE REMOVE STEP BOXES
   (HIGH PRIORITY OVERRIDE)
================================ */

.how-we-work-v2 .step,
.how-we-work-v2 .step * {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* Kill Bootstrap utilities if applied */
.how-we-work-v2 .step.bg-white,
.how-we-work-v2 .step.shadow,
.how-we-work-v2 .step.rounded {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* If card exists inside step */
.how-we-work-v2 .step .card {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}


/* ===============================
   HOW WE WORK – HARD RESET FIX
   (Numbers + dotted line + no boxes)
================================ */

/* REMOVE ANY CARD / BOX EFFECT COMPLETELY */
.work-stepper .step,
.work-stepper .step * {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* STEPPER WRAPPER */
.work-stepper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto 70px;
}

/* DOTTED LINE */
.work-stepper::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    border-top: 2px dotted #c89f54;
    z-index: 0; /* VERY IMPORTANT */
}

/* STEP */
.step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 110px;
}

/* NUMBER CIRCLE */
.step .circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f6ead5;
    color: #000 !important;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    line-height: 1;
    z-index: 2;
}

/* ACTIVE STEP */
.step.active .circle {
    background: #c89f54;
    color: #fff !important;
}

/* STEP LABEL */
.step p {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.4;
    max-width: 110px;
    margin-left: auto;
    margin-right: auto;
    color: #000;
}

/* ENSURE TEXT IS NEVER HIDDEN */
.step span,
.step p {
    position: relative;
    z-index: 2;
}


/* extra coded */

/* ===============================
   JR HOW WE WORK – FINAL
================================ */

.jr-how-work {
  padding: 80px 0;
  background: #fff;
}

.jr-title {
  font-size: 26px;
  letter-spacing: 3px;
  margin-bottom: 67px;
  color: #c89f54;
}

/* ===============================
   STEPS
================================ */

.jr-steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 70px;
}

.jr-line {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: #c89f54;
  z-index: 0;
}

.jr-step {
  text-align: center;
  z-index: 1;
  cursor: pointer;
  width: 110px;
}

.jr-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f6ead5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto;
  transition: 0.3s;
}

.jr-step.active .jr-circle {
  background: #c89f54;
  color: #fff;
}

.jr-step p {
  font-size: 13px;
  margin-top: 10px;
  line-height: 1.4;
}

/* ===============================
   CONTENT AREA
================================ */

/* CONTENT CONTAINER */
.jr-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 80px;
}

/* EACH STEP */
.jr-content-item {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.jr-content-item.active {
  display: flex;
}

/* LEFT TEXT */
.jr-left {
  width: 45%;
}

.jr-left h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.jr-left p {
  font-size: 16px;
  margin-bottom: 25px;
  font-size: 1.25rem;
}

/* RIGHT IMAGE */
.jr-right {
  width: 55%;
  display: flex;
  justify-content: center;
}

.jr-right img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* BUTTON */
.jr-btn {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid #c89f54;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

/* ARROWS */
.jr-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  z-index: 10;
}

.jr-arrow.left {
  left: 10px;
}

.jr-arrow.right {
  right: 10px;
}

/* MOBILE (MATCHES NIFTYINTERIO) */
@media (max-width: 768px) {
  .jr-content {
    padding: 20px;
  }

  .jr-content-item {
    flex-direction: column;
    text-align: center;
  }

  .jr-left,
  .jr-right {
    width: 100%;
  }

  .jr-right img {
    margin-bottom: 20px;
  }
}


/* Dynamic Text Code */

.banner-heading {
  line-height: 1.2;
}

.dynamic-text {
  color: #c89f54;
  border-right: 3px solid #c89f54;
  padding-right: 6px;
  white-space: nowrap;
  display: inline-block;
}


/* Mobile fix */
@media (max-width: 768px) {
  .banner-heading {
    font-size: 32px !important;
    text-align: left;
  }
}


/* MOBILE CARD STYLE */
@media (max-width: 768px) {

  .jr-content {
    padding: 20px;
    overflow: hidden;
  }

  .jr-content-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }

  .jr-left h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .jr-left p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .jr-btn {
    border: 1px solid #c89f54;
    padding: 10px 24px;
    display: inline-block;
  }

  /* HIDE STEPS BAR */
  .jr-steps {
    display: none;
  }

  /* DOTS */
  .jr-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 8px;
  }

  .jr-dots .dot {
    width: 8px;
    height: 8px;
    background: #ddd;
    border-radius: 50%;
    transition: 0.3s;
  }

  .jr-dots .dot.active {
    background: #000;
  }
}



.footer-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .footer-map {
    display: block !important;
    width: 100%;
    margin-top: 20px;
  }

  .footer-map iframe {
    width: 100%;
    height: 220px;
  }
}


.map-card {
    padding: 14px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.map-card iframe {
    width: 100% !important;
    height: 420px !important;
    border: 0 !important;
    border-radius: 16px;
    display: block;
}


.map-card {
    padding: 14px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    overflow: hidden; /* ⭐ THIS FIXES DESKTOP CURVE */
}

.map-card iframe {
    width: 100% !important;
    height: 420px !important;
    border: 0;
    border-radius: 16px;
    display: block;
}

/* ===== FORCE MAP FIX (DESKTOP + MOBILE) ===== */

.map-card {
    padding: 16px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    overflow: hidden;
}

.map-card iframe {
    width: 100% !important;
    height: 420px !important;
    min-height: 420px !important;
    border: none !important;
    border-radius: 18px !important;
    display: block !important;
    max-width: none !important;
}

.map-title {
    text-align: center;
    margin-bottom: 12px;
    font-size: 30px;
    font-weight: 600;
    color: var(--primary);
}


.brand-text {
    margin-left: 15px;
}

/* Desktop only spacing */
@media (min-width: 992px) {
    .brand-text {
        margin-left: 130px;
    }
}

/* FORCE JUSTIFY TEXT SITEWIDE */
p {
  text-align: justify !important;
  text-align-last: left;
  hyphens: auto;
}

