.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255,255, 255, 0)), url('bottles.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    margin-bottom: 50px;
}
.benefit-icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #0d6efd;
}
.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 20px;
    margin: 20px 0;
}

 .equal-height-cards {
    display: flex;
    flex-wrap: wrap;
}
.equal-height-cards .card {
    display: flex;
    flex-direction: column;
    height: 50%;
}
.equal-height-cards .card-body {
    flex: 1;
}

#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 99;
  font-size: 22px;
  border: none;
  outline: none;
  background-color: #007bff;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}

#backToTopBtn:hover {
  background-color: #0056b3;
}

.gallery-item {
	overflow: hidden;
	border-radius: 8px;
}

.gallery-item img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}
  
.object-fit-cover {
	object-fit: cover;
}

@media (min-width: 1600px) {
    .hero-section {
    	background-size: contain;
        padding: 150px 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
        text-align: center;
}
