/**********  CSS **********/
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
body {
  font-family: "Plus Jakarta Sans", sans-serif !important;
}
h1 {
  font-weight: 600 !important;
}
h2 {
  font-size: 42px;
  font-weight: 800;
  color: #2a353c;
  margin-bottom: 0;
}
h4,
.h4 {
  font-size: 20px;
  font-weight: 700;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #2a353c;
  font-weight: 400;
  font-size: 14px;
}
h5,
.h5 {
  font-size: 18px;
  font-weight: 700 !important;
}
.back-to-top {
  position: fixed;
  display: none !important;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

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

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

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

.btn-lg-square {
  width: 48px;
  height: 48px;
}
.logo img {
  width: 179px;
  height: 100%;
}

.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: #f8a61c;
  border-color: #777777;
}

.btn-outline-body:hover {
  color: #ffffff;
  background: #f8a61c;
  border-color: #f8a61c;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}
.top-bars a {
  font-size: 14px;
}
.navbar .navbar-nav .nav-link {
  margin-right: 20px;
  padding: 2px 24px 7px 0;
  color: #fff;
  font-weight: 500;
  text-transform: inherit;
  outline: none;
  font-size: 14px;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #f8a61c;
}
.sticky-top {
  background-color: #211f20;
}
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
  padding-top: 9px !important;
  padding-bottom: 9px !important;
}
@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
    text-align: justify;
  }

  .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: 0.5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}
.owl-carousel .owl-item img {
  display: inline;
  width: 100%;
}

/*** Header ***/
.owl-carousel-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  background: rgb(0 0 0 / 31%);
}
.owl-carousel-inner p {
  font-size: 16px;
  margin-top: 18px;
}
.owl-carousel-inner .btn-primary {
  color: #fff;
  background-color: #f57a34;
  border-color: #f57a34;
  border-radius: 29px;
  padding: 11px 23px !important;
}
@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;
  }
}
.bg-darks {
  background: linear-gradient(319deg, #fa9a0e 15%, #f1511c 70%);
}
.owl-dots {
  text-align: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.owl-dot {
  display: inline-block;
}

/* 
.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #fff;
    transition: .5s;
} */
.btn-check:focus + .btn,
.btn:focus {
  outline: 0;
  box-shadow: none;
}
.header-carousel .owl-dots .owl-dot img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 2px;
  transition: 0.5s;
  opacity: 0.3;
}

.header-carousel .owl-dots .owl-dot.active img {
  opacity: 1;
}
.page-header {
  background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 4%)),
    url(../img/banner.png) center center no-repeat;
  background-size: cover;
  text-align: center;
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.breadcrumb-item {
  font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #f47332;
}
.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}
a {
  color: #f5a641;
  text-decoration: none;
}
/*** Section Title ***/
.section-title {
  color: #f8a61c;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}
.breadcrumb-item.active {
  color: #ffffff;
}

/*** 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: 0.5s;
}

.fact-item:hover .fact-icon {
  background: #fff;
}

.fact-item .fact-icon i {
  color: #f8a61c;
  transition: 0.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 #f8a61c;
  z-index: -1;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  color: #000;
}
.contact span {
  color: #000;
}
.contact .btn-square {
  width: 38px;
  height: 38px;
}
.rounded-circle {
  border-radius: 50% !important;
}
/*** 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: 0.5s;
  opacity: 0;
}
.service-item h4 {
  opacity: 1;
}
.service-item h3 {
  color: #f8a61c;
}
.service-item:hover .service-text {
  background: #fff;
  opacity: 1;
  border: 1px solid #fff;
}
.service-item h2 {
  font-size: 30px;
  font-weight: 700;
}
.service-item * {
  transition: 0.5;
}

.service-item :hover p {
  color: #ffffff;
}

.service-items .btn {
  width: 100%;
  align-items: center;
  color: #fff;
  background: #f57a34;
  overflow: hidden;
  transition: 0.5s;
  padding: 7px;
}

.service-item:hover .btn {
  width: 100%;
  text-align: center;
}

/*** Project ***/
.project .nav .nav-link {
  background: var(--light);
  transition: 0.5s;
}

.project .nav .nav-link.active {
  background: #f8a61c;
}

.project .nav .nav-link.active h3 {
  color: #ffffff !important;
}

/*** Footer Start ***/
.footer {
  background: #000;
}

.footer .footer-item {
  display: flex;
  flex-direction: column;
}

.footer .footer-item a {
  line-height: 30px;
  color: #fff;
  transition: 0.5s;
  font-size: 14px;
}

.footer .footer-item p {
  line-height: 25px;
  font-size: 14px;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.btn-custom {
  background-color: #f57a34;
  color: #fff;
  border-radius: 0px;
  padding: 8px 20px;
  border: none;
}

.service-box {
  text-align: left;
  padding: 20px;
  border-radius: 10px;
}

.number-box span {
  font-size: 24px;
  font-weight: bold;
  color: #c8a97e;
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: rgba(0, 0, 0, 0.2);
  border: 0;
  opacity: 0.25;
}
.service-box h5 {
  font-weight: 600 !important;
  font-size: 18px;
  color: #2a353c;
  margin-top: 15px;
}

.service-box p {
  color: #666;
  font-size: 14px;
}

.service-box a {
  color: #f47332;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}
.number-box h1 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5em;
  padding-bottom: 15px;
  position: relative;
}
.number-box h1:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  height: 3px;
  width: 55px;
  background-color: #f47332;
}
.number-box h1:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 95%;
  max-width: 255px;
  background-color: #f47332;
}
.designs-section {
  padding: 50px 0;
}
.design-title {
  font-size: 24px;
  font-weight: 600 !important;
  color: #2a353c;
}
.design-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.design-card img {
  width: 100%;
  border-radius: 10px;
}
.btn-outline-warning {
  color: #f47332;
  border-color: #f47332;
  font-size: 15px;
  font-weight: 500 !important;
}
.category-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: #ffd700;
  padding: 5px 10px;
  border-radius: 0px;
  font-weight: bold;
  font-size: 12px;
}
.view-all {
  float: right;
  background-color: #f57834;
  color: #fff;
  padding: 7px 15px;
  border-radius: 1px;
  text-decoration: none;
  font-size: 14px;
}
.designs-section .col-md-7 {
  flex: 0 0 auto;
  width: 59.33333%;
}
.designs-section .col-md-5 {
  flex: 0 0 auto;
  width: 40.66667%;
}
.interior-section {
  padding: 50px 0;
  background-color: #f1f3f3;
}
.interior-buttons .nav-link {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 24px;
  border-radius: 30px;
  font-weight: 500;
  border: 1px solid #d9d6d4;
  margin-bottom: 12px;
  color: #2a353c;
}
.interior-buttons .nav-link.active {
  background-color: #f57834;
  color: #fff;
}
.interior-buttons .nav-link i {
  font-size: 14px;
  background: #ffffff;
  padding: 10px 11px 10px;
  border-radius: 50%;
  color: #000;
}
.content h2 {
  font-size: 32px;
  font-weight: bold;
}
.content p {
  color: #6c757d;
}
.content ul {
  list-style: none;
  padding: 0;
}
.content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #2a2d2e;
  font-size: 15px;
}
.content ul li i {
  color: #f57834;
  margin-right: 10px;
}
.content p {
  color: #2a353c;
}
.check img {
  width: 20px;
}
.know-more {
  background-color: #f57834;
  color: #fff;
  padding: 8px 20px;
  border-radius: 0px;
  text-decoration: none;
}
.blog-section {
  background-color: #fff;
}

.featured-post {
  background-color: #f7f8fa;
  border-radius: 32px;
}

.post-thumb {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 10px;
}
.smll-posts h5 {
  font-size: 21px;
  font-weight: 500;
  color: #062a26;
}
.footer-item img {
  width: 206px;
}
.btn-danger:hover {
  background-color: #b02a37;
}
.form-control {
  margin-bottom: 15px;
  border-radius: 1px;
  border: 1px solid #ced4da;
  padding: 15px;
  font-size: 15px;
  font-weight: 400;
}
.form-section h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
.form-control {
  margin-bottom: 15px;
  border-radius: 0px;
  border: 1px solid #ced4da;
}
.form-control:focus {
  box-shadow: none;
  border-color: #f47134;
}
.btn-submit {
  background-color: #f47134;
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  color: #fff;
  border-radius: 0px;
  font-size: 14px;
  transition: background-color 0.3s;
}
.btn-submit:hover {
  background-color: #f47134;
}
.image-section {
  background-image: url("../img/bg.png"); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  border-radius: 0 10px 10px 0;
}
@media (max-width: 768px) {
  .form-section {
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .image-section {
    border-radius: 10px;
    min-height: 300px;
  }
  .featured-post {
    background-color: #f7f8fa;
    border-radius: 32px;
    display: block !important;
    padding: 16px;
    margin-bottom: 33px;
  }
  .designs-section .col-md-7 {
    flex: 0 0 auto;
    width: 100%;
  }
  .designs-section .col-md-5 {
    flex: 0 0 auto;
    width: 100%;
  }
  .designs-section {
    padding: auto;
  }
}
.interior-section {
  background-color: #f8f9fa;
}
.nav-tabs {
  border-bottom: none;
}

.nav-tabs .nav-link:hover {
  background-color: #f1f1f1;
}
.nav-tabs .nav-link img {
  width: 20px;
  height: 20px;
}

.content h6 {
  font-size: 15px;
  font-weight: 700;
}
.content h2 {
  font-size: 2rem;
  font-weight: bold;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  border-color: #f57834 #dee2e6 #fff;
}
.check li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.check li img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.service-items h2 {
  font-size: 28px;
}
.know-more img {
  width: 20px;
  height: 20px;
  margin-left: 5px;
}
@media (max-width: 768px) {
  .nav-tabs .nav-link {
    font-size: 0.9rem;
  }
  .content h2 {
    font-size: 1.5rem;
  }
}

/* Step Circle Styling */
.step-circle {
  width: 50px;
  height: 50px;
  background-color: #f8a61c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Connecting Line */
.row.position-relative::before {
  content: "";
  position: absolute;
  top: 25px;
  left: calc(16.67% + 25px);
  right: calc(16.67% + 25px);
  height: 2px;
  background-color: #f57a34;
  z-index: 0;
}
.form-label {
  margin-bottom: 0.5rem;
  color: #000;
  font-size: 14px;
}
/* Job Card Styling */
.job-card {
  max-width: 950px;
  border: 0px solid #000;
  border-radius: 0;
}

.job-card .card-header {
  background-color: #000;
  color: #fff;
  border-bottom: none;
}

.job-card .card-body {
  padding: 20px;
}

.job-card h6 {
  font-weight: bold;
  margin-top: 15px;
}

.job-card p {
  margin-bottom: 15px;
}

/* Apply Button Styling */
.apply-btn {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  border-radius: 0;
  padding: 8px 20px;
  font-weight: bold;
}

.apply-btn:hover {
  background-color: #333;
  border-color: #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .job-card {
    margin: 0 15px;
  }

  /* Adjust the line for smaller screens */
  .row.position-relative::before {
    left: calc(16.67% + 20px); /* Adjust for smaller circle size */
    right: calc(16.67% + 20px);
    top: 20px;
  }
}
.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #fff;
  box-shadow: none;
} /* File Input Background Color */
input[type="file"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 13px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #1f448c;
}
.form-control:focus {
  color: #000;
  border-color: #dbc6b2;
  outline: 0;
}
.form-control {
  color: #000;
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
  transition: 0.5s;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
}

.blog .blog-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
}

.blog .blog-item .blog-img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
  overflow: hidden;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: rgba(1, 95, 201, 0.2);
  transition: 0.5s;
  z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
  height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
  position: absolute;
  bottom: 0;
  right: 0;
  border-top-left-radius: 10px;
  display: inline-flex;
  z-index: 9;
}
.blog-content .small {
  color: #000;
}
.blog .blog-item .blog-content {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: #ffffff;
}

/*** Blog End ***/

.meta-info {
  display: flex;
  align-items: center;
  padding: 10px 0px;
  gap: 15px;
  color: #555;
  margin-top: 10px;
  font-size: 16px;
}
.meta-info i {
  color: #f47332;
  margin-right: 5px;
}
/* Recent Posts */
.recent-post {
  display: flex;
  align-items: center;
  /* background: white; */
  padding: 10px;
  /* border-radius: 5px; */
  /* border: 1px solid #ddd; */
  margin-bottom: 10px;
}

.recent-post img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0px;
  margin-right: 10px;
}

.recent-post-content {
  display: flex;
  flex-direction: column;
}
.border-bottom {
  border-bottom: 1px solid #25252552 !important;
}
.recent-post-meta {
  font-size: 12px;
  font-weight: bold;
  color: #041d2b9c;
  text-transform: uppercase;
}

.recent-post-title {
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
  color: #333;
  text-decoration: none;
}

.recent-post-title:hover {
  color: #f26f1d;
}
/* CUSTOM ACCORDION DESIGN */
.custom-accordion .accordion-item {
  border: none;
  margin-bottom: 10px;
  background: none;
}
.accordion-header {
  background: #f8f8f8;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  padding: 14px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}
.accordion-header:hover {
  background: #eceff1;
}

.accordion-body {
  background: white;
  padding: 15px;
  border-radius: 8px;
  margin-top: 5px;
  font-size: 16px;
  color: #555;
  border-left: 3px solid #f8a61c;
}

.icon {
  font-size: 12px;
  transition: 0.3s;
}

/* STEP NUMBER STYLE */
.step-number {
  font-weight: 600;
  color: gray;
  margin-right: 10px;
}

/* BUTTON */
.btn-orange {
  background-color: #f57a34;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  border: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-orange:hover {
  background-color: #e6691a;
  color: white;
}
.img-cover {
  width: 100%;
  height: 500px;
}
/* IMAGE DESIGN */
.image-container {
  position: relative;
  transform: rotate(5deg);
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.image-container img {
  border-radius: 10px;
}
.step-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.step-card:hover {
  transform: translateY(-5px);
  color: white;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #f57a34;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  margin: 0 auto 10px;
}

.step-title {
  font-weight: bold;
  font-size: 14px;
}

/* Button Styling */
.btn-orange {
  background-color: #f57a34;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 25px;
  border: none;
  transition: 0.3s ease;
}

.btn-orange:hover {
  background-color: #f57a34;
}

/* Responsive Design */
@media (max-width: 768px) {
  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .step-title {
    font-size: 12px;
  }
}
/* Step Box */
.step-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
  text-align: center;
}

.step-box:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid #e76134;
}

/* Step Icon */
.step-icon {
  width: 80px;
  height: 80px;
  background: #f47134;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  margin: 0 auto 15px;
  transition: 0.3s ease-in-out;
}

.step-box:hover .step-icon {
  background: #e66000;
  transform: scale(1.1);
}

/* Step Title */
.step-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

/* Step Description */
.step-desc {
  color: #666;
  font-size: 14px;
}

/* Button Styling */
.btn-orange {
  background-color: #f47134;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 25px;
  border: none;
  transition: 0.3s ease;
}

.btn-orange:hover {
  background-color: #e66000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .step-box {
    padding: 20px;
    height: 190px;
  }
}

/* Work Flow */
.workflow-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  position: relative;
  margin-top: 40px;
  padding: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Progress Line */
.workflow-wrapper::before {
  content: "";
  position: absolute;
  width: 83%;
  height: 4px;
  background: linear-gradient(135deg, #f57a34, #f57c31);
  top: 50%;
  left: 10%;
  z-index: -1;
  border-radius: 10px;
}
.workflow-step {
  width: 140px;
  text-align: center;
  position: relative;
}

.workflow-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f57a34, #f26334);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  margin: 0 auto 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-circle i {
  font-size: 28px;
  color: white;
}

.workflow-title {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin: -6px;
}

/* Hover effect */
.workflow-circle:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Styling */
@media (max-width: 768px) {
  .workflow-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .workflow-wrapper::before {
    display: none; /* Remove progress line */
  }

  .workflow-step {
    width: 100%;
  }

  .workflow-circle {
    width: 60px;
    height: 60px;
  }

  .workflow-circle i {
    font-size: 24px;
  }

  .workflow-title {
    font-size: 14px;
    margin-top: 5px;
  }
}

/* Extra Small Screens */
@media (max-width: 480px) {
  .workflow-circle {
    width: 50px;
    height: 50px;
  }

  .workflow-circle i {
    font-size: 20px;
  }

  .workflow-title {
    font-size: 13px;
  }
}
.owl-carousel .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.owl-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  background: #fff;
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active span {
  opacity: 1;
  background: #f47332;
}
.card {
  background-color: transparent;
}
.card-title {
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.card-title img {
  margin-right: 8px;
  width: 42px;
}

.card-body {
  flex: 1 1 auto;
  padding: 21px;
  position: relative;
  background: #ffffff;
  width: 89%;
  left: 6%;
  margin-top: -43px;
}
.what-we-do .col-lg-4 {
  flex: 0 0 auto;
  width: 35.33333%;
}
.what-we-do .col-lg-3 {
  flex: 0 0 auto;
  width: 29%;
}
.what-we-do .border {
  border: 1px solid #ffffff !important;
}
.bg-orange {
  background-color: #ff6a00; /* Match your design’s orange */
}

.rounded-4 {
  border-radius: 1rem;
}
.prc_bg {
  background-image: url(../img/prc_bg.png);
  background-size: cover;
  background-position: center;
  border-radius: 0 10px 10px 0;
}
.prc_bg .d-flex {
  display: flex !important
;
  align-content: space-between;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.fs-3 {
  font-size: 39px !important;
  color: #0000007a;
}
.we-works .col-md-2 {
  flex: 0 0 auto;
  width: 16.66667%;
}
.we-works .col-md-1 {
  flex: 0 0 auto;
  width: 3.33333%;
}
h6,
.h6 {
  font-size: 18px;
  font-weight: 600;
  color: #2a353c;
}
small,
.small {
  font-size: 14px;
  color: #2a353c;
}
.we-works h6 {
  margin-bottom: 11px;
}
@media (max-width: 767px) {
  .step-flow .col-6 {
    margin-bottom: 2rem;
  }
  .what-we-do .col-lg-4 {
    flex: 0 0 auto;
    width: 100%;
  }
  .what-we-do .col-lg-3 {
    flex: 0 0 auto;
    width: 100%;
  }
  .we-works .col-md-2 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.about .check li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #2a2d2e;
  font-weight: 500;
  font-size: 15px;
}
.display-3 {
  font-size: 42px;
}
.breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
  justify-content: center;
}
.bg-gray {
  background-color: #f1f3f3;
}
.display-1 {
  font-size: 64px;
}
.list-group-item.active {
  background-color: #f26522;
  border-color: #f26522;
}

.card-body p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 11px;
  color: #2a353c !important;
  background-color: #fff;
  border: 0px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: 500;
}
.list-group-item-action:hover,
.list-group-item-action:focus {
  z-index: 1;
  color: #f26522 !important;
  text-decoration: none;
  background-color: #f8f9fa00;
}
.border-start {
  border-left: 3px solid #f47332 !important;
}
.list-group-item.active {
  background-color: #f26522;
  border-color: #f26522;
  color: #fff !important;
}
.blog h5 {
  font-size: 20px;
}
.custom-underline {
  color: #000; /* text color */
  font-weight: bold;
  text-underline-offset: 4px; /* Adds space between text and underline */

  text-decoration: underline;
  text-decoration-color: orange; /* change this to your desired color */
}
.Posts p {
  font-weight: 600;
  font-size: 13px;
}
.Posts hr {
  margin: 0 0 13px;
  color: inherit;
  background-color: rgba(0, 0, 0, 0.2);
  border: 0;
  opacity: 0.25;
}
.badge {
  display: inline-block;
  padding: 10px;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.blog .form-control {
  color: #000;
  display: block;

  padding: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.input-group .btn {
  position: relative;
  z-index: 2;
  padding: 11px;
  height: 100%;
}
.contact .icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f76b1c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin: 0;
}

.contact-box {
  background: #f9f9f9;
}
.contact-us .form-control {
  margin-bottom: 15px;
  border-radius: 0px;
  border: 1px solid #ffffff;
  border-radius: 1px !important;
  padding: 14px !important;
}
.form-control {
  border-radius: 5px;
  padding: 10px 15px;
}

.contact-image {
  max-height: 450px;
  object-fit: cover;
}

.btn-orange {
  background-color: #f76b1c;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
}

.btn-orange:hover {
  background-color: #d85d16;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #fff;
  background-color: #f47332;
  border-color: #f47332 #dee2e6 #fff;
  border-right: 1px solid rgb(244 115 50) !important;
}
.taab .navs {
  border-bottom: none;
  background: #f1f3f3;
  padding: 12px;
}
.taab .nav-tabs {
  border-bottom: none;
  background: #fff;
  padding: 12px;
}
.taab .nav-link {
  display: block;
  padding: 3px 13px;
  color: #2a353c;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
  font-size: 15px;
  font-weight: 500;
  border-right: 0px solid rgba(0, 0, 0, 0.2) !important;
}
.main-contents img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .taab .nav-link {
    display: block;
    padding: 8px 6px;
    color: #2a353c;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
      border-color 0.15s ease-in-out;
    font-size: 15px;
    font-weight: 500;
    border-right: 0px solid rgba(0, 0, 0, 0.2) !important;
  }
  .display-1 {
    font-size: 33px;
  }
  .taab .nav-tabs {
    border-bottom: none;
    background: #fff;
    padding: 9px;
  }
  .taab .justify-content-center {
    justify-content: flex-start;
  }
  .main-content {
    padding: 0 !important;
  }
  h2 {
    font-size: 37px;
  }
  .navbar .navbar-nav .nav-link {
    border-right: 0px solid #dee2e6;
  }
  .navbar .btn-primary {
    margin-bottom: 16px;
  }
  .blog h5 {
    font-size: 20px;
    margin-top: 13px;
  }
  .main-contents img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.summary-details {
  color: #000;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}
.navbar-light .navbar-toggler-icon {
  background-image: url(../img/line.png);
}
.navbar-light .navbar-toggler {
  color: #dc3545;
  border-color: #f47134;
}
.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 100px;
  right: 15px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}
.modal-header-custom {
  background: linear-gradient(to right, #f47134, #f47134);
  padding: 0;
  border: none;
}

.modal-header-custom img {
  width: 100%;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.property-btns .btn {
  color: #000;
  margin: 4px 6px;
  border-color: #dee2e6;
  font-size: 14px;
}
.modal-footer {
  justify-content: center;
  border-top: none;
}

.modal-content {
  border-radius: 1rem;
}
.form-select {
  display: block;
  width: 100%;
  padding: 9px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000b0;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #cfd4d9;
  border-radius: 5px;
  appearance: none;
}
.btns {
  -webkit-appearance: none;
  border: 0;
  outline: 0;
  position: relative;
  background: linear-gradient(
    -45deg,
    #f99d0d,
    #fa9a0e,
    #f1541b,
    #fa9a0e,
    #f47134
  );
  background-size: 400% 400%;
  animation: gradientBG 4.5s ease infinite;
  padding: 10px 23px;
  color: #fff;
  text-transform: uppercase;
  border-radius: 100px;
  font-size: 14px;
  transition: 0.3s;
  font-weight: 700;
}
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.arrow-icon {
  display: inline-block;
  animation: moveArrow 1s infinite;
}
@keyframes moveArrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}

.btn-outline-primary:hover {
  color: #ffffff;
  background-color: #f47332;
  border-color: #f47332;
}

.btn-primary:hover {
  color: #f47332 !important;
  background-color: #fff;
  border-color: #f47332;
}

/* --------------------------------------
SCOPE OF WORK
-----------------------------------------*/
.scope-form-wrapper {
  max-width: 800px;
  background: #fff;
  border-radius: 10px;
  /* margin: 60px auto; */
  /* padding: 50px 30px 130px; */
  position: relative;
  overflow: hidden;
}

.scope-heading {
  font-size: 22px;
  font-weight: 600;
  color: #2c2c2c;
  text-align: center;
  margin-bottom: 10px;
}

.scope-subtext {
  text-align: center;
  font-size: 14px;
  color: #555;
}

.scope-subtext a {
  color: #f45d61;
  font-weight: 500;
  text-decoration: none;
}
.scope-width {
  max-width: 500px;
}

.scope-option {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.02);
}

.scope-option input[type="radio"] {
  accent-color: #ff5500;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.scope-option label {
  margin: 0;
  font-size: 14px;
  color: #2e2e2e;
  cursor: pointer;
}

.scope-option.selected {
  border: 2px solid #f47332;
  background: linear-gradient(to right, #fff, #fff0f1);
}
.scope-footer {
  bottom: 0;
  left: 0;
  right: 0;
  /* background: #fff; */
  padding: 20px 30px;
  /* border-top: 1px solid #eee; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  /* box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, .05); */
}

.btn-scope-back {
  background: none;
  border: none;
  color: #f47332;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

.btn-scope-next {
  background-color: #f47332;
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 35px;
  border-radius: 50px;
}

@media (max-width: 576px) {
  .scope-form-wrapper {
    margin: 30px 15px;
    padding: 30px 20px 130px;
  }

  .scope-footer {
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
  }

  .btn-scope-next {
    width: 100%;
  }
}

/* -----------------------------------
PICK THE ROOMS
----------------------------------------*/

.scope-heading {
  font-size: 1.5em;
  margin-bottom: 10px;
  text-align: center;
}
.scope-option {
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.scope-option.selected {
  background: #fff5ea;
}

.quantity-control {
  display: flex;
  align-items: center;
  color: #000;
  justify-content: center;
}

.btn-quantity {
  width: 28px;
  height: 28px;
  border: none;
  background: #f47332;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  margin: 0 5px;
  /* line-height: 24px; */
  display: flex;
  justify-content: center;
  align-content: flex-end;
  align-items: center;
  padding: 0 0 4px;
}

.quantity {
  font-size: 24px;
  margin: 0 10px;
}

.estimate-form {
  max-width: 462px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
}

.estimate-form div {
  margin-bottom: 15px;
}

.estimate-form input[type="text"],
.estimate-form input[type="email"],
.estimate-form input[type="tel"],
.estimate-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 1px;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.estimate-form input:focus,
.estimate-form select:focus {
  outline: none;
  border-color: #007bff;
}

.estimate-form label {
  font-size: 14px;
  color: #333;
}

.estimate-form input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
  accent-color: #e91e63; /* Pink checkbox */
}

.estimate-form p {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
}

.estimate-form a {
  color: #e91e63;
  text-decoration: none;
}

.estimate-form a:hover {
  text-decoration: underline;
}

.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
.form-container {
  max-width: 854px;
  margin: 54px auto;
  padding: 0px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* #step-0{
  display: block;
    padding: 35px 162px 34px !important;
} */
/* .works {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
} */

.step-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}
.step-circle {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: #000;
  font-weight: bold;
  font-size: 13px;
  transition: background-color 0.3s, border-color 0.3s;
  z-index: 1;
}
.step-circle.completed {
  background-color: #28a745;
  border: 2px solid #28a745;
  color: #fff;
}
.step-circle.current {
  background-color: #f88512;
  border: 1px solid #f36319;
  color: #fff;
}
.step-circle.future {
  background-color: #ffffff;
  border: 1px dotted #f88512;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-label {
  font-size: 13px;
  margin-top: 5px;
  color: #333;
  font-weight: 600;
}
.step-line {
  width: 100px;
  height: 1px;
  transition: background-color 0.3s;
}
.step-line.completed {
  background-color: #28a745;
}
.step-line.current {
  background-color: #007bff;
}
.step-line.future {
  background-color: #f88512;
}
.btn-nav {
  margin: 0 10px;
}
.radio-group {
  margin-bottom: 15px;
  color: #333;
  font-size: 14px;
}
.radio-group label {
  display: block;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.radio-group input[type="radio"] {
  margin-right: 10px;
}
.radio-group label:hover {
  background-color: #f1f1f1;
}
.radio-group input[type="radio"]:checked + span {
  font-weight: bold;
  color: #007bff;
}
.navs {
  position: relative; /* Required for absolute positioning of buttons */
}

.nav-tabs {
  overflow-x: auto;
  white-space: nowrap;
  flex-wrap: nowrap; /* Ensure tabs don't wrap */
  scrollbar-width: none; /* Hide scrollbar in Firefox */
}

.nav-tabs::-webkit-scrollbar {
  display: none; /* Hide scrollbar in WebKit browsers */
}

.nav-tabs .nav-link {
  white-space: nowrap; /* Prevent text wrapping in tabs */
}

#prevBtn {
  left: -40px;
}
#nextBtn {
  right: -43px;
}
#prevBtn,
#nextBtn {
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #000;
  border-radius: 50%;
}

/* Optional: Style for portfolio cards */
.card {
  transition: transform 0.2s;
}

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

.custom-underline {
  text-decoration: none;
}
@media (max-width: 767px) {
  #nextBtn {
    right: 9px;
  }
  #prevBtn {
    left: 0px;
  }
} /* Floating chat button */
.chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 24px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Chat form container */
.chat-form-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 339px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  padding: 3px;
  max-height: fit-content;
  z-index: 999;
}

.chat-form-container.active {
  display: flex;
}

.chat-form-container textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  resize: none;
  height: 100px;
}

.chat-form-container button {
  padding: 0 9px 7px;
  background-color: #f47134;
  color: white;
  border: none;
  border-radius: 5px;
  margin-top: 0px;
  cursor: pointer;
  line-height: 21px;
}
.size-group label {
  display: inline-block;
  color: #000;
  font-size: 14px;
}

/* Close button inside the form */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: #888;
  cursor: pointer;
}

.close-btn:hover {
  color: #000;
}

.package-group span {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
.contact-icon-bar {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: #f26f1d;
  border-radius: 0px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  width: 120px;
  text-align: center;
}

.contact-popup {
  display: none;
  position: fixed;
  right: 120px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.form-control:disabled,
.form-control:read-only {
  color: #0000008f;
  background-color: #ffffff;
  opacity: 1;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 818px;
    margin: 1.75rem auto;
  }
}
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  display: none;
}
@media (max-width: 767px) {
  .step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
    gap: 3px;
  }
  .step-label {
    font-size: 11px;
    margin-top: 5px;
    color: #333;
    font-weight: 600;
  }
}
.fs-5 {
  font-size: 30px !important;
}
.btn-close {
  opacity: 1.5;
}

.btn-close-white {
  filter: none;
  color: #000;
}
.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 0 !important;
  border-bottom: 1px solid #252525;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-sm {
  z-index: 999;
  width: 32px;
  height: 32px;
  position: absolute !important;
  box-shadow: none !important;
  background: none !important;
  border: none;
  top: 20px !important;
}
