@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
body {
  font-family: "Inter", sans-serif;
}
/* Reusable component styles */
.tool-card {
  background-color: white;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Output box style */
.output-box {
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 1rem;
  font-family: monospace;
  word-wrap: break-word;
  min-height: 52px;
}

/* Styles for the content sections below the tool */
.content-section h2 {
  font-size: 1.875rem; /* 30px */
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.5rem;
}
.content-section p,
.content-section ul {
  font-size: 1rem; /* 16px */
  line-height: 1.75;
  color: #4b5563; /* gray-600 */
  margin-bottom: 1rem;
}
.content-section ul {
  list-style-position: inside;
  list-style-type: disc;
}
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item h3 {
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  color: #1f2937; /* gray-800 */
  margin-bottom: 0.5rem;
}

/* Progress bar for pixel width tools */
.progress-bar-bg {
  background-color: #e5e7eb;
}
.progress-bar {
  transition: width 0.3s ease-in-out;
}
.progress-bar.good {
  background-color: #22c55e;
}
.progress-bar.warn {
  background-color: #f59e0b;
}
.progress-bar.bad {
  background-color: #ef4444;
}

/* Character Counter */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

body {
  font-family: "Inter", sans-serif;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.content-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #4b5563;
}

.content-section ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.content-section strong {
  color: #1f2937;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
}

.faq-question {
  padding: 1rem;
  background-color: #f9fafb;
  cursor: pointer;
  display: flex;
  justify-content: between;
  align-items: center;
  font-weight: 600;
}

.faq-question:hover {
  background-color: #f3f4f6;
}

.faq-question::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: white;
}

.faq-item.active .faq-answer {
  padding: 1rem;
  max-height: 500px;
}

.copy-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #10b981;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1000;
}

.copy-notification.show {
  opacity: 1;
}

.limit-warning {
  background-color: #fef3c7 !important;
  border-color: #f59e0b !important;
}

.limit-exceeded {
  background-color: #fee2e2 !important;
  border-color: #ef4444 !important;
}

/* URL Length Checker */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");
body {
  font-family: "Inter", sans-serif;
  background-color: #f3f4f6;
  color: #1f2937;
}
.content-section {
  display: none;
  min-height: calc(100vh - 12rem);
}
.content-section.active {
  display: flex;
  flex-grow: 1;
}
.message-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  text-align: center;
  z-index: 1000;
}
/* Add these styles to your existing CSS */

.slug-mono {
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.875rem;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bg-opacity-50 {
  --tw-bg-opacity: 0.5;
}

.z-50 {
  z-index: 50;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-2 {
  gap: 0.5rem;
}

.hover\:bg-blue-600:hover {
  background-color: #2563eb;
}

.hover\:bg-green-600:hover {
  background-color: #059669;
}

.hover\:bg-purple-600:hover {
  background-color: #7c3aed;
}

.hover\:bg-orange-600:hover {
  background-color: #dc2626;
}

.bg-gray-50 {
  background-color: #f9fafb;
}
/* about */
.about-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.mission-section {
  background: linear-gradient(135deg, #4f46e5 0%, #7c73e6 100%);
  color: white;
  border-radius: 16px;
  padding: 3rem;
  margin: 3rem 0;
}

.value-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 2rem;
  text-align: center;
}

.value-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.value-icon {
  background: linear-gradient(135deg, #4f46e5 0%, #7c73e6 100%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.team-member {
  text-align: center;
  padding: 2rem;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #4f46e5 0%, #7c73e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
}

.stats-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 0.5rem;
}

.tool-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tool-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.accordion-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 24px 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  margin-top: 16px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-icon {
  transition: transform 0.3s ease;
}
/* terms of service */
.terms-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.terms-section {
  margin-bottom: 3rem;
}

.terms-section h2 {
  color: #1f2937;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.terms-section h3 {
  color: #374151;
  font-weight: 600;
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.terms-section p {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.terms-section ul {
  color: #6b7280;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.terms-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.terms-section strong {
  color: #374151;
  font-weight: 600;
}

.last-updated {
  background: linear-gradient(135deg, #4f46e5 0%, #7c73e6 100%);
  color: white;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.warning-box {
  background: #fef3f2;
  border: 1px solid #fecdca;
  border-radius: 8px;
  padding: 1rem;
  margin: 1.5rem 0;
}

.info-box {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  padding: 1rem;
  margin: 1.5rem 0;
}

.tool-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tool-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.accordion-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 24px 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  margin-top: 16px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-icon {
  transition: transform 0.3s ease;
}
/* privacy policy */
.policy-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  color: #1f2937;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.policy-section h3 {
  color: #374151;
  font-weight: 600;
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-section p {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.policy-section ul {
  color: #6b7280;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.last-updated {
  background: linear-gradient(135deg, #4f46e5 0%, #7c73e6 100%);
  color: white;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.tool-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tool-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.accordion-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 24px 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  margin-top: 16px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-icon {
  transition: transform 0.3s ease;
}
/* contact form */
.tool-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tool-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.contact-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.form-input {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.submit-btn {
  background: linear-gradient(135deg, #4f46e5 0%, #7c73e6 100%);
  color: white;
  border-radius: 10px;
  padding: 14px 28px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 15px rgba(79, 70, 229, 0.3);
}

.success-message {
  display: none;
  background: #10b981;
  color: white;
  border-radius: 10px;
  padding: 16px;
  margin-top: 20px;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 5px;
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating-label {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #9ca3af;
  transition: all 0.3s ease;
  pointer-events: none;
}

.input-container {
  position: relative;
  margin-bottom: 24px;
}

.form-input:focus + .floating-label,
.form-input:not(:placeholder-shown) + .floating-label {
  top: -10px;
  left: 12px;
  font-size: 0.75rem;
  background: white;
  padding: 0 8px;
  color: #4f46e5;
}

.feature-icon {
  background: linear-gradient(135deg, #4f46e5 0%, #7c73e6 100%);
  width: 70px;
  height: 70px;
}

.accordion-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 24px 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  margin-top: 16px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-icon {
  transition: transform 0.3s ease;
}
