/* Container and layout */
.audio-creation {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

.audio-creation .container {
  max-width: 1200px;
  margin: auto;
}

/* Titles */
.section_main_title {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
      font-weight: bold;
}

.caption {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

/* Grid layout */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.category-item {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 240px;
  background-color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
  border-radius: 35px;
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-item h4 {
  font-size: 1.1rem;
  color: #333;
}

/* Show more button */
.show-more-wrapper {
  text-align: center;
  margin-top: 40px;
}

.show-more-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #007BFF;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.show-more-btn:hover {
  background-color: #0056b3;
}
.btrradi{
        border-radius: 35px !important;
}

/* Responsive design */
@media (max-width: 768px) {
  .category-item {
    flex: 1 1 calc(50% - 40px);
  }
}

@media (max-width: 480px) {
  .category-item {
    flex: 1 1 100%;
  }

  .section_main_title {
    font-size: 1.5rem;
  }

  .caption {
    font-size: 0.95rem;
  }
}
