.section-portion {
  padding-left: 4.2rem;
  padding-right: 4.2rem;
}
/* Optional: smooth scrolling for all anchors */
html {
  scroll-behavior: smooth;
}

/* Offset anchor target so it's not hidden behind the sticky header */
#ourspace {
  scroll-margin-top: 120px; /* adjust this value to match your header height */
}

.title-coconat {
  font-family: "Coconat", "Federo", sans-serif;
}

/* If you want a Federo-only heading */
.title-federo {
  font-family: "Federo", sans-serif;
}

.font-size {
  font-size: 18px;
}
.text-accent {
  color: #d96c65;
}
.main-nav .nav-link {
  transition: color 0.2s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
  color: #d96c65 !important;
}
.fontsize-more{
font-size: x-small;
}
:root {
  --accent: #d96c65;
  --border: #bfbfbf;
  --text-main: #3f3f3f;
}

.enquiry-form-group {
  position: relative;
  margin-bottom: 28px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  overflow: hidden; /* so label line doesn't spill outside */
}

/* pill outline */
.enquiry-control {
  height: 64px;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 0 32px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  background: #fff;
}

.enquiry-input {
  flex: 1 1 auto;
  border: 0;
  outline: none;
  padding: 0;
  font-size: 16px;
  background: transparent;
  color: var(--text-main);
}

.enquiry-input::placeholder {
  color: #5c5a5a;
  opacity: 1;
}

/* label that “cuts into” the pill */
.enquiry-label {
  position: absolute;
  top: 0;
  left: 56px; /* matches left text padding inside pill */
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  padding: 0 8px 0 4px;
  background: #ffffff; /* same as form background */
  line-height: 1;
  z-index: 1;
}

/* line continuing left & right of label */
.enquiry-label::before,
.enquiry-label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-top: 1px solid var(--border);
}

/* short bit of line on the left side of label */
.enquiry-label::before {
  right: 100%;
  width: 40px; /* tweak to match your exact spacing */
}

/* long line to the right, clipped by overflow:hidden */
.enquiry-label::after {
  left: 100%;
  width: 2000px;
}

/* quantity field (Desks Required) */
.enquiry-form-group-qty .enquiry-control {
  padding-right: 0;
}

.enquiry-form-group-qty .enquiry-input {
  max-width: 80px;
}

.enquiry-qty-btn {
  width: 60px;
  border: 0;
  border-left: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  padding: 0;
}

.enquiry-qty-btn:focus {
  outline: none;
}

/* Outline button: border + text = #d96c65 */
.btn-outline-d96c65 {
  border: 1px solid #d96c65;
  color: #d96c65;
  background-color: transparent;
}

/* Optional hover effect */
.btn-outline-d96c65:hover {
  background-color: #d96c65;
  color: #ffffff;
}

/* Filled button: background + border = #d96c65 */
.btn-fill-d96c65 {
  border: 1px solid #d96c65;
  background-color: #d96c65;
  color: #ffffff;
}

/* Optional hover effect */
.btn-fill-d96c65:hover {
  opacity: 0.9;
}
/* Default tab background */
.nav-pills .nav-link {
  background-color: #e6e6e680; /* normal state */
  color: #000; /* text color, adjust if needed */
  border-radius: 50rem; /* keep it pill-shaped */
}

/* Hover state */
.nav-pills .nav-link:hover {
  background-color: #ea8884; /* hover color */
  color: #fff; /* white text on hover */
}

/* Active (selected) tab */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #ea8884; /* same as hover */
  color: #fff;
}
.btn-explore {
  background-color: #d96c65; /* or #EA8884 if you prefer */
  color: #ffffff;
  border-radius: 50rem; /* pill shape */
  padding: 0.75rem 3rem; /* height & width like your design */
  border: none;
  font-weight: 500;
}

/* optional hover */
.btn-explore:hover {
  opacity: 0.9;
  background-color: #d96c65;
}
