/********** Template CSS **********/
:root {
  --primary: #fda12b;
  --secondary: #8d9297;
  --light: #f8f9fa;
  --dark: #525252;
}

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

/*** Spinner ***/
#spinner {
  opacity: 0;
  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-outline-primary:hover {
  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;
}

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

.navbar .navbar-nav .nav-link {
  margin-left: 30px;
  padding: 25px 0;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--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-left: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    margin-top: 25px;
    border-top: 1px solid #eeeeee;
  }
}

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

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

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  text-align: start;
  background: rgba(0, 0, 0, 0.236);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--dark);
  border: 15px solid var(--dark);
  border-radius: 50px;
}

.carousel-caption .breadcrumb-item + .breadcrumb-item::before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary);
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

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

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-width: 12px;
  }
}

.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url(/img/repairingsofas.jpeg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #999999;
}

/*** Facts ***/
.facts-overlay {
  position: absolute;
  padding: 30px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: rgba(0, 0, 0, 0.322);
}

.facts-overlay h1 {
  font-size: 120px;
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
}

.facts-overlay a:hover {
  color: var(--primary) !important;
}

/*** Service ***/
.service-text::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: var(--primary);
  opacity: 0;
  transition: 0.5s;
}

.service-item:hover .service-text::before {
  height: 100%;
  opacity: 1;
}

.service-text * {
  position: relative;
  transition: 0.5s;
  z-index: 1;
}

.service-item:hover .service-text * {
  color: #ffffff !important;
}

/*** Appointment ***/
.appointment {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url(../img/carousel-2.jpg) center center no-repeat;
  background-size: cover;
}

/*** Team ***/
.team-text {
  position: absolute;
  width: 75%;
  bottom: 30px;
  left: 0;
  transition: 0.5s;
}

.team-item:hover .team-text {
  width: 100%;
}

.team-text * {
  transition: 0.5s;
}

.team-item:hover .team-text * {
  letter-spacing: 2px;
}

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

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin-right: 15px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-size: 18px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #ffffff;
  background: var(--primary);
}

/*** Footer ***/
.footer {
  color: #999999;
}

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

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

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

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  color: #fff;
}
.appointment {
  background-image: url("/img/making-restoring-your-own-wooden-furniture-home.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.appointment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(101, 71, 71, 0.473); /* Dark overlay for readability */
  z-index: 1;
}

.appointment > * {
  position: relative;
  z-index: 2;
}
/* Center navbar items */
#navbarCollapse {
  justify-content: left !important;
}

.navbar-nav {
  margin: 0 auto !important;
  display: flex;
  justify-content: left;
}

.navbar-nav.ms-auto {
  margin-right: 0 !important;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  padding: 10px 20px;
  font-weight: 500;
}

.service-bar {
  padding: 20px 10px;
  background: #ffffff;
}

.service-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.service-text {
  background: #e95b34;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 15px;
  text-align: center;
  
}
/* .service-text:hover {
  background: #e95b34;
  color: #ffffff;
} */

.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fda12b;
  color: #ffffff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.call-btn:hover {
  background: #e95b34;
  color: #ffffff;
}

.call-icon {
  font-size: 26px;
  margin-right: 10px;
}

/* 🔹 Responsive */
@media (max-width: 768px) {
  .service-text {
    font-size: 20px;
    padding: 12px;
  }

  .call-btn {
    font-size: 18px;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .service-text {
    font-size: 16px;
  }

  .call-btn {
    font-size: 16px;
    padding: 10px 16px;
  }
}
img.w-100 {
  width: 100% !important;
  height: 700px; /* Fixed height */
  object-fit: cover; /* Image crop without distortion */
  object-position: center;
}
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.bg-light {
  background-color: rgb(24 35 51) !important;
}
.navbar .navbar-nav .nav-link {
  margin-left: 30px;
  padding: 25px 0;
  color: #000000;
  font-weight: 600;
  text-transform: uppercase;
  outline: none;
}

/*  - Facts Section */
.container-fluid.my-5 .row.g-0 {
  height: 450px; /* Fixed section height */
}

.container-fluid.my-5 .col-xl-3,
.container-fluid.my-5 .col-sm-6 {
  height: 100% !important; /* All columns same height */
}

.container-fluid.my-5 .position-relative {
  height: 100%;
}

.container-fluid.my-5 .img-fluid.w-100 {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
  object-position: center;
}

/* Tablet */
@media (max-width: 991px) {
  .container-fluid.my-5 .row.g-0 {
    height: 350px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .container-fluid.my-5 .row.g-0 {
    height: 280px;
  }
}

/* Services Section - Perfect Height Control */
.container-xxl.py-5 {
  padding: 80px 0 !important;
}

.service-item {
  height: 420px !important; /* Fixed card height */
  display: flex;
  flex-direction: column;
}

.service-item img.img-fluid {
  height: 250px !important; /* Fixed image height */
  width: 100% !important;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.service-item:hover img.img-fluid {
  transform: scale(1.05);
}

.service-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px !important;
}

.service-item h5 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1e293b;
}

.service-item p {
  flex-grow: 1;
  color: #fbfcfc;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Tablet */
@media (max-width: 991px) {
  .service-item {
    height: 380px !important;
  }

  .service-item img.img-fluid {
    height: 320px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .service-item {
    height: 350px !important;
  }

  .service-item img.img-fluid {
    height: 200px !important;
  }
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.service-column {
  width: 100%;
}

.service-card {
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 420px;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(20, 184, 166, 0.2);
}

.service-img {
  height: 250px !important;
  width: 100% !important;
  object-fit: cover;
  object-position: center;
  border-radius: 20px 20px 0 0;
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-link {
  color: #ffffff !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.service-link:hover {
  color: #f59e0b !important;
  transform: translateX(8px);
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}
.service-content p {
  color: white !important;
}
.service-link {
  display: block;
  margin: 20px auto 0 !important;
  text-align: center !important;
}
small {
  color: #f4ba2c;
}
.form-floating * {
  color: white !important;
}

.floating-buttons {
  position: fixed;
  bottom: 30px;
  left: 20px; /* LEFT SIDE - Changed from right: 20px */
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.whatsapp-float,
.call-float {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* WhatsApp Green */
.whatsapp-float {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

/* Call Teal */
.call-float {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  color: white;
  animation: pulse 2s infinite;
}

.call-float:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 12px 35px rgba(20, 184, 166, 0.4);
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
  }
  50% {
    box-shadow: 0 8px 35px rgba(20, 184, 166, 0.5);
  }
  100% {
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
  }
}
a {
  color: #ffffff;
  text-decoration: none;
}
@media (min-width: 1200px) {
    h3, .h3 {
        font-size: 1.75rem;
        color: white;
    }
}
.col-lg-12 p {
    font-size: clamp(1.8rem, 5vw, 3.5rem) !important;
    font-weight: 500;
    line-height: 1;
    text-align: center !important;
    margin: 0 !important;
    padding: 14px 8px !important;
    color: #182333;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.services-single-row {
    --bs-gutter-x: 1.5rem; /* Proper spacing */
}

/* Fixed height for single row */
.service-card {
    height: 420px !important;
}

.service-img {
    height: 220px !important; /* Smaller for 4-col */
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.service-content {
    padding: 20px !important; /* Compact padding */
}

.service-title {
    font-size: 1.2rem !important; /* Smaller title */
    margin-bottom: 12px !important;
}

.service-content p {
    font-size: 0.95rem !important;
    margin-bottom: 15px !important;
}

.call-link {
    font-size: 0.85rem !important;
    padding: 8px 16px !important;
}
.btn-primary {
  
    background-color: #fda12b;
   
}

.btn-primary:hover {
   background: #e95b34;
  color: #ffffff;
}


.call-btn {
    background: linear-gradient(135deg, #fda12b 0%, #e95b34 100%); /* [web:2] */
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(253, 161, 43, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.call-btn:hover::before {
    left: 100%;
}

.call-btn:hover {
    background: linear-gradient(135deg, #e95b34 0%, #c2410c 100%); /* darker version */
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(233, 91, 52, 0.5);
}

.call-icon {
    font-size: 1.3rem;
    background: rgba(255,255,255,0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-primary {
    background: linear-gradient(135deg, #fda12b 0%, #e95b34 100%) !important; /* [web:2] */
    color: #ffffff !important;
    border: none !important;
    padding: 14px 28px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(253, 161, 43, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e95b34 0%, #c2410c 100%) !important; /* darker */
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 35px rgba(233, 91, 52, 0.5) !important;
    color: #ffffff !important;
}

/* Shine effect */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}
.bg-primary {
    background-color: #e95b34 !important;
}
/* ===== FORCE FOOTER FULL SCREEN WIDTH ===== */

html, body {
    width: 100%;
    overflow-x: hidden;
}

/* Footer full screen cover */
.footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-color: #182333 !important;
}

/* Footer main spacing */
.footer .container {
    max-width: 1200px;   /* keeps content centered */
}

/* Bottom copyright bar */
.footer .copyright {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #0f1b2d;
}
.container-xxl.py-5 {
    padding: 0px 0 !important;
}
.footer .container {
    max-width: 1359px;
}
