.back{
    padding-top:15px;
}

.boker-section{
      background: #fbfbfb;
}


.boker-about {
  padding: 150px 0;
  max-width: 1300px;
  margin:auto;
  text-align: center;

}

.boker-about h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.boker-about p {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}


.icon-features{
    gap: 45px !important;
}

.feature-boxes {
  width: 22%;
  text-align: center;
  
  padding: 15px;
  border-radius: 10px;
  border: 1px solid lightgrey;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-boxes:hover {
  transform: scale(1.1); /* Grows the item on hover */
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-boxes img {
  width: 60px;
  height: 60px;
}

.feature-boxes p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

@media (max-width: 768px) {


  .feature-boxes {
    width: 100%;
    max-width: 300px;
  }
}
.main-heading  {
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
    color: #AD8B3A;
    margin-bottom: 15px;
    font-family: 'Palatino Linotype';
    
}
.main-paragraph{
    text-align: center;
    font-size:15px;
}

    /* Default: no overflow */
.scroll-box {
  max-height: none;
  overflow: visible;
}

/* Laptop view: Enable scroll */
@media (min-width: 1024px) {
  .scroll-box {
    max-height: 250px; /* or any height you prefer */
    overflow-y: auto;
    padding-right: 10px; /* optional: space for scrollbar */
  }
}