/* Tailwind CSS - Using CDN approach for navigation */
@import url("https://cdn.jsdelivr.net/npm/tailwindcss@3.4.1/src/css/preflight.css");

/* Custom Tailwind-like utilities for navigation */
.fixed {
  position: fixed;
}
.top-0 {
  top: 0;
}
.w-full {
  width: 100%;
}
.z-50 {
  z-index: 50;
}
.z-\[60\] {
  z-index: 60;
}
.border-b {
  border-bottom-width: 1px;
}
.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}
.bg-black\/50 {
  background-color: rgba(0, 0, 0, 0.5);
}
.mobile-menu-bg,
#mobile-menu-overlay {
  background: #0f172a !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  opacity: 1 !important;
}
.bg-\[\#cee033\] {
  background-color: #cee033;
}
.bg-\[\#83e920\] {
  background-color: #83e920;
}

.backdrop-blur-xl {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1280px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.p-6 {
  padding: 1.5rem;
}
.h-16 {
  height: 4rem;
}
.h-10 {
  height: 2.5rem;
}
.w-10 {
  width: 2.5rem;
}
.h-8 {
  height: 2rem;
}
.w-8 {
  width: 2rem;
}
.w-auto {
  width: auto;
}
.max-w-xs {
  max-width: 20rem;
}
.flex {
  display: flex;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-8 {
  gap: 2rem;
}
.space-y-8 > * + * {
  margin-top: 2rem;
}
.hidden {
  display: none;
}
.block {
  display: block;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.font-medium {
  font-weight: 500;
}
.font-bold {
  font-weight: 700;
}
.text-white {
  color: rgb(255, 255, 255);
}
.text-white\/70 {
  color: rgba(255, 255, 255, 0.7);
}
.text-black {
  color: rgb(0, 0, 0);
}
.text-center {
  text-align: center;
}
.rounded-full {
  border-radius: 9999px;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-full {
  --tw-translate-x: 100%;
  transform: translateX(100%);
}
.transition-colors {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.mt-8 {
  margin-top: 2rem;
}
.shadow-\[0_0_30px_rgba\(131\,233\,32\,0\.4\)\] {
  box-shadow: 0 0 30px rgba(131, 233, 32, 0.4);
}

/* Hover states */
.hover\:text-\[\#cee033\]:hover {
  color: #cee033;
}

.hover\:shadow-\[0_0_50px_rgba\(131\,233\,32\,0\.6\)\]:hover {
  box-shadow: 0 0 50px rgba(131, 233, 32, 0.6);
}
.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: scale(1.05);
}

/* Focus states */
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* Responsive utilities */
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
  .md\:block {
    display: block;
  }
}

/* Additional styling for body to account for fixed nav */
body {
  padding-top: 4rem; /* Height of the fixed navigation */
}

/* Footer-specific utilities */
.bg-gray-900 {
  background-color: rgb(17, 24, 39);
}
.dark\:bg-black {
  background-color: rgb(0, 0, 0);
}
.text-gray-400 {
  color: rgb(156, 163, 175);
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.text-right {
  text-align: right;
}
.grid {
  display: grid;
}

/* Grid columns for responsive layout */
@media (min-width: 768px) {
  .md\\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Hover state for footer links */
.hover\\:text-primary:hover {
  color: #83e920;
}

/* About Us Page Utilities */
.h-\\[60vh\\] {
  height: 60vh;
}
.min-h-\\[800px\\] {
  min-height: 800px;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.overflow-hidden {
  overflow: hidden;
}
.bg-cover {
  background-size: cover;
}
.bg-center {
  background-position: center;
}
.opacity-40 {
  opacity: 0.4;
}
.opacity-20 {
  opacity: 0.2;
}
.opacity-30 {
  opacity: 0.3;
}
.bg-white {
  background-color: rgb(255, 255, 255);
}
.bg-black {
  background-color: rgb(0, 0, 0);
}
.bg-\\[\\#2c3e50\\] {
  background-color: #2c3e50;
}
.bg-\\[\\#426a2c\\] {
  background-color: #426a2c;
}

/* Text colors and sizes */
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-gray-600 {
  color: rgb(75, 85, 99);
}
.text-gray-300 {
  color: rgb(209, 213, 219);
}
.text-white\\/80 {
  color: rgba(255, 255, 255, 0.8);
}
.text-white\\/70 {
  color: rgba(255, 255, 255, 0.7);
}
.text-\\[\\#83e920\\] {
  color: #83e920;
}

/* Spacing utilities */
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.p-8 {
  padding: 2rem;
}
.p-12 {
  padding: 3rem;
}
.space-y-6 > * + * {
  margin-top: 1.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-16 {
  gap: 4rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mt-20 {
  margin-top: 5rem;
}
.-mr-20 {
  margin-right: -5rem;
}
.-mt-20 {
  margin-top: -5rem;
}

/* Dimensions */
.w-12 {
  width: 3rem;
}
.h-12 {
  height: 3rem;
}
.w-16 {
  width: 4rem;
}
.h-16 {
  height: 4rem;
}
.w-24 {
  width: 6rem;
}
.h-24 {
  height: 6rem;
}
.w-96 {
  width: 24rem;
}
.h-96 {
  height: 24rem;
}
.w-5 {
  width: 1.25rem;
}
.h-5 {
  height: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.h-6 {
  height: 1.5rem;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.h-auto {
  height: auto;
}
.max-w-xl {
  max-width: 36rem;
}

/* Borders */
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-\\[8px\\] {
  border-width: 8px;
}
.border-white {
  border-color: rgb(255, 255, 255);
}
.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.border-\\[\\#83e920\\]\\/30 {
  border-color: rgba(131, 233, 32, 0.3);
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}

/* Flex utilities */
.items-start {
  align-items: flex-start;
}
.justify-center {
  justify-content: center;
}
.shrink-0 {
  flex-shrink: 0;
}

/* Text utilities */
.tracking-widest {
  letter-spacing: 0.1em;
}
.uppercase {
  text-transform: uppercase;
}
.leading-tight {
  line-height: 1.25;
}
.leading-relaxed {
  line-height: 1.625;
}
.text-transparent {
  color: transparent;
}
.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}

/* Gradients */
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.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-black {
  --tw-gradient-from: #000;
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, rgba(0, 0, 0, 0));
}
.from-transparent {
  --tw-gradient-from: transparent;
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, transparent);
}
.from-\\[\\#83e920\\] {
  --tw-gradient-from: #83e920;
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, rgba(131, 233, 32, 0));
}
.from-\\[\\#1a4d1a\\] {
  --tw-gradient-from: #1a4d1a;
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, rgba(26, 77, 26, 0));
}
.via-transparent {
  --tw-gradient-stops: var(--tw-gradient-from), transparent,
    var(--tw-gradient-to, transparent);
}
.to-black\\/60 {
  --tw-gradient-to: rgba(0, 0, 0, 0.6);
}
.to-emerald-500 {
  --tw-gradient-to: rgb(16, 185, 129);
}
.to-\\[\\#2E7D32\\] {
  --tw-gradient-to: #2e7d32;
}
.to-\\[\\#83e920\\]\\/20 {
  --tw-gradient-to: rgba(131, 233, 32, 0.2);
}

/* Shadow utilities */
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.drop-shadow-\\[0_0_15px_rgba\\(131\\,233\\,32\\,0\\.4\\)\\] {
  filter: drop-shadow(0 0 15px rgba(131, 233, 32, 0.4));
}

/* Blur */
.blur-\\[100px\\] {
  filter: blur(100px);
}

/* Mix blend modes */
.mix-blend-overlay {
  mix-blend-mode: overlay;
}
.mix-blend-multiply {
  mix-blend-mode: multiply;
}

/* Pointer events */
.pointer-events-none {
  pointer-events: none;
}

/* Object fit */
.object-contain {
  object-fit: contain;
}
.object-cover {
  object-fit: cover;
}

/* Display utilities */
.inline-block {
  display: inline-block;
}

/* Padding utilities */
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Additional background utilities */
.bg-\\[\\#6C5CE7\\] {
  background-color: #6c5ce7;
}
.hover\\:bg-\\[\\#5a4ad1\\]:hover {
  background-color: #5a4ad1;
}

/* Responsive utilities for About page */
@media (min-width: 768px) {
  .md\\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
  .md\\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .md\\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\\:p-12 {
    padding: 3rem;
  }
  .md\\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\\:w-1\\/2 {
    width: 50%;
  }
  .lg\\:flex-row {
    flex-direction: row;
  }
  .lg\\:p-24 {
    padding: 6rem;
  }
  .lg\\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Contact Page Utilities */
.min-h-screen {
  min-height: 100vh;
}
.min-h-\\[400px\\] {
  min-height: 400px;
}
.pt-48 {
  padding-top: 12rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.bg-white\\/5 {
  background-color: rgba(255, 255, 255, 0.05);
}
.bg-black\\/40 {
  background-color: rgba(0, 0, 0, 0.4);
}
.bg-\\[\\#83e920\\]\\/10 {
  background-color: rgba(131, 233, 32, 0.1);
}
.border-white\\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.backdrop-blur-md {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.h-80 {
  height: 20rem;
}
.space-y-12 > * + * {
  margin-top: 3rem;
}

/* Form input focus states */
.focus\\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\\:border-\\[\\#83e920\\]:focus {
  border-color: #83e920;
}
.focus\\:ring-1:focus {
  --tw-ring-offset-shadow: 0 0 0 0 transparent;
  --tw-ring-shadow: 0 0 0 1px var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
    var(--tw-shadow, 0 0 #0000);
}
.focus\\:ring-\\[\\#83e920\\]:focus {
  --tw-ring-color: #83e920;
}
.placeholder-gray-600::placeholder {
  color: rgb(75, 85, 99);
}

/* Hover effects for contact cards */
.hover\\:border-\\[\\#83e920\\]\\/50:hover {
  border-color: rgba(131, 233, 32, 0.5);
}
.group:hover .group-hover\\:bg-\\[\\#83e920\\] {
  background-color: #83e920;
}
.group:hover .group-hover\\:text-black {
  color: rgb(0, 0, 0);
}
.hover\\:scale-\\[1\\.02\\]:hover {
  transform: scale(1.02);
}

/* Background utilities */
.bg-background-light {
  background-color: rgb(255, 255, 255);
}
.dark\\:bg-background-dark {
  background-color: rgb(0, 0, 0);
}

/* Success/Error message colors */
.text-green-400 {
  color: rgb(74, 222, 128);
}
.bg-green-500\\/10 {
  background-color: rgba(34, 197, 94, 0.1);
}
.border-green-500\\/20 {
  border-color: rgba(34, 197, 94, 0.2);
}
.text-red-400 {
  color: rgb(248, 113, 113);
}
.bg-red-500\\/10 {
  background-color: rgba(239, 68, 68, 0.1);
}
.border-red-500\\/20 {
  border-color: rgba(239, 68, 68, 0.2);
}

/* Material Icons styling */
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

/* Additional grid utilities */
.sm\\:col-span-2 {
  grid-column: span 2 / span 2;
}

@media (min-width: 640px) {
  .sm\\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\\:col-span-2 {
    grid-column: span 2 / span 2;
  }
}

/* Animation duration */
.duration-200 {
  transition-duration: 200ms;
}

/* Shadow utilities for buttons */
.shadow-\\[0_0_20px_rgba\\(131\\,233\\,32\\,0\\.3\\)\\] {
  box-shadow: 0 0 20px rgba(131, 233, 32, 0.3);
}
.hover\\:shadow-\\[0_0_30px_rgba\\(131\\,233\\,32\\,0\\.5\\)\\]:hover {
  box-shadow: 0 0 30px rgba(131, 233, 32, 0.5);
}

/* Privacy Policy Page Styles */
.privacy-content {
  color: #333;
  line-height: 1.8;
}

.dark .privacy-content {
  color: #e5e7eb;
}

.privacy-content h2.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #83e920;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #83e920;
  padding-bottom: 0.5rem;
}

.privacy-content h3 {
  font-size: 1.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.dark .privacy-content h3 {
  color: #ffffff;
}

.privacy-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.dark .privacy-content h4 {
  color: #f3f4f6;
}

.privacy-content p {
  margin-bottom: 1rem;
  text-align: justify;
}

.privacy-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  list-style-type: disc;
}

.privacy-content ul li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

.privacy-content ul ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  list-style-type: circle;
}

.privacy-content .note {
  background-color: #f0fdf4;
  border-left: 4px solid #83e920;
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 0.25rem;
}

.dark .privacy-content .note {
  background-color: rgba(131, 233, 32, 0.1);
}

.privacy-content .emphasis {
  font-weight: 600;
  color: #83e920;
  background-color: rgba(131, 233, 32, 0.1);
  padding: 0.75rem;
  border-radius: 0.25rem;
  display: block;
  margin: 1.5rem 0;
}

.privacy-content .contact-box {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.dark .privacy-content .contact-box {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.privacy-content .contact-box h4 {
  margin-top: 0;
  color: #83e920;
}

.privacy-content a {
  color: #83e920;
  text-decoration: underline;
}

.privacy-content a:hover {
  color: #6bc414;
}

.privacy-content hr {
  border: 0;
  border-top: 2px solid #e5e7eb;
  margin: 3rem 0;
}

.dark .privacy-content hr {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.privacy-content .update-notice {
  background-color: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1rem;
  margin: 2rem 0;
  border-radius: 0.25rem;
}

.dark .privacy-content .update-notice {
  background-color: rgba(245, 158, 11, 0.1);
}

.privacy-content .update-notice strong {
  color: #92400e;
}

.dark .privacy-content .update-notice strong {
  color: #fbbf24;
}

/* Prose styles for better typography */
.prose {
  max-width: 65ch;
}

.prose-lg {
  font-size: 1.125rem;
}

.prose-lg p {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.max-w-none {
  max-width: none;
}

/* PT-32 utility */
.pt-32 {
  padding-top: 8rem;
}

/* PB-16 utility */
.pb-16 {
  padding-bottom: 4rem;
}

/* Gradient utilities */
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-black {
  --tw-gradient-from: #000;
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.to-gray-900 {
  --tw-gradient-to: rgb(17, 24, 39);
}
