.image-wrapper.no-radius {
    width: 5rem;
    height: auto;
    border-radius: 0 !important;
    overflow: hidden;
}

.image-wrapper.no-radius img {
    width: 100%;
    height: auto;
    border-radius: 0 !important;
    object-fit: contain;
}


.center-section-btn {
    display: flex;
    justify-content: center;
}

/* container forces a square */
.img-square {
    width: 300px; /* or whatever fixed or responsive size you need */
    height: 300px;
    overflow: hidden;
    position: relative;
}

/* image fills the square, cropping as needed */
.img-square img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* covers container, cropping excess */
    object-position: center; /* center the crop */
}

.img-enlarge {
    display: inline-block; /* ensure transform works predictably */
    transform: scale(1.3); /* 1.0 + 20% = 1.2 */
    transform-origin: center center; /* scale outwards from the center */
}


@media (min-width: 992px) {
    /* Make the mission column take ~45% instead of 33% */
    .cid-uQVYIO9asE .row.justify-content-center > .col-lg-4 {
        flex: 0 0 40%;
        max-width: 40%;
    }

    /* Shrink the side-features column to ~50% instead of 58% */
    .cid-uQVYIO9asE .side-features {
        flex: 0 0 45%;
        max-width: 45%;
    }
}


.text-primary-blue {
    color: var(--primary-blue) !important;
}

.text-blue-white {
    color: var(--blue-white) !important;
}

html, body {
    scroll-behavior: smooth;
}


.email-link {
    color: var(--primary-blue);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-blue);
    transition: color 0.2s, border-color 0.2s;
}

.email-link:hover {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
}

@media (min-width: 500px) {
  #scrollToTop {
    right: 2.2rem;
  }
}


:root {
  --scrollbar-width:        12px;
  --scrollbar-width-hover:  16px;
  --scrollbar-track:        #F4F6F9;
  --scrollbar-thumb:        var(--secondary-blue);
  --scrollbar-thumb-hover:  var(--primary-blue);
}

/* Base scrollbar on html */
html::-webkit-scrollbar {
  width: var(--scrollbar-width);
  transition: width 0.2s ease;
}
html.scrollbar-hover::-webkit-scrollbar {
  width: var(--scrollbar-width-hover);
}

/* Track & thumb styling */
html::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}
html::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
  border-radius: 6px;
  border: 3px solid var(--scrollbar-track);
  transition: background-color 0.2s;
}
html::-webkit-scrollbar-thumb:hover {
  background-color: var(--scrollbar-thumb-hover);
}

/* Firefox */
html {
  scrollbar-width: var(--scrollbar-width);
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  transition: scrollbar-width 0.2s ease;
}
html.scrollbar-hover {
  scrollbar-width: var(--scrollbar-width-hover);
}
