.business-names-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
  }

  /* Animation keyframes */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  @keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }

  @keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }

  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
  }

  @keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .bn-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background: linear-gradient(-45deg, #6a11cb, #2575fc, #2575fc, #6a11cb);
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.2);
  }

  .bn-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    animation: fadeIn 1s ease-out;
  }

  .bn-subtitle {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
    animation: fadeIn 1.2s ease-out;
  }

  .bn-section {
    margin-bottom: 50px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.4s ease;
    animation: fadeIn 0.8s ease-out;
    position: relative;
    overflow: hidden;
  }

  .bn-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
  }

  .bn-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }

  .bn-section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2a2a2a;
    border-bottom: 2px solid #6a11cb;
    padding-bottom: 10px;
    display: inline-block;
    animation: slideInLeft 0.8s ease-out;
  }

  .bn-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    animation: slideInRight 0.8s ease-out;
  }

  .bn-text {
    font-size: 16px;
    margin-bottom: 15px;
    color: #444;
    animation: fadeIn 1s ease-out;
  }

  /* Tool Section with new background */
  .bn-tool-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  }

  .bn-tool {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1.2s ease-out;
  }

  .bn-tool-inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
  }

  .bn-input-group {
    flex: 1;
    min-width: 200px;
    animation: slideInLeft 0.8s ease-out;
  }

  .bn-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
  }

  .bn-select, .bn-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background-color: white;
  }

  .bn-select:focus, .bn-input:focus {
    border-color: #6a11cb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.2);
  }

  .bn-button {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
    animation: pulse 2s infinite;
  }

  .bn-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.4);
  }

  .bn-results {
    margin-top: 25px;
    min-height: 100px;
  }

  .bn-name-results {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .bn-result-item {
    background-color: white;
    padding: 12px 18px;
    border-radius: 8px;
    border-left: 3px solid #6a11cb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-weight: 500;
    transition: all 0.3s;
    animation: fadeIn 0.5s ease-out;
  }

  .bn-result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
  }

  /* List Section with new background */
  .bn-list-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6eeff 100%);
  }

  .bn-list {
    columns: 2;
    column-gap: 30px;
    list-style-type: none;
    padding: 0;
  }

  .bn-list-item {
    margin-bottom: 12px;
    padding: 10px 18px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    break-inside: avoid;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.5s ease-out;
  }

  .bn-list-item:hover {
    background-color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  /* Table Section with new background */
  .bn-table-section {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  }

  .bn-table-container {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    animation: fadeIn 1s ease-out;
  }

  .bn-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
  }

  .bn-th {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    text-align: left;
    padding: 15px;
    font-weight: 500;
  }

  .bn-td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
  }

  .bn-tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.6);
  }

  .bn-tr:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.9);
  }

  .bn-tr:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  /* Meaning Section with new background */
  .bn-meaning-section {
    background: linear-gradient(135deg, #f3e7ff 0%, #e8d9ff 100%);
  }

  .bn-meaning-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }

  .bn-meaning-card {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    animation: fadeIn 0.8s ease-out;
  }

  .bn-meaning-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background-color: white;
  }

  .bn-meaning-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #6a11cb;
  }

  .bn-meaning-desc {
    font-size: 14px;
    color: #666;
  }

  /* Grid Section with new background */
  .bn-grid-section {
    background: linear-gradient(135deg, #e6fffa 0%, #d1fff0 100%);
  }

  .bn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
  }

  .bn-grid-item {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    transition: all 0.4s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.6s ease-out;
  }

  .bn-grid-item:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.3);
    animation: pulse 2s infinite;
  }

  /* Slider Section - New Addition */
  .bn-slider-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f0ff 100%);
  }

  .bn-slider-container {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
  }

  .bn-slider-wrapper {
    overflow: hidden;
    border-radius: 10px;
  }

  .bn-slider {
    display: flex;
    transition: transform 0.5s ease;
  }

  .bn-slide {
    min-width: calc(25% - 20px);
    margin: 0 10px;
    flex: 0 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    animation: fadeIn 0.8s ease-out;
  }

  .bn-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .bn-slide-content {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .bn-slide-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .bn-slide-category {
    font-size: 14px;
    opacity: 0.8;
  }

  .bn-slider-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 15px;
  }

  .bn-slider-prev, .bn-slider-next {
    background-color: rgba(255, 255, 255, 0.8);
    color: #6a11cb;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
  }

  .bn-slider-prev:hover, .bn-slider-next:hover {
    background-color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

  .bn-slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .bn-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(106, 17, 203, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
  }

  .bn-slider-dot.active {
    background-color: #6a11cb;
    transform: scale(1.2);
  }

  /* Accordion Section with new background */
  .bn-accordion-section {
    background: linear-gradient(135deg, #fff9e6 0%, #fff2cc 100%);
  }

  .bn-accordion-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.8s ease-out;
  }

  .bn-accordion-header {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    border-left: 4px solid #6a11cb;
  }

  .bn-accordion-header:hover {
    background-color: white;
    padding-left: 25px;
  }

  .bn-accordion-icon {
    font-size: 18px;
    transition: transform 0.3s;
  }

  .bn-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: white;
  }

  .bn-accordion-list {
    padding: 20px;
    columns: 2;
    column-gap: 30px;
    list-style-type: none;
  }

  .bn-accordion-list li {
    margin-bottom: 10px;
    break-inside: avoid;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s;
  }

  .bn-accordion-list li:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
  }

  /* Cards Section with new background */
  .bn-cards-section {
    background: linear-gradient(135deg, #e6f7ff 0%, #ccefff 100%);
  }

  .bn-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .bn-card {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    position: relative;
    animation: fadeIn 0.8s ease-out;
  }

  .bn-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    background-color: white;
  }

  .bn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
  }

  .bn-card-content {
    padding: 25px;
  }

  .bn-card-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
  }

  .bn-card-category {
    font-size: 14px;
    color: #666;
  }

  /* Finder Section with new background */
  .bn-finder-section {
    background: linear-gradient(135deg, #f5f0ff 0%, #ebe0ff 100%);
  }

  .bn-finder-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
  }

  .bn-finder-input {
    flex: 2;
    min-width: 200px;
    animation: slideInLeft 0.8s ease-out;
  }

  .bn-finder-filters {
    flex: 1;
    display: flex;
    gap: 10px;
    min-width: 200px;
    animation: slideInRight 0.8s ease-out;
  }

  .bn-search {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .bn-search:focus {
    border-color: #6a11cb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.2);
  }

/*   .bn-filter {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  } */

.bn-filter {
    flex: 1;
    padding: 12px 3px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 12px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

  .bn-filter:focus {
    border-color: #6a11cb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.2);
  }

  .bn-finder-results {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: fadeIn 1s ease-out;
  }

  .bn-finder-item {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 12px 18px;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .bn-finder-item:hover {
    background-color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  /* Catchy Section with new background */
  .bn-catchy-section {
    background: linear-gradient(135deg, #e6ffe6 0%, #ccffcc 100%);
  }

  .bn-catchy-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .bn-catchy-column {
    flex: 1;
    min-width: 150px;
  }

  .bn-catchy-item {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: all 0.4s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.6s ease-out;
  }

  .bn-catchy-item:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.3);
    animation: bounce 1s;
  }

  /* Intro and Conclusion with new background */
  .bn-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }

  .bn-conclusion {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }

 
@media (max-width: 992px) {
  .business-names-container {
    padding: 15px;
  }
  .bn-title {
    font-size: 2.8rem;
  }
  .bn-subtitle {
    font-size: 1.4rem;
  }
  .bn-section {
    padding: 25px;
  }
  .bn-section-title {
    font-size: 2rem;
  }
  .bn-description,
  .bn-text {
    font-size: 0.95rem;
  }
  .bn-input,
  .bn-select {
    font-size: 13px;
    padding: 10px 12px;
		width:84% !important;
  }
  .bn-button {
    font-size: 14px;
    padding: 12px 24px;
  }
  .bn-results,
  .bn-name-results {
    font-size: 0.9rem;
  }
  .bn-list {
    columns: 2;
    column-gap: 20px;
  }
  .bn-list-item,
  .bn-result-item {
    padding: 10px 14px;
  }
  .bn-table th,
  .bn-td {
    padding: 12px 12px;
  }
  .bn-grid-item,
  .bn-slide,
  .bn-card,
  .bn-meaning-card {
    padding: 14px;
  }
}

/* Up to 768px (tablets / large phones) */
@media (max-width: 768px) {
  .business-names-container {
    padding: 12px;
  }
  .bn-title {
    font-size: 2.4rem;
  }
  .bn-subtitle {
    font-size: 1.2rem;
  }
  .bn-section {
    padding: 20px;
  }
  .bn-section-title {
    font-size: 1.7rem;
  }
  .bn-description,
  .bn-text {
    font-size: 0.9rem;
  }
  .bn-input,
  .bn-select {
    font-size: 12px;
    padding: 8px 10px;
  }
  .bn-button {
    font-size: 13px;
    padding: 10px 20px;
  }
  .bn-list {
    columns: 1;
  }
  .bn-list-item,
  .bn-result-item {
    font-size: 0.85rem;
    padding: 8px 12px;
  }
  .bn-table th,
  .bn-td {
    font-size: 0.85rem;
    padding: 10px 10px;
  }
  .bn-grid-item,
  .bn-slide,
  .bn-card,
  .bn-meaning-card {
    padding: 12px;
    font-size: 0.9rem;
  }
}

/* Up to 600px (large phones) */
@media (max-width: 600px) {
  .business-names-container {
    padding: 10px;
  }
  .bn-title {
    font-size: 2rem;
  }
  .bn-subtitle {
    font-size: 1rem;
  }
  .bn-section {
    padding: 18px;
  }
  .bn-section-title {
    font-size: 1.5rem;
  }
  .bn-description,
  .bn-text {
    font-size: 0.85rem;
  }
  .bn-input,
  .bn-select {
    font-size: 11px;
    padding: 6px 8px;
  }
  .bn-button {
    font-size: 12px;
    padding: 8px 16px;
  }
  .bn-list-item,
  .bn-result-item {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
  .bn-table th,
  .bn-td {
    font-size: 0.8rem;
    padding: 8px 8px;
  }
  .bn-grid-item,
  .bn-slide,
  .bn-card,
  .bn-meaning-card {
    padding: 10px;
    font-size: 0.85rem;
  }
}

/* Up to 400px (small phones) */
@media (max-width: 400px) {
  .business-names-container {
    padding: 8px;
  }
  .bn-title {
    font-size: 1.6rem;
  }
  .bn-subtitle {
    font-size: 0.9rem;
  }
  .bn-section {
    padding: 15px;
  }
  .bn-section-title {
    font-size: 1.3rem;
  }
  .bn-description,
  .bn-text {
    font-size: 0.8rem;
    line-height: 1.4;
  }
/*   .bn-input,
  .bn-select {
    font-size: 10px;
    padding: 5px 6px;
  } */
	.bn-input, .bn-select {
    font-size: 10px;
    padding: 5px 6px;
    width: 90%;
}
  .bn-button {
    font-size: 11px;
    padding: 6px 12px;
  }
  .bn-list-item,
  .bn-result-item {
    font-size: 0.75rem;
    padding: 5px 8px;
  }
  .bn-table th,
  .bn-td {
    font-size: 0.75rem;
    padding: 6px 6px;
  }
  .bn-grid-item,
  .bn-slide,
  .bn-card,
  .bn-meaning-card {
    padding: 8px;
    font-size: 0.8rem;
  }
	.bn-meaning-desc {
    font-size: 11px;
    color: #666;
    width: 73%;
}
}