/* ==========================================================================
   DPS Varanasi Admission Landing Page Styles (AY 2027-28)
   100% Pure Standalone CSS System - Fully Compatible with CRM Uploads
   (No script or Tailwind CDN dependencies required)
   ========================================================================== */

/* --- Custom Properties & Theme Variables --- */
:root {
  --dps-orange: #e55325;
  --dps-orange-dark: #c94319;
  --dps-black: #231f20;
  --dps-cream: #f8f6f0;
  --dps-green: #10b981;
  --dps-gray-bg: #f9fafb;
  --font-heading: 'Titillium Web', sans-serif;
  --font-body: 'Roboto', 'Open Sans', sans-serif;
}

/* Base Resets & Typography */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--dps-black);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--dps-black);
  overflow-x: hidden;
  background-color: #ffffff;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* --- Container Utility --- */
.container-dps {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .container-dps {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* --- Custom Theme Colors & Utilities --- */
.bg-dps-orange { background-color: var(--dps-orange) !important; }
.bg-dps-orange-dark { background-color: var(--dps-orange-dark) !important; }
.bg-dps-black { background-color: var(--dps-black) !important; }
.bg-dps-cream { background-color: var(--dps-cream) !important; }
.bg-dps-green { background-color: var(--dps-green) !important; }

.text-dps-orange { color: var(--dps-orange) !important; }
.text-dps-black { color: var(--dps-black) !important; }
.text-dps-green { color: var(--dps-green) !important; }

.border-dps-orange { border-color: var(--dps-orange) !important; }
.border-dps-black { border-color: var(--dps-black) !important; }
.border-dps-green { border-color: var(--dps-green) !important; }

.font-heading {
  font-family: var(--font-heading) !important;
}

/* --- Sticky Header Override --- */
header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background-color: #ffffff !important;
}

/* --- Pulse Dot Animation --- */
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

.pulse-dot {
  animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

/* --- Learning Journey Tabs --- */
.journey-tab-btn {
  cursor: pointer;
  user-select: none;
  transition: all 0.25s ease-in-out;
}

#journey-content {
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
}

#journey-content.tab-changing {
  opacity: 0;
  transform: translateY(6px);
}

/* --- Accordion FAQ Styling --- */
#faq-list-wrapper {
  width: 100% !important;
  max-width: 48rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  transition: all 0.35s ease-in-out;
}

#faq-list-wrapper.hidden {
  display: none !important;
}

.faq-list {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  gap: 0.75rem !important;
}

.faq-item {
  display: block !important;
  width: 100% !important;
  background-color: #f3f4f6;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-button {
  display: flex !important;
  flex-direction: row !important;
  width: 100% !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.faq-item:hover {
  border-color: rgba(229, 83, 37, 0.4);
}

.faq-item.active {
  background-color: #ffffff;
  border-color: var(--dps-orange);
  box-shadow: 0 4px 12px -2px rgba(229, 83, 37, 0.12);
}

.faq-answer {
  width: 100% !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-in-out, opacity 0.25s ease-in-out, padding 0.25s ease-in-out;
  opacity: 0;
  padding: 0 1.25rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem 1.25rem 1.25rem 1.25rem;
}

.faq-icon {
  transition: transform 0.3s ease-in-out, background-color 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* --- Hero Form Container & Embed Frame --- */
.form-iframe-container {
  width: 100%;
  min-height: 720px;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 20px 60px -30px rgba(35, 31, 32, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.form-iframe-container iframe {
  width: 100%;
  min-height: 720px;
  border: 0;
  display: block;
}

/* --- Hero Image Frame --- */
.hero-image-frame {
  width: 100%;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 20px 60px -30px rgba(35, 31, 32, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.hero-image-frame img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.5s ease;
}

.hero-image-frame:hover img {
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .hero-image-frame img {
    height: 280px;
  }
}

/* --- Student Achievement Portrait Image Alignment --- */
.achievement-portrait-img {
  width: 100% !important;
  height: 440px !important;
  object-fit: cover !important;
  object-position: center !important;
}

@media (max-width: 1023px) {
  .achievement-portrait-img {
    height: 380px !important;
  }
}

@media (max-width: 639px) {
  .achievement-portrait-img {
    height: 320px !important;
  }
}

/* --- Hover Card Micro-Interactions --- */
.hover-lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(35, 31, 32, 0.35);
}

/* --- Learning Journey Stage Filter Tabs --- */
.journey-tab-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  white-space: nowrap !important;
  padding: 0.65rem 1.25rem !important;
  font-family: var(--font-heading) !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  border-radius: 9999px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
  max-width: 100% !important;
  line-height: 1.2 !important;
}

@media (min-width: 640px) {
  .journey-tab-btn {
    font-size: 14.5px !important;
    padding: 0.75rem 1.6rem !important;
  }
}

/* --- Mobile Bottom Sticky Bar Padding --- */
@media (max-width: 767px) {
  body {
    padding-bottom: 60px;
  }
}


/* ==========================================================================
   PRISTINE COMPILED UTILITIES (FOR CRM & STANDALONE HTML)
   ========================================================================== */

.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.w-full { width: 100% !important; }
.max-w-sm { max-width: 24rem !important; }
.max-w-md { max-width: 28rem !important; }
.max-w-3xl { max-width: 48rem !important; }
.max-w-5xl { max-width: 64rem !important; }
.max-w-6xl { max-width: 72rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.flex-wrap { flex-wrap: wrap !important; }
.inline-flex { display: inline-flex !important; }
.grid { display: grid !important; }
.hidden { display: none !important; }
.block { display: block !important; }
.inline-block { display: inline-block !important; }
.relative { position: relative !important; }
.absolute { position: absolute !important; }
.fixed { position: fixed !important; }
.sticky { position: sticky !important; }

.top-0 { top: 0 !important; }
.top-3 { top: 0.75rem !important; }
.left-3 { left: 0.75rem !important; }
.bottom-0 { bottom: 0 !important; }
.bottom-3 { bottom: 0.75rem !important; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0 !important; }
.inset-x-0 { left: 0; right: 0 !important; }

.z-40 { z-index: 40 !important; }
.z-50 { z-index: 50 !important; }

.shrink-0 { flex-shrink: 0 !important; }
.grow { flex-grow: 1 !important; }
.overflow-hidden { overflow: hidden !important; }

.items-center { align-items: center !important; }
.items-start { align-items: flex-start !important; }
.justify-between { justify-content: space-between !important; }
.justify-center { justify-content: center !important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }

.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 0.75rem !important; }
.gap-4 { gap: 1rem !important; }
.gap-5 { gap: 1.25rem !important; }
.gap-6 { gap: 1.5rem !important; }
.gap-8 { gap: 2rem !important; }
.gap-10 { gap: 2.5rem !important; }
.gap-12 { gap: 3rem !important; }

/* Grid Layout Breakpoints */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .sm\:inline { display: inline !important; }
  .sm\:hidden { display: none !important; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .md\:col-span-2 { grid-column: span 2 / span 2 !important; }
  .md\:w-\[calc\(50\%-0\.625rem\)\] { width: calc(50% - 0.625rem) !important; }
  .md\:mx-auto { margin-left: auto !important; margin-right: auto !important; }
  
  .md\:inline { display: inline !important; }
  .md\:hidden { display: none !important; }
  .md\:flex { display: flex !important; }
  .md\:flex-row { flex-direction: row !important; }
  .md\:items-center { align-items: center !important; }
  
  .md\:h-12 { height: 3rem !important; }
  .md\:h-96 { height: 24rem !important; }
  .md\:h-full { height: 100% !important; }
  .md\:py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
  .md\:py-24 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
  .md\:py-28 { padding-top: 7rem !important; padding-bottom: 7rem !important; }
  .md\:p-6 { padding: 1.5rem !important; }
  .md\:p-8 { padding: 2rem !important; }
  .md\:p-10 { padding: 2.5rem !important; }
  .md\:pb-0 { padding-bottom: 0 !important; }
  
  .md\:text-\[3\.25rem\] { font-size: 3.25rem !important; }
  .md\:text-\[2\.75rem\] { font-size: 2.75rem !important; }
  .md\:text-\[3\.5rem\] { font-size: 3.5rem !important; }
  .md\:text-\[3rem\] { font-size: 3rem !important; }
  .md\:text-\[1\.85rem\] { font-size: 1.85rem !important; }
  .md\:text-\[17px\] { font-size: 17px !important; }
  .md\:text-\[16px\] { font-size: 16px !important; }
  .md\:text-\[16\.5px\] { font-size: 16.5px !important; }
  .md\:text-right { text-align: right !important; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-\[1\.05fr_0\.95fr\] { grid-template-columns: 1.05fr 0.95fr !important; }
  .lg\:grid-cols-\[1fr_1\.1fr\] { grid-template-columns: 1fr 1.1fr !important; }
  .lg\:gap-12 { gap: 3rem !important; }
  
  .lg\:flex { display: flex !important; }
  .lg\:hidden { display: none !important; }
  .lg\:order-1 { order: 1 !important; }
  .lg\:order-2 { order: 2 !important; }
}

/* Sizing Utilities */
.w-full { width: 100% !important; }
.h-full { height: 100% !important; }
.w-auto { width: auto !important; }
.min-h-screen { min-height: 100vh !important; }

.w-1\.5 { width: 0.375rem !important; }
.h-1\.5 { height: 0.375rem !important; }
.w-2 { width: 0.5rem !important; }
.h-2 { height: 0.5rem !important; }
.w-4 { width: 1rem !important; }
.h-4 { height: 1rem !important; }
.w-5 { width: 1.25rem !important; }
.h-5 { height: 1.25rem !important; }
.w-6 { width: 1.5rem !important; }
.h-6 { height: 1.5rem !important; }
.w-8 { width: 2rem !important; }
.h-8 { height: 2rem !important; }
.w-9 { width: 2.25rem !important; }
.h-9 { height: 2.25rem !important; }
.w-10 { width: 2.5rem !important; }
.h-10 { height: 2.5rem !important; }
.w-11 { width: 2.75rem !important; }
.h-11 { height: 2.75rem !important; }
.w-14 { width: 3.5rem !important; }
.h-14 { height: 3.5rem !important; }
.h-12 { height: 3rem !important; }
.h-64 { height: 16rem !important; }
.h-72 { height: 18rem !important; }
.h-px { height: 1px !important; }

.aspect-\[4\/3\] { aspect-ratio: 4 / 3 !important; }

/* Padding & Margins */
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 0.75rem !important; }
.p-5 { padding: 1.25rem !important; }
.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2rem !important; }

.px-2\.5 { padding-left: 0.625rem !important; padding-right: 0.625rem !important; }
.px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-5 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
.px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }

.py-0\.5 { padding-top: 0.125rem !important; padding-bottom: 0.125rem !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-1\.5 { padding-top: 0.375rem !important; padding-bottom: 0.375rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-2\.5 { padding-top: 0.625rem !important; padding-bottom: 0.625rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.py-3\.5 { padding-top: 0.875rem !important; padding-bottom: 0.875rem !important; }
.py-5 { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
.py-10 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
.py-14 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
.py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.py-24 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
.py-28 { padding-top: 7rem !important; padding-bottom: 7rem !important; }

.pb-5 { padding-bottom: 1.25rem !important; }
.pb-16 { padding-bottom: 4rem !important; }

.mt-1 { margin-top: 0.25rem !important; }
.mt-1\.5 { margin-top: 0.375rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 0.75rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-5 { margin-top: 1.25rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mt-10 { margin-top: 2.5rem !important; }
.mt-12 { margin-top: 3rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.max-w-xl { max-width: 36rem !important; }
.max-w-2xl { max-width: 42rem !important; }
.max-w-3xl { max-width: 48rem !important; }
.max-w-md { max-width: 28rem !important; }

/* Font Utilities */
.font-bold { font-weight: 700 !important; }
.font-semibold { font-weight: 600 !important; }
.font-medium { font-weight: 500 !important; }
.uppercase { text-transform: uppercase !important; }
.tracking-wide { letter-spacing: 0.025em !important; }
.tracking-\[0\.14em\] { letter-spacing: 0.14em !important; }
.leading-relaxed { line-height: 1.625 !important; }
.leading-none { line-height: 1 !important; }
.leading-\[1\.08\] { line-height: 1.08 !important; }
.leading-\[1\.15\] { line-height: 1.15 !important; }
.leading-\[1\.1\] { line-height: 1.1 !important; }
.underline { text-decoration: underline !important; }

.text-\[11px\] { font-size: 11px !important; }
.text-\[12px\] { font-size: 12px !important; }
.text-\[12\.5px\] { font-size: 12.5px !important; }
.text-\[13px\] { font-size: 13px !important; }
.text-\[13\.5px\] { font-size: 13.5px !important; }
.text-\[14px\] { font-size: 14px !important; }
.text-\[14\.5px\] { font-size: 14.5px !important; }
.text-\[15px\] { font-size: 15px !important; }
.text-\[15\.5px\] { font-size: 15.5px !important; }
.text-\[16px\] { font-size: 16px !important; }
.text-\[17px\] { font-size: 17px !important; }
.text-\[18px\] { font-size: 18px !important; }
.text-\[19px\] { font-size: 19px !important; }
.text-\[1\.5rem\] { font-size: 1.5rem !important; }
.text-\[2rem\] { font-size: 2rem !important; }
.text-\[2\.1rem\] { font-size: 2.1rem !important; }
.text-\[2\.25rem\] { font-size: 2.25rem !important; }
.text-\[2\.75rem\] { font-size: 2.75rem !important; }

/* Colors & Alpha Opacities */
.bg-white { background-color: #ffffff !important; }
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.8) !important; }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95) !important; }
.bg-white\/\[0\.04\] { background-color: rgba(255, 255, 255, 0.04) !important; }
.bg-dps-green\/10 { background-color: rgba(16, 185, 129, 0.1) !important; }
.bg-dps-green\/\[0\.03\] { background-color: rgba(16, 185, 129, 0.03) !important; }
.bg-dps-orange\/10 { background-color: rgba(229, 83, 37, 0.1) !important; }

.text-white { color: #ffffff !important; }
.text-white\/50 { color: rgba(255, 255, 255, 0.5) !important; }
.text-white\/70 { color: rgba(255, 255, 255, 0.7) !important; }
.text-white\/80 { color: rgba(255, 255, 255, 0.8) !important; }
.text-white\/85 { color: rgba(255, 255, 255, 0.85) !important; }
.text-white\/90 { color: rgba(255, 255, 255, 0.9) !important; }
.text-dps-black\/50 { color: rgba(35, 31, 32, 0.5) !important; }
.text-dps-black\/70 { color: rgba(35, 31, 32, 0.7) !important; }
.text-dps-black\/75 { color: rgba(35, 31, 32, 0.75) !important; }
.text-dps-black\/80 { color: rgba(35, 31, 32, 0.8) !important; }

.opacity-90 { opacity: 0.9 !important; }
.opacity-80 { opacity: 0.8 !important; }

/* Borders & Dividers */
.border { border-width: 1px !important; border-style: solid !important; }
.border-b { border-bottom-width: 1px !important; border-bottom-style: solid !important; }
.border-t { border-top-width: 1px !important; border-top-style: solid !important; }
.divide-y > * + * { border-top-width: 1px !important; border-top-style: solid !important; }
.divide-black\/5 > * + * { border-color: rgba(0, 0, 0, 0.05) !important; }

.border-black\/5 { border-color: rgba(0, 0, 0, 0.05) !important; }
.border-black\/10 { border-color: rgba(0, 0, 0, 0.1) !important; }
.border-gray-100 { border-color: #f3f4f6 !important; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1) !important; }
.border-white\/15 { border-color: rgba(255, 255, 255, 0.15) !important; }
.border-dps-black\/10 { border-color: rgba(35, 31, 32, 0.1) !important; }
.border-dps-black\/15 { border-color: rgba(35, 31, 32, 0.15) !important; }
.border-dps-green\/15 { border-color: rgba(16, 185, 129, 0.15) !important; }

/* Rounded Corners & Shadows */
.rounded-md { border-radius: 0.375rem !important; }
.rounded-lg { border-radius: 0.5rem !important; }
.rounded-xl { border-radius: 0.75rem !important; }
.rounded-2xl { border-radius: 1rem !important; }
.rounded-full { border-radius: 9999px !important; }

/* --- Modern Pastel Feature Cards (Image 2 Reference Style) --- */
.pastel-card {
  position: relative;
  border-radius: 1.5rem !important; /* 24px */
  padding: 1.65rem 1.5rem !important;
  border-width: 2px !important;
  border-style: solid !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.pastel-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.09) !important;
}

.pastel-card-pink {
  background-color: #fff0f3 !important;
  border-color: #fbcfe8 !important;
}

.pastel-card-green {
  background-color: #f0fdf4 !important;
  border-color: #bbf7d0 !important;
}

.pastel-card-yellow {
  background-color: #fffbeb !important;
  border-color: #fef08a !important;
}

.pastel-card-blue {
  background-color: #f0f9ff !important;
  border-color: #bae6fd !important;
}

.pastel-card-purple {
  background-color: #faf5ff !important;
  border-color: #e9d5ff !important;
}

.pastel-card-orange {
  background-color: #fff7ed !important;
  border-color: #fed7aa !important;
}

/* Card Header (Pill Badge + Top Right Blob & Icon) */
.pastel-card-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 1.25rem !important;
  position: relative !important;
  z-index: 2 !important;
}

.pastel-pill-badge {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.35rem 0.85rem !important;
  border-radius: 9999px !important;
  font-family: var(--font-heading) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.pastel-badge-pink { background-color: #fce7f3 !important; color: #be185d !important; }
.pastel-badge-green { background-color: #dcfce7 !important; color: #15803d !important; }
.pastel-badge-yellow { background-color: #fef9c3 !important; color: #a16207 !important; }
.pastel-badge-blue { background-color: #e0f2fe !important; color: #0369a1 !important; }
.pastel-badge-purple { background-color: #f3e8ff !important; color: #7e22ce !important; }
.pastel-badge-orange { background-color: #ffedd5 !important; color: #c2410c !important; }

/* Top Right Blob & Icon Container */
.pastel-icon-wrapper {
  position: relative !important;
  width: 48px !important;
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.pastel-icon-blob {
  position: absolute !important;
  inset: 0 !important;
  border-radius: 50% !important;
  opacity: 0.65 !important;
}

.pastel-blob-pink { background-color: #fbcfe8 !important; }
.pastel-blob-green { background-color: #bbf7d0 !important; }
.pastel-blob-yellow { background-color: #fef08a !important; }
.pastel-blob-blue { background-color: #bae6fd !important; }
.pastel-blob-purple { background-color: #e9d5ff !important; }
.pastel-blob-orange { background-color: #fed7aa !important; }

.pastel-icon {
  position: relative !important;
  z-index: 2 !important;
  width: 26px !important;
  height: 26px !important;
}

.shadow { box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px 0 rgba(0,0,0,0.06) !important; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05) !important; }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06) !important; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05) !important; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04) !important; }

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

/* Transitions & Micro-Animations */
.transition-all { transition-property: all !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.transition-transform { transition-property: transform !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.duration-500 { transition-duration: 500ms !important; }

/* Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; }
.from-dps-black\/90 { --tw-gradient-from: rgba(35, 31, 32, 0.9) !important; --tw-gradient-to: rgba(35, 31, 32, 0) !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important; }
.via-dps-black\/75 { --tw-gradient-to: rgba(35, 31, 32, 0) !important; --tw-gradient-stops: var(--tw-gradient-from), rgba(35, 31, 32, 0.75), var(--tw-gradient-to) !important; }
.to-dps-black\/50 { --tw-gradient-to: rgba(35, 31, 32, 0.5) !important; }

/* State & Hover Utility Classes */
.hover\:bg-dps-orange-dark:hover { background-color: var(--dps-orange-dark) !important; }
.hover\:bg-dps-cream\/60:hover { background-color: rgba(248, 246, 240, 0.6) !important; }
.hover\:bg-gray-100:hover { background-color: #f3f4f6 !important; }
.whitespace-nowrap { white-space: nowrap !important; }
.cursor-pointer { cursor: pointer !important; }
.hover\:text-dps-orange:hover { color: var(--dps-orange) !important; }
.hover\:border-dps-orange:hover { border-color: var(--dps-orange) !important; }
.hover\:border-dps-black\/40:hover { border-color: rgba(35, 31, 32, 0.4) !important; }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06) !important; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05) !important; }

/* Floatable Square Tab Card Utility */
.hover-float-card {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease !important;
  cursor: pointer !important;
}

.hover-float-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 35px -10px rgba(16, 185, 129, 0.18), 0 8px 16px -6px rgba(0, 0, 0, 0.06) !important;
  border-color: rgba(16, 185, 129, 0.5) !important;
  background-color: #ffffff !important;
}