.gallery-section {
    text-align: center;
    padding: 70px 20px;
  }

  .gallery-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .gallery-grid img {
    width: 100%;
    border-radius: 5px;
  }

  .gallery-slider {
    display: none !important;
  }
  .owl-carousel .owl-dots {
    text-align: center;
    margin-top: 10px;
  }
  
  .owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .owl-carousel .owl-dots .owl-dot.active {
    background-color: #000;  /* Active dot color */
  }
  
  .owl-carousel .owl-dots .owl-dot:hover {
    background-color: #777;  /* Hover effect */
  }
  @media (max-width: 768px) {
    .gallery-grid {
      display: none;
    }

    .gallery-slider {
      display: block !important;
    }

    .gallery-slider img {
      width: 100%;
      border-radius: 5px;
    }
   
  }