/* Base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8fafc;
  color: #1f2937;
  line-height: 1.5;
}

h1, h2, h3 {
  font-weight: 700;
}

section {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  section {
    padding: 5rem 2rem;
  }
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Typography */
.text-center {
  text-align: center;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

.italic {
  font-style: italic;
}

/* Spacing */
.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-10 {
  margin-bottom: 2.5rem; /* 10 * 0.25rem */
}

.mb-12 {
  margin-bottom: 3rem; /* 12 * 0.25rem */
}

.mt-0 {
  margin-top: 0;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem; /* 6 * 0.25rem */
}

.mt-8 {
  margin-top: 2rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pr-4 {
  padding-right: 1rem; /* 4 * 0.25rem */
}

.pr-8 { /* Base class for md:pr-8 */
  padding-right: 2rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pl-8 { /* Base class for md:pl-8 */
  padding-left: 2rem;
}

.pl-4 {
  padding-left: 1rem; /* 4 * 0.25rem */
}

/* Colors */
.text-white {
  color: white;
}

.text-gray-100 {
  color: #f3f4f6;
}

.text-gray-200 {
  color: #e5e7eb;
}

.text-gray-300 {
  color: #d1d5db;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-gray-800 {
  color: #1f2937;
}

.text-gray-900 {
  color: #111827;
}

.text-blue-200 {
  color: #bfdbfe;
}

.text-blue-300 {
  color: #93c5fd;
}

.text-blue-400 {
  color: #60a5fa;
}

.text-blue-500 {
  color: #3b82f6;
}

.text-blue-600 {
  color: #2563eb;
}

.text-blue-700 {
  color: #1d4ed8;
}

.bg-white {
  background-color: white;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.bg-gray-100 {
  background-color: #f3f4f6;
}

.bg-gray-700 {
  background-color: #374151;
}

.bg-gray-800 {
  background-color: #1f2937;
}

.bg-gray-900 {
  background-color: #111827;
}

.bg-blue-500 {
  background-color: #3b82f6;
}

.bg-blue-600 {
  background-color: #2563eb;
}

.bg-blue-700 {
  background-color: #1d4ed8;
}

.bg-indigo-50 {
  background-color: #eef2ff;
}

.bg-indigo-100 {
  background-color: #e0e7ff;
}

.bg-indigo-700 {
  background-color: #4338ca;
}

.bg-blue-grey-200 {
  background-color: #B0BEC5;
}

/* Layout */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline-flex {
  display: inline-flex;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-stretch {
  align-items: stretch;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.space-x-3 {
  column-gap: 0.75rem;
}

.space-x-4 {
  column-gap: 1rem;
}

.space-y-1 {
  row-gap: 0.25rem;
}

.space-y-2 {
  row-gap: 0.5rem;
}

.space-y-4 {
  row-gap: 1rem;
}

/* Width and Height */
.w-full {
  width: 100%;
}

.w-1\/2 { /* Base class for md:w-1/2 */
  width: 50%;
}

.w-auto {
  width: auto;
}

.w-20 {
  width: 5rem;
}

.w-40 {
  width: 10rem; /* 40 * 0.25rem */
}

.w-60 {
  width: 20rem; /* 60 * 0.333rem approx, using 20rem as requested */
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.h-40 {
  height: 10rem; /* 40 * 0.25rem */
}

.h-60 {
  height: 20rem; /* 60 * 0.333rem approx, using 20rem as requested */
}

.h-full {
  height: 100%;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 64rem;
}

.max-w-5xl {
  max-width: 80rem;
}

/* Borders */
.border {
  border-width: 1px;
  border-style: solid;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-l-4 {
  border-left-width: 4px;
  border-left-style: solid;
}

.border-gray-300 {
  border-color: #d1d5db;
}

.border-gray-700 {
  border-color: #374151;
}

.border-gray-600 {
  border-color: #4b5563;
}

.border-blue-500 {
  border-color: #3b82f6;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

/* Effects */
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-custom {
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-60 {
  opacity: 0.6;
}

/* Transitions */
.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}


/* Position */
.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-50 {
  z-index: 50;
}

/* Object */
.object-cover {
  object-fit: cover;
}

/* Responsive */
@media (min-width: 640px) {
  .sm\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:text-xl {
    font-size: 1.25rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
  }

  .md\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:w-1\/2 { /* Escaped slash for CSS */
    width: 50%;
  }

  .md\:pr-8 {
    padding-right: 2rem;
  }

  .md\:pl-8 {
    padding-left: 2rem;
  }

  .md\:pr-4 {
    padding-right: 1rem;
  }

  .md\:pl-4 {
    padding-left: 1rem;
  }

  .md\:mt-0 {
    margin-top: 0;
  }

  .md\:justify-start {
    justify-content: flex-start;
  }

  .md\:justify-end {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .lg\:block {
    display: block;
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
  }
}

/* Custom Components */
.nav-link {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.nav-link:hover {
  background-color: #e5e7eb;
  color: #1f2937;
}

.btn {
  display: inline-block;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-radius: 0.5rem;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0,0,0,0.1);
  font-weight: 600;
  color: #ffffff;
  transition: all 0.15s ease-in-out;
}

.btn-primary {
  background-color: #2563eb;
  transition: background-color 0.2s ease-in-out;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-secondary {
  background-color: #4b5563;
  transition: background-color 0.2s ease-in-out;
}

.btn-secondary:hover {
  background-color: #374151;
}

.btn:active {
  transform: translateY(2px);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

.card {
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.list-disc {
  list-style-type: disc;
  padding-left: 1.25rem;
}

.list-disc li {
  margin-bottom: 0.5rem;
}

.not-italic {
  font-style: normal;
}

/* Font Icons */
@font-face {
  font-family: 'LucideIcons';
  src: url('./lucide.ttf') format('truetype');
}

.lucide {
  font-family: 'LucideIcons';
  font-size: 1.25rem;
  line-height: 1;
  display: inline-block;
}

/* Gradients */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-blue-600 {
  --tw-gradient-stops: #2563eb, var(--tw-gradient-to, rgb(37 99 235 / 0));
}

.to-indigo-700 {
  --tw-gradient-to: #4338ca;
}

.from-gray-700 {
  --tw-gradient-stops: #374151, var(--tw-gradient-to, rgb(55 65 81 / 0));
}

.to-gray-900 {
  --tw-gradient-to: #111827;
}

/* Focus */
.focus\:border-transparent:focus {
  border-color: transparent;
}

/* Antialiased */
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Placeholders */
.placeholder\:text-gray-500::placeholder { /* Escaped colon for CSS */
  color: #6b7280;
  opacity: 1; /* Firefox */
}

.contact-form-iframe {
  width: 640px;
  height: 750px;
  border: none;
}
/* Modal Styles */
.full-screen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: none; /* Hidden by default */
    justify-content: center;
    z-index: 50;
    overflow-y: auto; /* Add scroll for content overflow */
}

.full-screen-modal.modal-active {
    display: flex; /* Shown when active */
}
.full-screen-modal .modal-content {
    background-color: #fff;
    margin-top: 20px; /* Add some space from the top */
    margin-bottom: 20px; /* Add some space at the bottom */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 900px; /* Limit maximum width */
    width: 90%; /* Adjust width for responsiveness */
    overflow-y: auto; /* Add scroll for content within the modal */
}
/* Utility Classes from HTML */
.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.overflow-hidden {
    overflow: hidden;
}
.border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: currentColor;
}

.p-4 {
    padding: 1rem;
}
.hover\:text-gray-800:hover {
    color: #1f2937;
}
.overflow-y-auto {
    overflow-y: auto;
}

.max-h-96 {
    max-height: 24rem; /* 96 * 0.25rem */
}
/* Hover effects */
.hover-text-white:hover {
  color: white;
}

.hover-text-gray-500:hover {
  color: #6b7280;
}

.hover-bg-gray-100:hover {
  background-color: #f3f4f6;
}

.hover-shadow-2xl:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Focus effects */
.focus-outline-none:focus {
  outline: none;
}

.focus-ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-ring-inset:focus {
  --tw-ring-inset: inset;
}

.focus-ring-blue-500:focus {
  --tw-ring-color: #3b82f6;
}

/* Width */
.w-6 {
  width: 1.5rem;
}

/* Transitions */
.duration-300 {
  transition-duration: 300ms;
}

.privacy-policy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  display: flex; /* Use flex to center content if needed, or block */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  z-index: 1000; /* Ensure it's on top of other content */
  overflow-y: scroll; /* Add vertical scroll if content overflows */
  overflow-x: hidden; /* Hide horizontal scrollbar */
}

.privacy-policy-modal .modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100vw;
  height: 100vh;
  max-width: 80%; /* Adjust max-width as needed */
  max-height: 90%; /* Adjust max-height as needed */
  overflow-y: auto; /* Add scroll for content within the modal */
}

.privacy-policy-modal .modal-content li {
  padding-left: 1em; /* Add indentation to list items */
}
