/* Yale Blue Color Variables */
:root {
  --yale-blue: #00356b;
  --yale-blue-rgb: 0, 53, 107;
  --background: 0 0% 100%;
  --foreground: 210 33% 21%;
  --card: 0 0% 100%;
  --card-foreground: 210 33% 21%;
  --popover: 0 0% 100%;
  --popover-foreground: 210 33% 21%;
  --primary: 211 100% 21%;
  --primary-foreground: 0 0% 100%;
  --secondary: 211 33% 96%;
  --secondary-foreground: 211 100% 21%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 210 33% 45%;
  --accent: 211 33% 96%;
  --accent-foreground: 211 100% 21%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 214 32% 91%;
  --input: 214 32% 91%;
  --ring: 211 100% 21%;
  --radius: 0.5rem;
  --shadow-elegant: 0 8px 32px -8px rgba(var(--yale-blue-rgb), 0.15);
  --shadow-card: 0 2px 12px -2px rgba(210, 50%, 50%, 0.08);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Base Styles */
*,
:before,
:after {
  box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

html,
body {
  height: 100%;
    scroll-behavior: smooth;
}

body {
  margin: 0;
    line-height: inherit;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: Montserrat, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
/* Yale Blue Color Classes */
.bg-yale-blue {
  background-color: var(--yale-blue);
}
.bg-yale-blue\/10 {
  background-color: rgba(var(--yale-blue-rgb), 0.1);
}
.bg-yale-blue\/20 {
  background-color: rgba(var(--yale-blue-rgb), 0.2);
}
.bg-yale-blue\/90 {
  background-color: rgba(var(--yale-blue-rgb), 0.9);
}
.text-yale-blue {
  color: var(--yale-blue);
}
.text-yale-blue\/70 {
  color: rgba(var(--yale-blue-rgb), 0.7);
}
.border-yale-blue\/10 {
  border-color: rgba(var(--yale-blue-rgb), 0.1);
}
.border-yale-blue\/20 {
  border-color: rgba(var(--yale-blue-rgb), 0.2);
}
.hover\:bg-yale-blue\/90:hover {
  background-color: rgba(var(--yale-blue-rgb), 0.9);
}
.focus-visible\:ring-yale-blue:focus-visible {
  --tw-ring-color: var(--yale-blue);
}
/* Animation Classes */
@keyframes fade-in {
  0% {
    opacity: 0;
  }
to {
  opacity: 1;
}
}
.animate-fade-in {
  animation: fade-in 0.6s ease-out;
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
to {
  opacity: 1;
  transform: translateY(0);
}
}
.animate-fade-in-up {
  animation: fade-in-up 0.7s ease-out;
}
/* Shadow Classes */
.shadow-elegant {
  box-shadow: var(--shadow-elegant);
}
.shadow-card {
  box-shadow: var(--shadow-card);
}
.shadow-subtle {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.03);
}
.hover\:shadow-hover:hover {
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.05);
}
/* Backdrop Blur */
.backdrop-blur-xs {
  backdrop-filter: blur(2px);
}
/* Card Styling */
.bg-card\/80 {
  background-color: rgba(255, 255, 255, 0.8);
}
.bg-white\/70 {
  background-color: rgba(255, 255, 255, 0.7);
}
.bg-white\/90 {
  background-color: rgba(255, 255, 255, 0.9);
}
/* Muted Colors */
.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}
.text-card-foreground {
  color: hsl(var(--card-foreground));
}
/* Spacing and Layout */
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-\[90rem\] {
  max-width: 90rem;
}
/* Border Radius */
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-md {
  border-radius: calc(var(--radius) - 2px);
}
.rounded-lg {
  border-radius: var(--radius);
}
/* Button Styling */
button {
  cursor: pointer;
  transition: var(--transition-smooth);
}
.hover\:-translate-y-0\.5:hover {
  transform: translateY(-0.125rem);
}
.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}
/* Focus Styles */
.focus-visible\:outline-none:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus-visible\:ring-2:focus-visible {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
}
.focus-visible\:ring-offset-2:focus-visible {
  --tw-ring-offset-width: 2px;
}
.focus-visible\:ring-offset:focus-visible {
  --tw-ring-offset-width: 1px;
}
/* Typography */
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.font-medium {
  font-weight: 500;
}
.leading-relaxed {
  line-height: 1.625;
}
/* Flexbox and Grid */
.flex {
  display: flex;
}

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

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

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

.flex-col {
  flex-direction: column;
}

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

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

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

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
/* Spacing */
.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}

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

.px-8 {
  padding-left: 2rem;
    padding-right: 2rem;
}

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

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

.py-6 {
  padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

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

.pl-10 {
  padding-left: 2.5rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-4 {
  padding-top: 1rem;
}
/* Margins */
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
/* Positioning */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.top-0 {
  top: 0;
}
.left-3 {
  left: 0.75rem;
}
.top-1\/2 {
  top: 50%;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  transform: translateY(-50%);
}
/* Dimensions */
.w-2 {
  width: 0.5rem;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.w-12 {
  width: 3rem;
}
.w-full {
  width: 100%;
}
.h-2 {
  height: 0.5rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-11 {
  height: 2.75rem;
}
.h-12 {
  height: 3rem;
}
.min-h-screen {
  min-height: 100vh;
}
/* Borders */
.border {
  border-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-input {
  border-color: hsl(var(--input));
}
.rounded-full {
  border-radius: 9999px;
}
/* Colors */
.bg-white {
  background-color: #fff;
}
.bg-green-500 {
  background-color: #10b981;
}

.text-white {
  color: #fff;
}
.text-center {
  text-align: center;
}
/* Misc */
.space-y-3> :not([hidden])~ :not([hidden]) {
  margin-top: 0.75rem;
}
.space-y-6> :not([hidden])~ :not([hidden]) {
  margin-top: 1.5rem;
}
.block {
  display: block;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.overflow-x-hidden {
  overflow-x: hidden;
}

.ring-offset-background {
  --tw-ring-offset-color: hsl(var(--background));
}
.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}
.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}
/* Transitions */
.transition-all {
  transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}

.duration-200 {
  transition-duration: 0.2s;
}
/* File Input Styling */
.file\:border-0::file-selector-button {
  border-width: 0px;
}

.file\:bg-transparent::file-selector-button {
  background-color: transparent;
}

.file\:text-sm::file-selector-button {
  font-size: 0.875rem;
    line-height: 1.25rem;
}

.file\:font-medium::file-selector-button {
  font-weight: 500;
}

.file\:text-foreground::file-selector-button {
  color: hsl(var(--foreground));
}

.placeholder\:text-muted-foreground::placeholder {
  color: hsl(var(--muted-foreground));
}
/* Responsive Design */
@media (min-width: 768px) {
  .md\:text-4xl {
      font-size: 2.25rem;
      line-height: 2.5rem;
    }
.md\:text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.md\:text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.md\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.md\:mb-16 {
  margin-bottom: 4rem;
}
.md\:px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.md\:py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
}
/* Z-index */
.z-\[100\] {
  z-index: 100;
}
/* SVG Icon Styling */
svg {
  flex-shrink: 0;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 9999px;
  background-color: rgba(var(--yale-blue-rgb), 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(var(--yale-blue-rgb), 0.3);
}
