/* ======================================
   DIGITAL NEPAL - MODERN TAILWIND CSS
   Version: 3.0.0
   Last Updated: June 15, 2025
   Author: Rabins Sharma Lamichhane
   ====================================== */

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #f9fafb;
  overflow-x: hidden;
}

/* Prevent horizontal scroll */
body,
html {
  max-width: 100vw;
  overflow-x: hidden !important;
}

/* Container fixes */
.container,
.max-w-7xl,
.max-w-6xl,
.max-w-5xl,
.max-w-4xl {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Section fixes to prevent overflow scrollbars */
section {
  overflow: visible !important;
  max-width: 100vw;
  box-sizing: border-box;
}

/* Remove any unwanted overflow styles */
.overflow-auto,
.overflow-scroll {
  overflow: visible !important;
}

/* Fix for any elements that might cause horizontal scroll */
* {
  max-width: 100%;
}

/* ======================================
   ENHANCED PRELOADER STYLES
   ====================================== */

/* Enhanced Preloader */
.enhanced-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0.95;
}

.loader-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
}

.logo-animation {
  position: relative;
  margin-bottom: 2rem;
  display: inline-block;
}

.loader-logo {
  width: 120px !important;
  height: 60px !important;
  max-width: 120px !important;
  max-height: 60px !important;
  animation: logoFloat 2s ease-in-out infinite;
  display: block !important;
  object-fit: contain !important;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.logo-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  animation: pulse 2s ease-in-out infinite;
}

.brand-text {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 0.1rem;
  animation: textGlow 2s ease-in-out infinite alternate;
  color: white;
}

.progress-wrapper {
  margin-bottom: 2rem;
}

.progress-track {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin: 0 auto 1rem;
  overflow: hidden;
}

.progress-indicator {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
  border-radius: 2px;
  animation: progressMove 2s ease-in-out infinite;
  width: 0%;
}

.loading-message {
  font-size: 0.95rem;
  opacity: 0.8;
  animation: messageFloat 3s ease-in-out infinite;
  color: rgba(255, 255, 255, 0.9);
}

.dots-animation {
  margin-top: 1.5rem;
}

.dots-animation .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  margin: 0 4px;
  animation: dotBounce 1.4s ease-in-out infinite both;
}

.dots-animation .dot:nth-child(1) {
  animation-delay: -0.32s;
}
.dots-animation .dot:nth-child(2) {
  animation-delay: -0.16s;
}
.dots-animation .dot:nth-child(3) {
  animation-delay: 0s;
}

/* Preloader Animations */
@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  100% {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.6),
      0 0 40px rgba(59, 130, 246, 0.3);
  }
}

@keyframes progressMove {
  0% {
    width: 0%;
    transform: translateX(-100%);
  }
  50% {
    width: 100%;
    transform: translateX(0%);
  }
  100% {
    width: 100%;
    transform: translateX(100%);
  }
}

@keyframes messageFloat {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

@keyframes dotBounce {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Preloader fade out */
.enhanced-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* Navigation Styles */
#navbar {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #3b82f6;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-menu-button {
  transition: all 0.3s ease;
}

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

/* Cards and Components */
.modern-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Gradients */
.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 50%, #fdf4ff 100%);
  position: relative;
  overflow: hidden;
}

/* Floating Elements */
.floating-element {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 640px) {
  .container,
  .max-w-7xl,
  .max-w-6xl,
  .max-w-5xl,
  .max-w-4xl {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Hero section responsive fixes */
  .hero-content {
    text-align: center !important;
  }

  /* Typography responsive scaling */
  .text-5xl,
  .text-6xl,
  .text-7xl {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }

  /* Button responsive fixes */
  .flex-col.sm\:flex-row {
    gap: 0.75rem !important;
  }

  .flex-col.sm\:flex-row > * {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Stats grid responsive */
  .grid-cols-3 {
    gap: 1rem !important;
  }

  /* Floating cards responsive */
  .floating-card {
    position: static !important;
    margin: 0.5rem !important;
    transform: none !important;
  }

  /* Navigation improvements */
  .nav-link {
    padding: 0.75rem 1rem !important;
  }
}

@media (max-width: 768px) {
  /* Grid layout fixes */
  .grid.lg\:grid-cols-2 {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Image responsive fixes */
  .max-w-lg {
    max-width: 100% !important;
  }

  /* Card spacing fixes */
  .gap-12 {
    gap: 2rem !important;
  }

  .gap-8 {
    gap: 1.5rem !important;
  }

  /* Padding adjustments */
  .py-32 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .py-16 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

/* Enhanced Responsive Design Fixes */

/* Mobile-first responsive improvements */
@media (max-width: 480px) {
  /* Extra small mobile fixes */
  .text-5xl,
  .text-6xl,
  .text-7xl {
    font-size: 2rem !important;
    line-height: 1.1 !important;
  }

  .text-4xl {
    font-size: 1.875rem !important;
    line-height: 1.2 !important;
  }

  .text-3xl {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
  }

  /* Padding adjustments for mobile */
  .py-32 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-20 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .px-8 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Mobile navigation improvements */
  .mobile-menu {
    max-height: calc(100vh - 80px) !important;
    overflow-y: auto !important;
  }

  /* Hero section mobile fixes */
  .hero-stats .grid-cols-3 {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Floating cards mobile behavior */
  .floating-card,
  .animate-float {
    position: static !important;
    transform: none !important;
    animation: none !important;
    margin: 0.5rem 0 !important;
  }

  /* Button stack on mobile */
  .flex.sm\:flex-row {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .flex.sm\:flex-row > a,
  .flex.sm\:flex-row > button {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

/* Tablet responsive improvements */
@media (min-width: 481px) and (max-width: 768px) {
  /* Tablet-specific fixes */
  .text-5xl,
  .text-6xl,
  .text-7xl {
    font-size: 3rem !important;
    line-height: 1.1 !important;
  }

  .py-32 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  /* Grid improvements for tablets */
  .grid.md\:grid-cols-2 {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .grid.md\:grid-cols-3 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
}

/* Fix for cards and containers on all mobile devices */
@media (max-width: 768px) {
  /* Card responsive improvements */
  .rounded-3xl {
    border-radius: 1rem !important;
  }

  .rounded-2xl {
    border-radius: 0.75rem !important;
  }

  /* Ensure proper spacing */
  .space-y-8 > * + * {
    margin-top: 1.5rem !important;
  }

  .space-y-6 > * + * {
    margin-top: 1rem !important;
  }

  /* Image responsive fixes */
  .max-w-lg {
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .w-72 {
    width: 200px !important;
    height: 200px !important;
  }

  /* Mission cards grid fix */
  .mission-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Better mobile hover states (disable on touch) */
  .hover\:scale-105:hover {
    transform: none !important;
  }

  .hover\:-translate-y-2:hover {
    transform: none !important;
  }

  .hover\:scale-110:hover {
    transform: none !important;
  }

  /* Fix navigation positioning */
  .nav-link {
    padding: 1rem !important;
    display: block !important;
    width: 100% !important;
  }

  /* Stats improvements */
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    text-align: center !important;
  }
}

/* Large tablet and small desktop fixes */
@media (min-width: 769px) and (max-width: 1024px) {
  .text-5xl,
  .text-6xl,
  .text-7xl {
    font-size: 3.5rem !important;
    line-height: 1.1 !important;
  }

  .py-32 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  /* Better grid layouts for medium screens */
  .grid.lg\:grid-cols-3 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }
}

/* Accessibility improvements for touch devices */
@media (pointer: coarse) {
  /* Larger touch targets */
  button,
  a,
  .clickable {
    min-height: 44px !important;
    min-width: 44px !important;
  }

  /* Remove hover effects on touch devices */
  .group:hover .group-hover\:scale-110 {
    transform: none !important;
  }

  .group:hover .group-hover\:rotate-3 {
    transform: none !important;
  }
}

/* Improved focus states for keyboard navigation */
.focus-visible {
  outline: 2px solid #3b82f6 !important;
  outline-offset: 2px !important;
  border-radius: 0.375rem !important;
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
  .animate-float,
  .animate-pulse,
  .animate-bounce,
  .animate-spin {
    animation: none !important;
  }

  .filter.blur-xl,
  .filter.blur-3xl {
    filter: none !important;
  }

  .backdrop-blur-sm {
    backdrop-filter: none !important;
    background: rgba(255, 255, 255, 0.9) !important;
  }
}

/* Better text handling on mobile */
@media (max-width: 640px) {
  .leading-tight {
    line-height: 1.2 !important;
  }

  .leading-relaxed {
    line-height: 1.5 !important;
  }

  /* Prevent text overflow */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  /* Better button spacing */
  .btn-responsive + .btn-responsive {
    margin-top: 0.75rem !important;
  }
}

/* Fix for specific sections that might have alignment issues */
.section-responsive {
  width: 100% !important;
  overflow-x: hidden !important;
}

.container-responsive {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

@media (min-width: 640px) {
  .container-responsive {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

@media (min-width: 1024px) {
  .container-responsive {
    max-width: 1280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Focus States for Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .modern-card {
    background: rgba(31, 41, 55, 0.9);
    color: white;
    border: 1px solid rgba(75, 85, 99, 0.3);
  }
}

/* Performance Optimizations */
.will-change-transform {
  will-change: transform;
}

.will-change-auto {
  will-change: auto;
}

/* Print Styles */
@media print {
  .fixed,
  .sticky,
  nav,
  .mobile-menu,
  .enhanced-loader {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .modern-card {
    border: 2px solid #000;
  }

  .nav-link:hover {
    background: #000;
    color: #fff;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .floating-element {
    animation: none;
  }
}

/* Text Selection */
::selection {
  background: rgba(59, 130, 246, 0.2);
  color: #1f2937;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

/* Ensure no elements cause overflow */
img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

/* Fix any potential grid/flex overflow */
.grid,
.flex {
  max-width: 100%;
  overflow: visible;
}

/* Remove any conflicting overflow styles */
.overflow-hidden {
  overflow: visible !important;
}

/* Ensure sections don't have scrollbars */
section,
div,
article,
main {
  overflow: visible !important;
}

/* Specific component responsive fixes */

/* Contact cards grid */
.contact-cards-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (max-width: 768px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Mission cards grid mobile fixes */
@media (max-width: 768px) {
  .mission-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

/* Hero stats mobile stacking */
@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    max-width: 200px !important;
  }
}

/* Better icon and text alignment */
.flex.items-center {
  align-items: center !important;
}

.flex.items-start {
  align-items: flex-start !important;
}

/* Ensure proper spacing in sections */
.section-spacing {
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  .section-spacing {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-spacing {
    padding: 6rem 2rem;
  }
}

/* Fix for badge alignments */
.inline-flex.items-center {
  display: inline-flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
}

/* Responsive text improvements */
@media (max-width: 640px) {
  .text-4xl.md\:text-5xl {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }

  .text-lg {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  .leading-relaxed {
    line-height: 1.6 !important;
  }

  .max-w-3xl {
    max-width: 100% !important;
  }
}

/* Improve spacing between elements */
.space-y-8 > * + * {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .space-y-8 > * + * {
    margin-top: 1.5rem !important;
  }

  .space-y-6 > * + * {
    margin-top: 1rem !important;
  }

  .space-y-4 > * + * {
    margin-top: 0.75rem !important;
  }
}

/* Fix for grid gaps on mobile */
@media (max-width: 640px) {
  .gap-16 {
    gap: 2rem !important;
  }

  .gap-12 {
    gap: 1.5rem !important;
  }

  .gap-8 {
    gap: 1rem !important;
  }

  .gap-6 {
    gap: 0.75rem !important;
  }
}

/* Better mobile button layouts */
@media (max-width: 640px) {
  .flex.flex-col.sm\:flex-row {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  .flex.flex-col.sm\:flex-row > a,
  .flex.flex-col.sm\:flex-row > button {
    width: 100% !important;
    max-width: 320px !important;
    justify-content: center !important;
  }
}

/* Icon size consistency */
.fas,
.fab {
  display: inline-block;
  text-align: center;
}

/* Ensure proper overflow handling */
.overflow-hidden {
  overflow: hidden !important;
}

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

/* Fix for any remaining layout issues */
* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

/* Accessibility improvements */
@media (max-width: 768px) {
  button,
  a[role='button'],
  .btn,
  [class*='btn-'] {
    min-height: 48px !important;
    padding: 0.75rem 1rem !important;
    font-size: 1rem !important;
  }
}

/* Hero Typography Fixes */
.hero-title {
  word-break: keep-all;
  hyphens: none;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero-title {
    white-space: normal;
    word-break: normal;
  }

  .hero-title .block {
    display: inline-block !important;
    margin-right: 0.5rem;
  }

  /* Better text wrapping for mobile */
  .text-5xl.md\:text-6xl.lg\:text-7xl {
    font-size: 2.25rem !important;
    line-height: 1.2 !important;
    word-spacing: 0.1rem;
  }
}

@media (max-width: 480px) {
  .text-5xl.md\:text-6xl.lg\:text-7xl {
    font-size: 1.875rem !important;
    line-height: 1.1 !important;
  }
}

/* Fix button text wrapping */
@media (max-width: 640px) {
  .group.inline-flex.items-center {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .group.inline-flex.items-center i.mr-3 {
    margin-right: 0.5rem !important;
  }

  .group.inline-flex.items-center i.ml-3 {
    margin-left: 0.5rem !important;
  }
}

/* Better spacing for stats grid */
@media (max-width: 640px) {
  .hero-stats {
    gap: 0.75rem !important;
  }

  .hero-stats > div {
    padding: 0.5rem !important;
  }
}

/* Text content improvements */
.leading-relaxed {
  word-spacing: 0.05rem;
  text-align: justify;
}

@media (max-width: 768px) {
  .leading-relaxed {
    text-align: left;
    word-spacing: normal;
  }
}

/* Prevent text overflow */
.max-w-2xl,
.max-w-3xl {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Badge text fixes */
.inline-flex.items-center.px-4 {
  flex-wrap: wrap;
  gap: 0.25rem;
}

@media (max-width: 480px) {
  .inline-flex.items-center.px-4 {
    font-size: 0.875rem !important;
    padding: 0.5rem 0.75rem !important;
  }
}
