/* === Utility Classes === */

.overflow-x-hidden {
  overflow-x: hidden;
}

.align-items-center {
  display: flex;
  align-items: center;
}

.justify-content-center {
  display: flex;
  justify-content: center;
}

.d-none {
  display: none !important;
}

.rounded {
  border-radius: 12px;
}

.margin-top-1 {
  margin-top: 1rem;
}

.margin-top-5 {
  margin-top: 5rem;
}

.margin-top-mv-3 {
  margin-top: 3rem;
}

/* === Modern Additions === */

.text-center {
  text-align: center;
}

.shadow-sm {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.shadow-md {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.rounded-xl {
  border-radius: 1rem;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.bg-white {
  background-color: #ffffff;
}

.bg-dark {
  background-color: #121212;
  color: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography enhancements */
.heading-xl {
  font-size: 2.5rem;
  font-weight: 700;
}

.text-muted {
  color: #6b7280;
}

.ff-times-new-roman {
    font-family: Times, 'Times New Roman', serif;
}

.fs-small {
    font-size: small;
}

.flex-col {
 flex-direction: column;
}

.form-control {
    width: 100% !important;
    height: 30px;
}

.rounded {
    border-radius: 5px;
}

/* Responsive text */
@media (max-width: 768px) {
  .heading-xl {
    font-size: 1.8rem;
  }
}
