/* 
/* 🔹 Extra Small (XS) - Mobile Portrait (up to 575.98px) */
@media (max-width: 575.98px) {
}

/* 🔹 Small (SM) - Mobile Landscape (576px - 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
}

/* 🔹 Medium (MD) - Tablets Portrait (768px - 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
}

/* 🔹 Large (LG) - Tablets Landscape / Small Laptop (992px - 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
}

/* 🔹 Extra Large (XL) - Desktop (1200px - 1399.98px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  /* You can add styles here if needed */
}

/* 🔹 Extra Extra Large (XXL) - Large Screen (1400px and up) */
@media (min-width: 1400px) {
  /* You can add styles here if needed */
}
