/* Custom CSS for Binary Biological Equipments */

:root {
    --primary-green: #62e176;
    --secondary-green: #50ae5c;
    --light-bg: #F0FEE8;
    --dark-footer: #0f1017;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --text-dark: #2c3e50;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #62e176;               /* base background */
    --bs-btn-border-color: #62e176;     /* base border */

    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #50ae5c;         /* darker shade for hover */
    --bs-btn-hover-border-color: #4a9f55;

    --bs-btn-focus-shadow-rgb: 98, 225, 118; /* glow in same green tone */

    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #45964e;        /* even darker for active */
    --bs-btn-active-border-color: #3f8847;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #62e176;      /* keep same as base */
    --bs-btn-disabled-border-color: #62e176;
}

.btn-outline-primary {
    --bs-btn-color: #fff;
    --bs-btn-border-color: #62e176;     /* base border */

    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #50ae5c;         /* darker shade for hover */
    --bs-btn-hover-border-color: #4a9f55;

    --bs-btn-focus-shadow-rgb: 98, 225, 118; /* glow in same green tone */

    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #45964e;        /* even darker for active */
    --bs-btn-active-border-color: #3f8847;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #62e176;      /* keep same as base */
    --bs-btn-disabled-border-color: #62e176;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Bootstrap Color Overrides */
.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(98, 225, 118, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.text-primary {
    color: var(--primary-green) !important;
}

/* Scribble Keyframes */
@keyframes background-size-300 {
  from { background-size: 0%; }
  to   { background-size: 300%; }
}

/* Navigation Styles */
.navbar {
    background: linear-gradient(135deg, rgba(144, 238, 144, 0.6), rgba(173, 216, 230, 0.6));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green) !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand .logo-swing {
    width: 20px;
    height: auto;
    display: inline-block;
    animation: heartbeat 1.5s infinite;
}

/* Heartbeat Animation */
@keyframes heartbeat {
    0%   { transform: scale(1); }
    14%  { transform: scale(1.3); }
    28%  { transform: scale(1); }
    42%  { transform: scale(1.3); }
    70%  { transform: scale(1); }
    100% { transform: scale(1); }
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    position: relative;
    padding-bottom: 0.4em; /* space for scribble */
    transition: color 0.3s ease;
}

/* Scribble underline */
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0.6em;
    width: 100%;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='247' height='22' fill='none'%3E%3Cmask id='a' width='246' height='23' x='0' y='1' maskUnits='userSpaceOnUse' style='mask-type:alpha'%3E%3Cpath fill='%23D9D9D9' d='M0 1h246v23H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath fill='%2362e176' d='M.225 13.987c40.77-3.247 81.218-6.304 122.486-5.61 40.217.68 80.07 3.493 119.823 8.284 4.828.577 4.966-4.727.193-5.301-40.597-4.886-82.029-7.082-123.059-6.436-39.896.627-80.713 2.548-119.53 8.822-.233.04-.132.263.087.25v-.009z'/%3E%3C/g%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-size: 95%;
    background-image: linear-gradient(to right, currentcolor 40%, transparent 50%);
    background-repeat: no-repeat;
    background-size: 0%; /* hidden initially */
    transition: none; /* let animation control */
}

.nav-link:hover {
    color: var(--primary-green) !important;
}

.nav-link:hover::after {
    animation: background-size-300 0.4s ease-in forwards;
}

.btn-bdms {
    background: var(--secondary-green);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-bdms:hover {
    background: #3d8a47;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(80, 174, 92, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(98, 225, 118, 0.1) 100%);
    padding-top: 100px;
    position: relative;
}

.hero-content h1 {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

h1::first-letter {
  font-size: 1.5em;
}

/*.hero-image img {
    border-radius: 20px;
    transition: all 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}*/

/* Floating Icons Animation */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.floating-icons svg {
  position: absolute;
  color: rgba(25, 167, 104, 0.88);
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
  pointer-events: none; /* Prevents icons from interfering with interactions */
}

/* Top row - distributed across the top */
.floating-icons svg:nth-child(1) {
  top: 12%;
  left: 10%;
  animation-delay: 0s;
  font-size: 1.8rem;
}

.floating-icons svg:nth-child(2) {
  top: 15%;
  left: 75%;
  animation-delay: 1.5s;
  font-size: 2.2rem;
}

.floating-icons svg:nth-child(3) {
  top: 25%;
  left: 45%;
  animation-delay: 3s;
  font-size: 1.6rem;
}

/* Middle row - distributed across the middle */
.floating-icons svg:nth-child(4) {
  top: 45%;
  left: 1%;
  animation-delay: 4.5s;
  font-size: 2rem;
}

.floating-icons svg:nth-child(5) {
  top: 35%;
  left: 85%;
  animation-delay: 0.5s;
  font-size: 1.9rem;
}

.floating-icons svg:nth-child(6) {
  top: 60%;
  left: 50%;
  animation-delay: 2.5s;
  font-size: 1.7rem;
}

/* Bottom row - distributed across the bottom */
.floating-icons svg:nth-child(7) {
  bottom: 25%;
  left: 25%;
  animation-delay: 1s;
  font-size: 2.1rem;
}

.floating-icons svg:nth-child(8) {
  bottom: 15%;
  left: 70%;
  animation-delay: 3.5s;
  font-size: 1.8rem;
}

.floating-icons svg:nth-child(9) {
  bottom: 30%;
  left: 90%;
  animation-delay: 5s;
  font-size: 1.5rem;
}

/* Float animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px) rotate(-3deg);
    opacity: 0.9;
  }
  75% {
    transform: translateY(-15px) rotate(2deg);
    opacity: 0.8;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-icons svg {
    font-size: 1.5rem;
  }
  
  .floating-icons svg:nth-child(1) { font-size: 1.3rem; }
  .floating-icons svg:nth-child(2) { font-size: 1.7rem; }
  .floating-icons svg:nth-child(3) { font-size: 1.1rem; }
  .floating-icons svg:nth-child(4) { font-size: 1.5rem; }
  .floating-icons svg:nth-child(5) { font-size: 1.4rem; }
  .floating-icons svg:nth-child(6) { font-size: 1.2rem; }
  .floating-icons svg:nth-child(7) { font-size: 1.6rem; }
  .floating-icons svg:nth-child(8) { font-size: 1.3rem; }
  .floating-icons svg:nth-child(9) { font-size: 1rem; }
}
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(140deg);
    }
}

/* Product Cards */
.product-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(98, 225, 118, 0.8), rgba(80, 174, 92, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    background-color: var(--white) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon i {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.2);
    color: var(--secondary-green) !important;
}

/* Feature Boxes */
.feature-box {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.feature-box:hover {
    background-color: rgba(98, 225, 118, 0.1);
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: rgba(98, 225, 118, 0.3);
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(98, 225, 118, 0.25);
}

.form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(98, 225, 118, 0.25);
}

/* Contact Info */
.contact-item {
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: rgba(98, 225, 118, 0.1);
    transform: translateX(10px);
}

/* Footer */
.footer {
    background-color: var(--dark-footer) !important;
    min-height: 200px;
}

.footer .logo{
    width:5rem;
    height: auto;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-green) !important;
    padding-left: 5px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(98, 225, 118, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--primary-green);
    color: var(--white) !important;
    transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    z-index: 1000;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(98, 225, 118, 0.3);
}

.back-to-top.show {
    display: block;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .floating-icons {
        display: none;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding-top: 70px;
    }
    
    .product-image {
        height: 180px;
    }
}

/* Loading Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(98, 225, 118, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(98, 225, 118, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(98, 225, 118, 0);
    }
}

.btn-primary:focus {
    animation: pulse 1.5s infinite;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Section spacing */
section {
    padding-top: 1rem;
}

.products-section {
    padding-top: 5rem !important;
}

.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 3rem !important;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
}

@keyframes background-size-300 {
  from {
    background-size: 0%;
  }
  to {
    background-size: 300%;
  }
}

.scribble {
  position: relative;
  background-image: none;
  background-color: transparent;
  color: #62e176;
}
.scribble::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: 0;
  height: 30%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='247' height='22' fill='none'%3E%3Cmask id='a' width='246' height='23' x='0' y='1' maskUnits='userSpaceOnUse' style='mask-type:alpha'%3E%3Cpath fill='%23D9D9D9' d='M0 1h246v23H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath fill='%2362e176' d='M.225 13.987c40.77-3.247 81.218-6.304 122.486-5.61 40.217.68 80.07 3.493 119.823 8.284 4.828.577 4.966-4.727.193-5.301-40.597-4.886-82.029-7.082-123.059-6.436-39.896.627-80.713 2.548-119.53 8.822-.233.04-.132.263.087.25v-.009z'/%3E%3C/g%3E%3C/svg%3E ");
  mask-repeat: no-repeat;
  mask-size: 95%;
  width: 100%;
  background-image: linear-gradient(to right, currentcolor 40%, transparent 50%);
  background-repeat: no-repeat;
  animation: background-size-300 0.4s 1.5s ease-in both;
  background-size: 300%;
}

.brand-carousel-container {
    overflow: hidden;
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(98, 225, 118, 0.05), rgba(173, 216, 230, 0.05));
    border-radius: 15px;
    position: relative;
    white-space: nowrap;
}
/* Brand Logo Carousel (Infinite Scroll) */

.brand-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Gradient overlays */
.brand-carousel-container::before,
.brand-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brand-carousel-container::before {
    left: 0;
    background: linear-gradient(to left, rgba(255,255,255,0), rgb(255,255,255));
}

.brand-carousel-container::after {
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), rgb(255,255,255));
}

/* Default variables */
:root {
    --slide-width: 200px;
    --slide-height: 100px;
    --slide-margin: 20px;
    --slide-img-w: 120px;
    --slide-img-h: 60px;
    --animation-duration: 25s;
}

/* Carousel track */
.brand-carousel {
    display: flex;
    width: max-content; /* expands with children */
    animation: scroll-brands var(--animation-duration) linear infinite;
}

/* Slides */
.brand-slide {
    flex: 0 0 var(--slide-width);
    height: var(--slide-height);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 var(--slide-margin);
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Highlight sweep */
.brand-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(98,225,118,0.2), transparent);
    transition: left 0.5s ease;
}

.brand-slide:hover::before {
    left: 100%;
}

/* Hover lift */
.brand-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(98,225,118,0.2);
}

/* Images */
.brand-slide img {
    max-width: var(--slide-img-w);
    max-height: var(--slide-img-h);
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.brand-slide:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Infinite scroll keyframes */
@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* move exactly half, then duplicates take over */
    }
}

/* Pause on hover */
.brand-carousel-container:hover .brand-carousel {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --slide-width: 150px;
        --slide-height: 80px;
        --slide-margin: 15px;
        --slide-img-w: 100px;
        --slide-img-h: 50px;
        --animation-duration: 30s;
    }

    .brand-carousel-container::before,
    .brand-carousel-container::after {
        width: 50px;
    }
}

@media (max-width: 576px) {
    :root {
        --slide-width: 120px;
        --slide-height: 70px;
        --slide-margin: 10px;
        --slide-img-w: 80px;
        --slide-img-h: 40px;
        --animation-duration: 20s;
    }

    .brand-carousel-container::before,
    .brand-carousel-container::after {
        width: 30px;
    }
}

/* Product Details Page */
.product-details h2 {
  font-weight: 600;
  color: var(--text-dark);
}

.product-details h3 {
  font-weight: 700;
}

.img-thumbnail {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.img-thumbnail:hover {
  transform: scale(1.05);
}

/* Table Styling */
table th {
  width: 30%;
  background-color: var(--light-bg);
  color: var(--text-dark);
}

/* Preloader styles */
  #preloader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(#222922, #000500);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .word {
    color: #fff;
    font-size: 2em;
    text-align: center;
    font-family: 'Source Code Pro', monospace;
    text-shadow: 0 0 10px rgba(50, 255, 50, 0.5),
                 0 0 5px rgba(100, 255, 100, 0.5);
  }

  .word span {
    display: inline-block;
    transform: translateX(100%) scale(0.9);
    transition: transform 500ms;
  }

  .word .done {
    color: #6f6;
    transform: translateX(0) scale(1);
  }

  /* Fade-out animation */
  #preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }
  
  /* Custom Checkbox Styling */
.form-check-input {
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary-green);
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.form-check-input:checked {
  background-color: var(--primary-green);
  border-color: var(--secondary-green);
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(98, 225, 118, 0.3); /* subtle green glow */
  border-color: var(--secondary-green);
}

/* Make the tick white when checked */
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M6.173 12.927L2.146 8.9l1.414-1.414 2.613 2.613 6.364-6.364 1.414 1.414z'/%3e%3c/svg%3e");
}

.list-group {
    --list-group-color: var(--text-dark);
    --list-group-bg: var(--light-bg);
    --list-group-border-color: var(--light-gray);
    --list-group-border-width: 1px;
    --list-group-border-radius: 0.375rem;

    --list-group-item-padding-x: 1rem;
    --list-group-item-padding-y: 0.5rem;

    --list-group-action-color: var(--dark-gray);
    --list-group-action-hover-color: var(--text-dark);
    --list-group-action-hover-bg: var(--light-gray);

    --list-group-action-active-color: var(--text-dark);
    --list-group-action-active-bg: var(--secondary-green);

    --list-group-disabled-color: var(--dark-gray);
    --list-group-disabled-bg: var(--white);

    --list-group-active-color: var(--white);
    --list-group-active-bg: var(--primary-green);
    --list-group-active-border-color: var(--primary-green);

    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: var(--list-group-border-radius);
}

.list-group-item.active {
    z-index: 2;
    color: var(--list-group-active-color, var(--white));
    background-color: var(--list-group-active-bg, var(--primary-green));
    border-color: var(--list-group-active-border-color, var(--primary-green));
}

.accordion-button:not(.collapsed) {
    color: #495057;
    background-color: #62e176b3;
    box-shadow: inset 0 -1px 0 #50ae5c69;
}
