/* tailwind.css - Final Production Build for CarPro.tech */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*, ::after, ::before {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  line-height: 1.5;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #374151;
  background-color: #f9fafb;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.container {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

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

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

.mt-8 {
  margin-top: 2rem;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

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

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

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

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

.justify-between {
  justify-content: space-between;
}

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

.justify-end {
  justify-content: flex-end;
}

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

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

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-white {
  color: #fff;
}

.text-gray-800 {
  color: #1f2937;
}

.text-gray-700 {
  color: #374151;
}

.text-blue-800 {
  color: #1e40af;
}

.text-blue-600 {
  color: #2563eb;
}

.text-green-500 {
  color: #22c55e;
}

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

.bg-gray-50 {
  background-color: #f9fafb;
}

.bg-gray-900 {
  background-color: #111827;
}

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

.bg-blue-800 {
  background-color: #1e40af;
}

.bg-green-500 {
  background-color: #22c55e;
}

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

.shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.overflow-hidden {
  overflow: hidden;
}

.rounded-md {
  border-radius: 0.375rem;
}

.w-full {
  width: 100%;
}

.h-12 {
  height: 3rem;
}

.h-40 {
  height: 10rem;
}

.h-96 {
  height: 24rem;
}

.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.object-center {
  object-position: center;
}

.transition {
  transition: all 0.3s ease;
}

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

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

.hover\:bg-gray-200:hover {
  background-color: #e5e7eb;
}

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

.hover\:text-green-600:hover {
  color: #16a34a;
}

.hover\:text-gray-700:hover {
  color: #374151;
}

.from-blue-800 {
  background-image: linear-gradient(to right, #1e40af, #1e40af);
}

.to-indigo-900 {
  background-image: linear-gradient(to right, #312e81, #312e81);
}

/* Additional useful utilities not in your CSS but commonly used */
.max-w-2xl {
  max-width: 42rem;
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y: 1rem;
  margin-top: calc(1rem * var(--tw-space-y-reverse));
  margin-bottom: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
}

.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y: 2rem;
  margin-top: calc(2rem * var(--tw-space-y-reverse));
  margin-bottom: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
}

.border {
  border-width: 1px;
}

.border-gray-300 {
  border-color: #d1d5db;
}

.focus\:outline-none:focus {
  outline: none;
}

.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0);
}

.focus\:ring-blue-400:focus {
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.5);
}

.opacity-90 {
  opacity: 0.9;
}

.opacity-70 {
  opacity: 0.7;
}

.list-disc {
  list-style-type: disc;
  margin-left: 1.25rem;
}

.inline-flex {
  display: inline-flex;
}

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

.justify-start {
  justify-content: flex-start;
}

.sticky {
  position: sticky;
  top: 0;
  z-index: 50;
}

.hidden {
  display: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

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

/* Responsive image class for mobile */
@media (min-width: 768px) {
  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:mb-0 {
    margin-bottom: 0;
  }

  .md\:pr-10 {
    padding-right: 2.5rem;
  }
}