*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: "Heebo", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #666565;
  background-color: #effdf5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: relative;
  margin: 0;
}
.backgrd {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/main_bg.jpeg") no-repeat center center;
  background-size: cover;
  z-index: -1; /* Places it behind all content */
}
.containers {
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin: 0px auto;
  padding: 45px 0 45px 25px;
  text-align: left;
}
.container-xxl {
  width: 100%;
  background-color: #fff;
}
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #666565;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 2px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.border-none {
  border: 0 !important;
}
.me-3 {
  margin-right: 0.5rem;
  margin-top: 0.8rem;
}
/* Header Start*/
/* header {
  width: 100%;
  height: auto;
  display: flex;
  padding: 0 0 0 3rem;
  position: fixed;
  z-index: 1;
  background-color: #fff;
} */
header {
  width: 100%;
  height: auto;
  display: flex;
  padding: 0 0 0 3rem;
  position: fixed;
  top: 0; /* Ensure it sticks to top */
  left: 0; /* Ensure it sticks to left */
  z-index: 1000; /* Higher z-index to ensure it stays on top */
  background-color: #fff;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);

  /* Or for a more subtle shadow */
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12); */
}
.logo {
  color: rgb(48 139 183) !important;
  width: 90%;
  padding: 1rem 0;
}

.logo h1 {
  font-family: "Inter", sans-serif;
  font-size: calc(0.9rem + 1.5vw);
  font-weight: 700;
  line-height: 1.2;
}
.logo h1 span {
  font-size: calc(1rem + 1.5vw);
  color: rgb(91, 59, 32) !important;
}
.logo h5 {
  font-size: calc(0.3rem + 1.5vw) !important;
}

nav {
  width: 45%;
  display: flex;
  justify-content: flex-start; /* Changed from space-around */
  align-items: center;
  /* border: 1px solid #000; */

  gap: 1.5rem; /* Very tight spacing */
  padding-left: 3rem; /* Adjust as needed */
  transition: all 0.3s ease;
}
nav a {
  text-transform: uppercase;
  text-decoration: none;
  color: #666565;
  font-weight: 600;
  padding: 1.5rem 0;
  position: relative;
  white-space: nowrap; /* Prevent wrapping */
}

nav a:hover {
  color: rgb(48 139 183) !important;
}
.nav-links a {
  text-transform: uppercase;
  text-decoration: none;
  color: #666565;
  font-weight: 550;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-links a i {
  font-size: 0.7rem;
  margin-left: 0.2rem;
}
.dropdown {
  position: relative;
}

.dropdown i {
  font-size: 0.8rem;
  margin-left: 0.3rem;
}
.nav-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  /* padding-left: 2rem; */
}
.postJob {
  width: 20%;
  background-color: rgb(48 139 183) !important;
  border-color: rgb(48 139 183) !important;
  color: #fff;
  padding: 1.8rem 1rem 0;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize !important;
  cursor: pointer;
}

/* Navigation links - active state */
.nav-links a.active {
  color: rgb(48 139 183) !important;
  font-weight: 600;
  position: relative;
}

/* Active state indicator - optional underline */
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  height: 2px;
  color: rgb(48 139 183) !important;
}

/* Mobile menu button - hidden by default */
.mobile-menu-btn {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  margin-left: auto;
  padding: 0 1rem;
  color: #666565;
  z-index: 1001;
}
.shadow {
  width: 100%;
  height: 20px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  display: none;
}
/* Header Ends*/
/*Main Slider Starts*/

.main-slider {
  width: 100%;
  height: auto;
  padding: 65px 50px 60px 95px;
  background-image: linear-gradient(
      rgba(43, 57, 64, 0.5),
      rgba(43, 57, 64, 0.5)
    ),
    url("../images/carousel-2.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; /* border: 1px solid #000; */
  display: flex;
  position: relative;
  margin-top: 120px;
  justify-content: flex-start; /* aligns children to the left */
  transform: scaleX(-1);
}
.main-slider > * {
  transform: scaleX(-1); /* Flips the content back to normal */
}
.main-slider .container {
  position: relative;
  border-left: 15px solid var(--primary);
  height: auto;
  padding: 45px 0 45px 45px;
}

.main-slider .container::before,
.container::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100px;
  height: 15px;
  background: var(--primary);
}
.main-slider .container::after {
  top: 100%;
  margin-top: -15px;
}
.main-slider-contents {
  width: 80%;
  height: auto;
  color: #fff;
  /* border: 1px solid #fff; */
}
.main-slider h1 {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: calc(1rem + 3.3vw);
  font-weight: 800;
  line-height: 1.2;
}
.main-slider h2 {
  font-size: calc(0.8rem + 2.3vw) !important;
  margin-top: 0.5rem;
  color: #fff;
}
.main-slider p {
  font-size: 1.25rem !important;
  margin-top: 2rem;
}
.main-slider-btn {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
.main-slider .btn-green,
.main-slider .btn-blue {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  transition: 0.5s;
  color: #fff !important;
  padding: 15px 50px;
}
.main-slider .btn-green {
  /* background-color: rgb(48 139 183) !important;; */
  background-color: rgb(91, 59, 32) !important;
  border-color: rgb(91, 59, 32) !important;
  /* border-color: rgb(48 139 183) !important;; */
}
.main-slider .btn-blue {
  background-color: #2b9bff;
  border-color: #2b9bff;
}
.main-slider_nav {
  position: absolute; /* or fixed depending on your need */
  top: 50%; /* center vertically (optional) */
  right: 0; /* stick to right edge */
  transform: translateY(-50%); /* center vertically (if using top: 50%) */
  display: flex;
  flex-direction: column; /* stack buttons vertically */
  gap: 10px; /* space between buttons */
  padding-right: 100px;
}
.main-slider_nav .btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
/*Main Slider Ends*/
/*Search Section Starts*/
.search-sections {
  width: 100%;
  height: auto;
  background-color: rgb(48 139 183) !important;
  padding: 35px 30px;
  visibility: visible;
  animation-delay: 0.1s;
  animation-name: fadeIn;
  display: flex;
  gap: 10px;
  flex-direction: row; /* Changed from column to row */
  align-items: center; /* Align items vertically in the center */
}
.search-fields {
  flex: 1; /* Ensures inputs expand to fill space */
  min-width: 0; /* Prevents flex items from overflowing */
}
.search-sections .btn {
  color: #fff;
  background-color: #2b3940;
  font-weight: 600;
  padding: 0.4rem 1rem;
  white-space: nowrap; /* Prevents button text from wrapping */
}
/*Search Section Ends*/

/*Catgeory Contents Starts*/
.why-us {
  width: 100%;
  height: auto;
  padding: 6rem 0 0;
  text-align: center;
}
.why-us h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2b3940;
  font-size: calc(1.375rem + 1.5vw);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(200px, 1fr)
  ); /* Responsive columns */
  gap: 20px;
  justify-items: center; /* Centers items horizontally in grid cells */
  margin: 0 auto; /* Centers the entire grid */
  padding: 0 20px; /* Optional: Adds side padding */
  width: 100%;
  margin-top: 2.5rem;
  max-width: 900px; /* Prevents grid from stretching too wide */
}

.info-box {
  border-radius: 2px;
  padding: 40px 20px;
  background-color: white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  width: 100%; /* Takes full width of grid cell */
  max-width: 210px; /* Optional: Limits box width */
  text-align: left; /* Centers text inside box */
  cursor: pointer;
  /* Remove float: left (causes misalignment) */
}
.info-box-title {
  font-size: 16px;
  font-weight: 600;
  color: #2b3940; /* Subdued text color */
  margin-bottom: 8px; /* Space between title and value */
}

.info-box-value {
  font-size: 14px;
  font-weight: bold;
  font-weight: 500;
  color: rgb(48 139 183) !important; /* Your brand green color */
}
.info-box-icon {
  font-size: 14px;
  margin-bottom: 12px;
}

.info-box:hover {
  /* border: 1px solid #e0e0e0;  */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background: #f6fafc;
  /* transition: all 0.3s ease; */
}

/*Catgeory Contents Ends*/
/* About Starts*/
.about {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.about .contain {
  width: 100%;
  height: auto;
  padding: 8.5rem;
  display: flex; /* Add this */
  flex-direction: row; /* Add this */
  gap: 2rem; /* Optional spacing between the two blocks */
}
.about-bg {
  position: relative;
  max-width: 500px; /* Adjust based on your needs */
  margin: 0 auto;
  width: 50%;
  height: auto;
  background-image: -webkit-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -moz-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -ms-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -o-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-size: 5px 5px;
}

.about-bg img {
  position: absolute;
  border: 3px solid white; /* Optional: adds white border around images */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: adds subtle shadow */
}

.about-bg img:nth-child(1) {
  /* about-1.jpg */
  width: 50%;
  top: 0;
  left: 0;
  z-index: 3;
}

.about-bg img:nth-child(2) {
  /* about-2.jpg */
  width: 35%;
  top: 20%;
  left: 45%;
  z-index: 4;
}

.about-bg img:nth-child(3) {
  /* about-3.jpg */
  width: 35%;
  top: 55%;
  left: 10%;
  z-index: 2;
}

.about-bg img:nth-child(4) {
  /* about-4.jpg */
  width: 50%;
  top: 35%;
  left: 40%;
  z-index: 1;
}
.about-bg-left {
  width: 50%;
  height: auto;
  padding: 0 2rem;
}
.about-bg-left h1 {
  margin-top: 0;
  font-size: calc(1.375rem + 1.5vw);
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2b3940;
}
.about-bg-left .btn {
  background-color: rgb(48 139 183) !important;
  border-color: rgb(48 139 183) !important;
  color: #fff;
  padding: 15px 50px;
  border-radius: 3px;
  margin: 1rem 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}
/* About Ends*/

/*Fix It Starts*/
.fix-it {
  width: 100%;
  height: auto;
}
.fix-it-left {
  width: 50%;
  height: 100%;
  min-height: 580px;
  float: left;
  background-image: url("../images/handy-man.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.fix-it-right {
  width: 50%;
  height: auto;
  float: left;
  padding: 0 1rem;
}
.fix-it-right h3 {
  font-size: 1.5rem;
}
.fix-it h1 {
  margin-top: 0;
  font-size: calc(1.375rem + 1.5vw);
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #2b3940;
}
.fix-it-types {
  width: 25%;
  height: auto;
  position: relative;
  left: 40%;
  right: 40%;
  border-bottom: 1px solid #ccc;
  margin-bottom: 2rem;
}
.fix-it-types ul {
  margin: 2rem 0 0 0;
  padding: 0;
  list-style: none;
}
.fix-it-types_ li {
  float: left;
  list-style: none;
  padding-left: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2b3940;
  margin-bottom: 1rem;
  padding: 0 0 1rem 0; /* Adjust bottom padding for underline space */
  margin-right: 1rem; /* Space between tabs */
  position: relative; /* Required for absolute positioning of underline */
  cursor: pointer;
}

.fix-it-types li {
  float: left;
  padding: 0 0.5rem 1rem 0;
  margin-right: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #2b3940;
  position: relative;
  cursor: pointer;
}

/* Green underline ONLY for "Featured" */

.fix-it-types li.active {
  color: rgb(48 139 183) !important;

  &::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgb(48 139 183) !important;
  }
}

.fix-it .info-boxes:hover {
  /* border: 1px solid #e0e0e0;  */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background: #f6fafc;
  /* transition: all 0.3s ease; */
}
.fix-it .info-boxes {
  border-radius: 2px;
  padding: 20px;
  background-color: white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  width: 80%; /* Takes full width of grid cell */
  text-align: left; /* Centers text inside box */
  cursor: pointer;
  margin: 30px auto;
}
.fix-it .info-boxes .left {
  width: 80%;
  height: auto;
  float: left;
}
.fix-it .info-boxes .left .img {
  width: 90px;
  height: 90px;
  float: left;
}
.fix-it .info-boxes .left .contents {
  float: left;
  padding: 1rem;
}
.fix-it .info-boxes .left .contents h5 {
  font-size: 1.25rem;
}
.fix-it .info-boxes .left .contents ul li {
  list-style: none;
  float: left;
  padding-right: 2rem;
}
.fix-it .info-boxes .left .contents ul li i {
  margin-right: 0.4rem;
}
.fix-it .info-boxes .right {
  width: 20%;
  height: auto;
  float: left;
}
.fix-it .btn {
  background-color: rgb(48 139 183) !important;
  border-color: rgb(48 139 183) !important;
  color: #fff;
  padding: 15px 50px;
  border-radius: 3px;
  margin: 1rem 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  transition: 0.5s;
  position: relative;
  left: 40%;
  right: 40%;
}
.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}
.btn-square {
  width: 38px;
  height: 65px;
  float: left;
}
.btn-light {
  color: #000;
  background-color: #effdf5;
  border-color: #effdf5;
}
.fix-it .right .btn {
  float: left;
  background-color: rgb(48 139 183) !important;
  border-color: rgb(48 139 183) !important;
  color: #fff;
  padding: 5px 20px;
  border-radius: 0 !important;
  margin: 1rem 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  transition: 0.5s;
  position: relative;
  left: 0 !important;
  right: 0 !important;
}
/*Fix It Ends*/

/*Furniture Assebmly Starts*/
.furniture-assembly {
  width: 100%;
  height: auto;
}
.furniture-assembly-left {
  width: 30%;
  height: 100%;
  min-height: 300px;
  float: left;
  background: url("../images/furniture-assemly.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.furniture-assembly h1 {
  color: #2b3940;
  text-align: center;
  margin-bottom: 2rem;
}
.furniture-assembly-right {
  width: 70%;
  height: auto;
  float: left;
  padding: 0 2rem;
}
.btn-furniture {
  margin-top: 3rem;
}
/*Furniture Assebmly Ends*/

/*Service Area Starts*/
.service-area {
  width: 100%;
  height: auto;
}
.service-area-left {
  width: 50%;
  height: auto;
  float: left;
}
.service-area h1 {
  color: #2b3940;
  text-align: center;
  margin-bottom: 2rem;
}
.service-area ul {
  margin-left: 3rem;
  list-style: none;
}
.service-area ul li::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  color: rgb(48 139 183) !important;
  font-weight: bolder;
  margin-right: 10px;
}

.service-area-right {
  height: auto;
  width: 50%;
  float: left;
}
/*Service Area Ends*/

/*Client Area Starts*/
.client_area {
  width: 100%;
  padding: 4rem 0; /* Better spacing */
  background: #fff; /* Optional background */
}

.client_area h1 {
  color: #2b3940;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.client_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Fixed 3 columns */
  gap: 2rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2rem;
}

.card {
  /* background: #effdf5; */
  padding: 2rem;
  height: 100%; /* Equal height */
  display: flex;
  flex-direction: column;
  border: none; /* Removed black border */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  */
  /* Soft shadow */
}

.fa-quote-left {
  color: rgb(48 139 183) !important; /* Green quote icon */
  margin-bottom: 1.5rem;
}

.testimonial-text {
  flex-grow: 1; /* Pushes client info down */
  line-height: 1.6;
  font-size: 0.9rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.client-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.client-details {
  display: flex;
  flex-direction: column;
}
.client-info .client-details_info {
  float: left;
}
.client-info strong {
  display: block; /* Forces name to own line */
  font-size: 1.1rem;
  color: #2b3940;
}

.client-info .profession {
  display: block; /* Forces profession to own line */
  /* color: #6c757d; */
  color: #fff !important;

  font-size: 0.9rem;
  margin-top: 0.3rem; /* Small gap between name and profession */
}

.card_active {
  background: var(--primary) !important;
  padding: 2rem;
  height: 100%; /* Equal height */
  display: flex;
  flex-direction: column;
  border: none; /* Removed black border */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
  color: #fff !important;
  margin: 0px auto;
}
.card_active .fa-quote-left:before {
  content: "\f10d";
  color: #fff !important;
}

/* Rating stars (optional) */
.rating {
  color: #ffc107;
  margin: 0.5rem 0;
}
.cards_navs {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  margin-top: 1rem;
}

.cards_loader {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 30px;
}

.square {
  width: 17px;
  height: 17px;
  background-color: rgb(48 139 183) !important;
  position: relative;
}

.square::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 6px;
  height: 6px;
  background-color: white;
}

.square:nth-child(2) {
  animation-delay: 0.2s;
}

.square:nth-child(3) {
  animation-delay: 0.4s;
}
/* .square:nth-child(3)::before { */
/* background-color: #000; */
/* ← changed from white to black */
/* } */
.square:nth-child(1)::before {
  background-color: #000; /* ← changed from white to black */
}
.square:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes pulse {
  0%,
  80%,
  100% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.2);
  }
}

/*Client Area Ends*/

/*TV Installation Starts*/
.tv-instalations {
  width: 100%;
  height: auto;
}
.tv-instalations h1 {
  color: #2b3940;
  text-align: center;
  margin-bottom: 2rem;
}
.tv-instalations_left {
  width: 70%;
  height: auto;
  float: left;
  padding: 2rem 0;
}
.tv-instalations_left a {
  color: #666565;
}
.tv-instalations_right {
  width: 30%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.btn-quote {
  /* background-color: rgb(48 139 183) !important;; */
  background-color: rgb(91, 59, 32) !important;
  border-color: rgb(91, 59, 32) !important;
  /* border-color: rgb(48 139 183) !important;; */
}
/*TV Installation Ends*/

/*Footer Starts*/
footer {
  width: 100%;
  height: auto;
  background-color: #2b3940 !important;
}
.footer_container {
  width: 100%;
  height: auto;
  padding: 120px 50px;
}
.footer_divider {
  border: 1px solid #666;
  margin: 0.3rem 0 1.5rem;
}
.footer_divs {
  width: 30%;
  height: auto;
  padding-bottom: 3rem;
  float: left;
}
.footer_divs h1 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1.5rem !important;
  margin-top: 0;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.footer_divs a {
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: none;
}
.footer_divs ul li {
  list-style: none;
  font-family: "Inter", sans-serif;
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  font-size: 15px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5) !important;
  text-transform: capitalize;
  transition: 0.3s;
}
.footer_divs ul li::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}
.contact ul li {
  list-style: none;
  font-family: "Inter", sans-serif;
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5) !important;
  text-transform: capitalize;
  transition: 0.3s;
}
.contact ul li::before {
  position: relative;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}
.social-btn {
  width: 100%;
  height: auto;
  margin: 1rem 0 0;
}
.contact_btn {
  width: 35px;
  height: 35px;
  margin-right: 0.2rem;
  background: none;
  border: 1px solid #fff;
}
.contact_btn i {
  font-size: 20px;
  color: #fff;
}
.news-letter {
  width: 70%;
  height: 60px;
  margin-top: 2.5rem;
  border: 1px solid #ccc;
}
.news-letter input {
  width: 40%;
  height: 30px;
  margin: 0.8rem 0 0 1rem;
  float: left;
  background: none;
  border: none;
}
.news-letter_btn {
  width: 50%;
  height: 50px;
  margin: 0.2rem 0 1rem 0;
  font-size: 1rem;
  float: left;
  background-color: #26bc89;
  border-color: #1ab882;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  transition: 0.5s;
  border-radius: 4px;
  color: #fff;
}
.footer_divs:nth-child(4) p {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.5) !important;
}
/*Footer Ends*/

/*Our Work Starts*/
.our-work {
  width: 100%;
  height: auto;
  /* margin: 1rem 0 0; */
  margin: 0px auto;
}
.our-work h1 {
  margin-top: 0;
  font-size: calc(1.375rem + 1.5vw);
  margin: 0 0 1rem 0;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #2b3940;
}
.our-work h2 {
  font-size: calc(0.6rem + 1.5vw);
  text-align: center;
  margin: 0 0 1rem 0;
}
.our-work-sections {
  width: 30%;
  height: auto;
  float: left;
  margin: 0 0.6rem;
  border: 10px solid #0dcaf0;
  border-radius: 10%;
  padding: 0 1rem;
}
.our-work-sections_child_one {
  margin-left: 3rem;
}
/*Our Work Ends*/
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-truncate i {
  margin-right: 0.5rem;
}
:root {
  --primary: rgb(48 139 183) !important;
  --secondary: #2b9bff;
  --light: #effdf5;
  --dark: #2b3940;
}
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: rgb(48 139 183) !important;
  --bs-secondary: #2b9bff;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #effdf5;
  --bs-dark: #2b3940;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
}

/* bootstarp custom classes Start*/
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}
.justify-content-start {
  justify-content: flex-start !important;
}
.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.form-controls {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #666565;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 2px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control {
  flex: 1;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #ced4da;
  border-radius: 2px;
  height: 40px;
  box-sizing: border-box;
}

.form-control::placeholder {
  color: #999;
}
.quote ul {
  margin: 1rem;
  padding: 0;
}
.form-left {
  width: 50%;
  height: auto;
  float: left;
  padding: 1rem;
}
.form-right {
  width: 50%;
  height: auto;
  float: left;
  padding: 1rem;
}
.textarea {
  width: 100%;
  border: 1px solid #ced4da !important;
  border-radius: 2px !important;
  margin: 1rem 0;
  height: 200px;
}
.quote ul li {
  list-style: none;
}
.quote ul li input[type="checkbox"] {
  margin-right: 0.7rem;
}
.required-field::after {
  content: "*";
  color: red;
  margin-left: 2px;
}
.form-control-select {
  appearance: none; /* Hides default arrow */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666565'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center; /* Adjust position */
  background-size: 20px 20px; /* Larger arrow (width height) */
  padding-right: 2.5rem; /* More space for the bigger arrow */
}

.upload-container {
  text-align: center;
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

.upload-title {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #333;
}

.file-upload-wrapper {
  position: relative;
  display: inline-block;
  width: 200px;
}

.file-upload-button {
  display: block;
  padding: 10px 15px;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
  text-align: center;
  cursor: pointer;
}

.file-upload-input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-name {
  margin-top: 5px;
  font-size: 0.9rem;
  color: #666;
}
.text-primary {
  color: rgb(48 139 183) !important;
}
/* bootstrap custom classes Ends*/
@media (max-width: 1024px) {
  .search-sections .btn {
    font-size: 0.9rem;
  }
}
@media (max-width: 1000px) {
  .search-sections .btn {
    font-size: 0.7rem;
  }
}
@media (max-width: 900px) {
  .search-sections .btn {
    font-size: 0.65rem !important;
  }

  .search-sections {
    padding: 35px 10px;
  }
}
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    height: auto;
    margin-top: 0.5rem !important;
    padding: 0.25rem 4px 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: box-shadow 0.15s ease-in-out;
  }
  header {
    padding: 0 1rem 0 2rem;
  }
  .shadow {
    display: block !important;
  }
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 45vh;
    background: #effdf5;
    display: none;
    z-index: 1000;
    padding-left: 0;
  }
  .nav-links a.active::after {
    display: none; /* Hide underline on mobile */
  }
  .nav-links {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    gap: 0.3rem;
    height: 100%;
    width: 100%;
    border-top: 1px #000 !important;
  }

  .nav-links a {
    padding: 0.8rem 0;
    width: 100%;
  }

  nav.active {
    display: flex;
  }

  .logo {
    width: 80%;
    z-index: 1002;
    /* Make sure they stay above the nav */
  }
  .logo-right {
    margin-top: 1.2rem;
  }
  .postJob {
    display: none;
  }
  /*Main Slider Start*/
  .main-slider {
    padding: 35px 0;
  }
  .main-slider_nav {
    padding-right: 20px;
  }
  .main-slider-contents {
    width: 100%;
  }
  .main-slider-contents p {
    font-size: 1.3rem !important;
    width: 90%;
  }
  .main-slider h1 {
    font-size: calc(1.8rem + 3.3vw);
  }
  /*Main Slider Ends*/
  /* Search Section start*/
  .search-sections {
    flex-direction: column; /* Stack items vertically */
    align-items: stretch; /* Full width inputs */
    padding: 35px 40px;
  }
  .main-slider h2 {
    font-size: calc(1.2rem + 2.3vw) !important;
  }
  .main-slider .btn-green {
    width: 90%;
    font-size: calc(0.8rem + 2.3vw) !important;
  }
  .search-fields,
  .btn {
    width: 100%; /* Force full width */
  }
  /* Search Section ends*/
  /* Category Search Starts*/
  .info-box {
    max-width: 280px;
  }
  /* Category Search Ends*/

  /*About Section Starts*/
  .about .contain {
    flex-direction: column;
    padding: 2rem; /* Reduce padding on mobile */
  }

  .about-bg {
    width: 80%;
  }
  .about-bg-left {
    width: 100%; /* Make both sections full width on mobile */
  }

  .about-bg {
    order: 1; /* Move images below the text on mobile */
    margin-top: 2rem;
  }

  .about-bg-left {
    order: 2; /* Move text above the images on mobile */
  }

  /* Adjust image sizes for mobile */
  .about-bg img {
    width: 40% !important; /* Make images responsive */
    height: auto !important;
    margin: 1% !important;
    float: left !important;
  }

  .about-bg {
    height: 300px; /* Set a fixed height for mobile */
  }

  .about-bg img:nth-child(1) {
    width: 45% !important;
    top: 5% !important;
    left: 5% !important;
  }

  .about-bg img:nth-child(2) {
    width: 30% !important;
    top: 15% !important;
    left: 50% !important;
  }

  .about-bg img:nth-child(3) {
    width: 30% !important;
    top: 50% !important;
    left: 10% !important;
  }

  .about-bg img:nth-child(4) {
    width: 45% !important;
    top: 40% !important;
    left: 40% !important;
  }
  .about-bg-left h1 {
    font-size: calc(1.2rem + 1.5vw);
  }
  .about-bg-left p {
    font-size: 0.9rem;
  }
  .about-bg-left .btn {
    padding: 15px 20px;
    width: 60% !important;
  }

  /*About Section Ends*/

  /*Cleint Area Starts*/
  .client_grid {
    grid-template-columns: 1fr;
  }

  .client-info {
    flex-direction: column;
    text-align: center;
  }

  .client-img {
    margin-bottom: 0.5rem;
  }
  /*Cleint Area Ends*/

  /*Footer Starts*/
  .footer_divs {
    width: 100%;
  }
  /*Footer Ends*/
  .tv-instalations_right {
    display: none;
  }
  .tv-instalations_left {
    width: 100%;
  }
  .fix-it-left {
    width: 100%;
  }
  .fix-it-right {
    width: 100%;
  }
  .containers {
    padding: 0 1rem;
  }
  .furniture-assembly-left {
    width: 100%;
  }
  .furniture-assembly-right {
    width: 100%;
  }
  .service-area-left {
    width: 100%;
  }
  .service-area-right {
    width: 100%;
  }
  .our-work {
    margin: 1rem 0 0;
  }
  .our-work-sections {
    width: 100%;
    margin: 1rem 0;
  }
  .our-work-sections h2 {
    margin: 0 0 1rem 0;
  }
  .our-work-sections_child_one {
    margin-left: 0;
  }
  .form-left{
    width: 100%;
  }
  .form-right{
    width: 100%;
  }
  .form-row{
    display: block;
  }
  .form-control{
    margin-top: 1rem;
    width:100%;
  }
  .news-letter_btn{
    margin-bottom: 2rem;
  }
}
@media (max-width: 400px) {
  .main-slider .container {
    padding: 45px 0 45px 25px;
  }
  .main-slider h2 {
    font-size: calc(1rem + 2.3vw) !important;
  }
}
