:root {
    --primary-green: #1f6032; /* Deep forest green from image */
    --light-bg: #f8f9fa;
}
.hero-section {
    /* Using a placeholder image similar to the container home */
    background: url('../img/quickform_bg.webp') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

/* Overlay to ensure text readability if needed (optional) */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* Slight white tint */
}

.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* The White Form Card */
.form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px); /* Glassmorphism effect */
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    padding: 2rem;
}

/* Custom Toggle Switch (Home/Office) */
/* Custom Toggle Container */
.custom-toggle {
    background-color: #e9ecef;
    border-radius: 8px;
    padding: 4px;
    display: inline-flex;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

/* Base Button Styles */
.custom-toggle .btn {
    border-radius: 6px;
    font-weight: 500;
    padding: 4px 16px;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s ease;
    color: #6c757d; /* Grey text when inactive */
    background-color: transparent;
}

/* --- COLOR LOGIC --- */

/* Active State: HOME (Green) */
.custom-toggle .btn.active[data-value="Home"] {
    background-color: #1f6032; /* Deep Green */
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Active State: OFFICE (Blue - or change to any color) */
.custom-toggle .btn.active[data-value="Office"] {
    background-color: #0d6efd; /* Bootstrap Primary Blue */
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Hover State for Inactive Buttons */
.custom-toggle .btn:not(.active):hover {
    color: #333;
    background-color: rgba(0,0,0,0.05);
}

/* Change this hex code */
.custom-toggle .btn.active[data-value="Office"] {
    background-color: #343a40; /* Dark Gray */
}

/* Form Inputs */
.form-control {
    background-color: #fcfcfc;
    border: 1px solid #ced4da;
    padding: 12px;
    border-radius: 8px;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(31, 96, 50, 0.15);
    border-color: var(--primary-green);
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(180deg, #2a7a40 0%, #1f6032 100%);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(31, 96, 50, 0.3);
    transition: transform 0.2s;
}

.btn-submit:hover {
    background: linear-gradient(180deg, #328f4b 0%, #25703a 100%);
    transform: translateY(-1px);
    color: white;
}

/* Header Text */
.main-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.highlight-green {
    color: var(--primary-green);
    font-weight: bold;
}

.list-unstyled li a{
  color: #000000;
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0 0 20px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  background-color: var(--surface-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-content .portfolio-info {
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 20px;
  position: relative;
  z-index: 2;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-content .portfolio-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}
