/* Styling for the call girls section */
.call-girls-section {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  margin-top: 30px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.section-header h2 {
  margin: 0;
  font-size: 20px;
  color: #333;
}

.total-count {
  font-size: 16px;
  color: #666;
}

.dropdown-icon {
  cursor: pointer;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.city-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Four columns on large screens */
  gap: 10px;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  overflow: hidden;
  max-height: 500px; /* Adjust based on content */
  opacity: 1;
}

.city-list.collapsed {
  max-height: 0;
  opacity: 0;
}

.city-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
  
}
.city-list li a{
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.city-count {
  color: #999;
}

.section-header1 {
  display: flex;
  gap: 10px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .city-list {
      grid-template-columns: repeat(3, 1fr); /* Three columns */
  }
}

@media (max-width: 768px) {
  .call-girls-section {
      width: 90%;
      padding: 15px;
  }
  .city-list li a{
      font-size: medium;
  }

  .section-header1 {
      width: 60%;
  }

  .city-list {
      grid-template-columns: repeat(2, 1fr); /* Two columns */
  }
}

@media (max-width: 480px) {
  .call-girls-section {
      width: 95%;
      padding: 10px;
  }

  .section-header1 {
      width: 80%;
      flex-direction: column;
      align-items: flex-start;
  }

  .city-list {
      grid-template-columns: repeat(2, 1fr); /* Two columns */
  }

  .dropdown-icon {
      font-size: 18px;
  }
}
