.home-page-cat-sec-title h4{
    margin: 0;
}

  .banner-container {
    width: 100%;
    
  }

  .banner-link {
    width: 100%;
    display: flex;
    text-decoration: none;
    cursor: pointer;
  }

  .banner-link picture{
    object-fit: cover;
    width: 100%;
  }

  img.banner-img {
    width: 100%;
    height: auto;
    display: flex;
    filter: drop-shadow(4px 8px 4px rgba(10, 10, 10, 0.25));
    
    transition: filter 0.3s ease;
  }


  .banner-link:hover .banner-img {
    filter: drop-shadow(8px 12px 4px rgba(10, 10, 10, 0.35));
  }

.gl-benefits-header {
  margin: 0 auto 40px auto;
  text-align: right;
  display: flex;
  gap: 8px;
}
.gl-benefits-section{
    width: 100% !important;
}
.gl-title-text {
  color: white;
  font-weight: bold;
}

.gl-title-text span {
  color: #FFA600;
  font-weight: bold;
}

/* --- Grid System --- */
.gl-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin: 0 auto;
  direction: ltr;
}

.gl-benefit-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px; 
  
  height: 100%;
}

.gl-benefit-box {
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gl-benefit-box img {
  width: 100%;
  height: 100%;
  max-width: 180px;
  object-fit: contain;
}

/* --- Text Label --- */
.gl-benefit-desc {
  color: #ffffff;
  margin: 0;
  font-size: 1.8em;
  text-align: center;
  font-weight: 400;
  direction: rtl;
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .gl-title-text {
    font-size: 40px;
  }
  .gl-header-icon {
    width: 40px;
  }
  .gl-benefit-box {
    width: 100%;

    background: linear-gradient(180deg, #232832 0%, #2D3442 100%);
    border: 1px solid #f6c042;
    border-radius: 16px;
    padding: 24px;
    box-sizing: border-box;
    transition: all 0.2s ease;
  }
  .gl-benefit-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  }
}

/* Tablet / Small Desktop Range */
@media (max-width: 1024px) {
  .gl-benefit-box {
    width: 100%;
  }
  .gl-benefits-grid {
    gap: 24px;
  }
  .gl-benefit-desc {
    font-size: 1.1rem;
  }
}

@media (max-width: 1024px) and (min-width: 767px) {
  .gl-benefit-box img {
    padding-inline: 16px;
  }
  .gl-title-text {
    font-size: 28px;
  }
  .gl-header-icon {
    width: 28px;
  }
}

/* Mobile Breakpoints */
@media (max-width: 767px) {
  .gl-benefit-box {
    padding: 0; /* prevent cutting off */
    border-radius: 12px;
    margin: auto;
    width: 100%;
    max-height: 180px
  }
  .gl-benefit-box img {
    width: 100%;
    height: auto; /* scale naturally */
  }
  .gl-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}


.carousel-nav button{
	padding:0 !important;
}