 /* ===== Why Choose Section ===== */
  .quality-section {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    padding: 80px 30px;
  }

  .quality-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }

  .section-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: #f47400;
  }

  .quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }

  .quality-box {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
  }

  .quality-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }

  .icon {
    font-size: 40px;
    color: #f47400;
    margin-bottom: 15px;
  }

  .quality-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
  }

  .quality-box p {
    font-size: 15px;
    color: #666;
  }

  /* ===== Gallery Section ===== */
  h2 {
    text-align: center;
    padding: 20px;
    color: #f47400;
  }


.gallery {
  display: flex;
  overflow: hidden;
  scroll-snap-type: x mandatory;
  gap: 15px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-item {
  flex: 0 0 calc(33.33% - 10px);
  scroll-snap-align: start;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: transform 0.3s ease;

  /* --- Make it square --- */
  aspect-ratio: 1 / 1;       /* Modern browsers */
  position: relative;
  overflow: hidden;
}

/* fallback for older browsers (if aspect-ratio not supported) */
.gallery-item::before {
  content: "";
  display: block;
  padding-top: 100%; /* forces square */
}

.gallery-item img {
  position: absolute;   /* cover square fully */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;    /* crop smartly */
  border-radius: 10px;
}

  /* ===== Dots Styling ===== */
  .gallery-dots {
    display: flex;
    justify-content: center;
    margin: 10px 0 30px;
    gap: 8px;
  }

  .gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .gallery-dot.active {
    background: #f47400;  
    transform: scale(1.1);
  }

  
/* ===== Responsive Breakpoints ===== */
@media (max-width: 1024px) {
  .gallery-item {
    flex: 0 0 calc(50% - 10px); /* 2 per row/tablet */
  }
}
@media (max-width: 768px) {
  .gallery-item {
    flex: 0 0 100%; /* 1 per row/mobile */
  }
}






