html {
  scroll-behavior: smooth;
}

.ourClientsSection {
    background-image: url('../images/services/BG_GrapyMapFade.png');
        background-size: cover; /* Ensure the image always covers the container */
        background-position: center; /* Default position: bottom-center */
        height: 1500px; /* Full viewport height */
        width: 100%;
        position: relative;
}

.clientsTestimones {
    margin-top: 50%;
}

.clientTestimonial {
    background: rgba(240, 244, 236, 1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    max-width: 1600px;
    margin-right: 1rem;
    position: absolute;
}

/* Positioning for each "pip" */
.clientTestimonial-top-left {
    top: 45%;
    left: 20%;
}

.clientTestimonial-top-right {
    top: 45%;
    right: 10%;
}

.clientTestimonial-center {
    top: 65%;
    left: 55%;
    transform: translate(-50%, -50%);
}

.clientTestimonial-bottom-left {
    bottom: 15%;
    left: 20%;
}

.clientTestimonial-bottom-right {
    bottom: 10%;
    right: 10%;
}

/* custom buttons */

.btn-fixed {
    width: 100%;
    max-width: 450px;
}

.btn-fixed-small {
    min-width: 90px;
}

/* -------Components-------- */

/* Services Buttons */
/* Add visual highlight for the selected circle */
.circle-button.active {
    outline: 3px solid #d5a534; /* Gold highlight */
    outline-offset: 2px;
    transform: scale(1.15); /* Slightly larger */
    z-index: 10;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.circle-container {
  position: relative;
  width: 300px; /* Adjust as needed */
  height: 300px; /* Adjust as needed */
  margin: 50px auto; /* Center the container */
  /* border: 1px solid #ccc; Optional: for visualization */
}

.circle-button {
  position: absolute;
  width: 110px; /* Adjust button size */
  height: 110px; /* Adjust button size */
  border-radius: 50%;
  /* background-color: #007bff; */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  border: none;
}

#checkAssets {
  background-color: #0b6282;
}

#checkWorkforce {
  background-color: #08553d;
}

#checkCustomer {
  background-color: #2b5a2c;
}

#checkStrategy {
  background-color: #3b7d3c;
}

#checkTechnology {
  background-color: #4fa850;
}


/* benefits toggle switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 220px;
  height: 40px;
  font-family: sans-serif;
}

.toggle-switch input {
  display: none;
}

.slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #4fa850b4;
  border-radius: 20px;
  height: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  overflow: hidden;
  font-weight: bold;
  font-size: 14px;
  color: white;
  position: relative;
  cursor: pointer;
}

/* Static labels */
.toggle-label {
  z-index: 2;
  width: 50%;
  text-align: center;
  position: relative;
  user-select: none;
  pointer-events: none;
}

/* Sliding highlight background */
.toggle-highlight {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(50% - 4px);
  height: calc(100% - 4px);
  background-color: #4fa850;
  border-radius: 20px;
  transition: 0.3s ease all;
  z-index: 1;
}

/* Move highlight to right when checked */
input:checked + .slider .toggle-highlight {
  left: calc(50% + 2px);
}


/* Benefits buttons */


.btn-benefits-fixed {
  width: 100%;
  max-width: 210px;
}

.btn-benefits-fixed.selected {
    outline: 3px solid rgb(213, 165, 52);
    outline-offset: 2px;
    box-shadow: 0 0 10px rgba(0, 70, 127, 0.2);
    transition: all 0.2s ease;
}

/* Benefits title highlights */

.benefitHighlight {
  color: #4fa850;
}

.benefit-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease 0.5s ease;
}

.benefit-content.active {
  opacity: 1;
  max-height: 1000px; /* Large enough to accommodate content */
}


.benefit-item {
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
  align-items: flex-start;
  line-height: 1.6;
}

.benefit-title {
  flex-shrink: 0;
  min-width: 300px;         /* controls width of title column */
  text-align: right;        /* aligns the strong text to the right */
}

.benefit-description {
  flex: 1;
  text-align: left;
}



/* Container for the staggered items */
.staggered-wrapper {
  position: relative;
  padding-left: 3rem;
}

/* Base style for each text block */
.staggered-item {
  max-width: 700px;
  margin-bottom: 3rem;
}

/* Create the step offset — diagonal down/right alignment */
.step-1 {
  margin-left: -10%;
}
.step-2 {
  margin-left: 15%;
}
.step-3 {
  margin-left: 36%;
}
.step-4 {
  margin-left: 54%;
}

.custom-separator {
  border: none;
  height: 20px;
  background-color: #01467f;
  opacity: 1; /* Bootstrap <hr> tags are often transparent by default */
  margin: 2rem 0; /* Adds space above and below the bar */
}

.swoop-container {
    background-image: url('../images/Page_Divider_SwoopLR.png');
    background-size: 100% auto; /* Stretch width, keep height proportional */
    background-repeat: no-repeat;
    background-position: center bottom; /* Or center center depending on the 'swoop' */
    padding-bottom: 8rem; 
    
}












/* Media Queries */

/* Responsive: remove stair offset on small screens */
@media (max-width: 992px) {
  .staggered-wrapper {
    padding-left: 0;
  }
  .staggered-item {
    margin-left: 0 !important;
  }
}

@media (max-width: 768px) {
  /* Hide background map image */
  .ourClientsSection {
    background-image: none !important;
    height: auto;               /* let content dictate height */
    padding: 2rem 1rem;         /* add breathing room */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Stack and center all testimonial boxes */
  .clientTestimonial {
    position: static !important; /* removes absolute positioning */
    margin: 1.5rem auto;         /* center and add space between boxes */
    max-width: 400px;
    text-align: center;
    width: 100%;
  }

  /* Ensure all text centers on small screens */
  .clientTestimonial p.text-end {
    text-align: center !important;
  }
  .clientTestimonial-center {
    transform: none;
  }
  .benefit-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .benefit-title {
    text-align: center;
    min-width: auto;
    margin-bottom: 0.5rem;
  }

  .benefit-description {
    text-align: center;
  }
}



