/*  */

.solution-hero {
    position: relative;
}
.solution-hero-container {
    /* min-height: calc(80vh); */
    aspect-ratio: 16/7;
    display: flex;
    align-items: center;
}
.solution-hero-bg {
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    border-radius: 1rem;
}

.solution-hero-overlay {
    top: 0;
    left: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.3),
        transparent
    );
    z-index: 2;
    border-radius: 1rem;
}

.solution-hero-content {
    z-index: 3;
}
.solution-btn {
    color: white;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
}
.solution-btn:hover {
    color: white;
}

.individual .solution-btn {
    background-color: var(--restro-green);
}
.individual .solution-btn:hover {
    background-color: var(--restro-green);
}
.chain .solution-btn {
    background-color: var(--retail-go);
}
.chain .solution-btn:hover {
    background-color: var(--retail-go);
}
.enterprise .solution-btn {
    background-color: var(--one-office);
}
.enterprise .solution-btn:hover {
    background-color: var(--one-office);
}

.solutions-page .products .card {
    background-color: var(--off-white);
}
.solutions-page .products .card:hover::after {
    content: url("/images/icons/arrow-up-right-black.svg");
    position: absolute;
    top: 16px;
    right: 16px;
}
.solutions-page .products .card img{
    border-radius: 8px;
}
.solutions-page .products .card h4{
    color: black;
}
.solutions-page .card {
    border-radius: 1rem;
}

.cta-container {
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
}
.cta-bg-img,
.cta-bg-img-overlay {
    border-radius: 1rem;
}


/* POS Solution Start */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}
.pulse {
    animation: pulse-glow 2s infinite;
}

.hero-chip {
    background-color: rgba(255, 255, 255, 0.1) !important; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
}

/* POS Solution End */
.feature-number-bg-1 {
    border: 1px solid white;
}
.feature-number-bg-2 {
    background-color: rgba(255, 192, 203, 0.2); /* Pink-ish tint */
}
.feature-number-bg-3 {
    background-color: rgba(255, 223, 186, 0.3); /* Beige/Yellow-ish tint */
}
    
.pos-hardware-feature-card {
    height: 400px;
}
.pos-hardware-img-overlay {
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0, 0.7), transparent);
}
.pos-hardware-card-content {
    top: 0;
    left: 0;
}
.erp-solution-card h4 {
    color: black;
}
.erp-solution-card:hover .card-subtext, .erp-solution-card:hover h4 {
  color: #fff !important;
}
.erp-solution-card img {
    height: 40px;
    width: 40px;
    opacity: 0;
}
.erp-solution-card:hover img {
    opacity: 1;
}
.seamless-delivery-img-wrapper {
    height: 500px;
}

@media screen and (max-width: 576px) {
    .seamless-delivery-img-wrapper {
        height: 300px;
    }
}


.feature-box {
  border-bottom: 1px solid #ddd;
}
.feature-box:last-child {
  border-bottom: 0px;
}

@media (min-width: 768px) {
  .feature-box { border: none; }

  .feature-box:nth-child(odd) {
    border-right: 1px solid #ddd;
  }

  .feature-box:nth-child(-n+4) {
    border-bottom: 1px solid #ddd;
  }
}

@media (min-width: 992px) {
  .feature-box { border: none; }

  .feature-box:nth-child(-n+3) {
    border-bottom: 1px solid #ddd;
  }

  .feature-box:nth-child(3n+1),
  .feature-box:nth-child(3n+2) {
    border-right: 1px solid #ddd;
  }
  .feature-box:nth-child(3) {
    border-right: 0px;
  }
  .feature-box:nth-child(4) {
    border-bottom: 0px;
  }
}

.nav-pills .nav-link {
    border-radius: 50rem;
    border: 1px solid black;
    color: black; 
    background-color: transparent;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 8px 20px;
    font-weight: 500;
}
.nav-pills .nav-link.active {
    padding: 8px 20px!important;
    background-color: black; 
    color: #fff; 
}
.nav-pills .nav-link.active, .nav-pills .nav-link.active:hover, .nav-pills .nav-link.active:focus {
    padding: 8px 20px!important;
    background-color: black; 
    color: #fff; 
}
.content-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.feature-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.pills-food-tab .text-content ul{
    list-style: none;
}
.pills-food-tab .text-content li::before {
  content: '✓'; 
  color: green;
  position: absolute;
  left: 0; 
  top: 0;
  font-weight: bold; 
}

.btn[aria-expanded="false"] .icon-indicator::before {
    content: '+';
    display: inline-block;
}

.btn[aria-expanded="true"] .icon-indicator::before {
    content: '-';
}