/*
 * SkillShala Design System — Sunset Blaze
 * Heading: Space Grotesk · Body: DM Sans
 * All colors in oklch.
 */

:root {
  --radius: 1rem;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --radius-2xl: calc(var(--radius) + 8px);
  --radius-3xl: calc(var(--radius) + 12px);
  --radius-4xl: calc(var(--radius) + 16px);

  /* Base surfaces — warm off-white */
  --background: oklch(0.985 0.008 60);
  --foreground: oklch(0.18 0.03 280);

  --card: oklch(1 0 0);
  --card-foreground: oklch(0.18 0.03 280);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.18 0.03 280);

  /* Primary = Sunset coral/orange */
  --primary: oklch(0.7 0.2 35);
  --primary-foreground: oklch(0.99 0.005 80);

  --secondary: oklch(0.96 0.02 50);
  --secondary-foreground: oklch(0.22 0.04 280);

  --muted: oklch(0.96 0.015 70);
  --muted-foreground: oklch(0.5 0.03 280);

  --accent: oklch(0.65 0.22 350);
  --accent-foreground: oklch(0.99 0.005 80);

  --destructive: oklch(0.6 0.24 27);
  --destructive-foreground: oklch(0.99 0.005 80);

  --border: oklch(0.92 0.015 60);
  --input: oklch(0.92 0.015 60);
  --ring: oklch(0.7 0.2 35);

  /* Brand accent palette */
  --coral: oklch(0.7 0.2 35);      /* #ff6b35 */
  --amber: oklch(0.78 0.17 65);    /* #f7931e */
  --magenta: oklch(0.65 0.22 350); /* #e84393 */
  --violet: oklch(0.55 0.21 290);  /* #6c5ce7 */

  /* SkillMaster role colors */
  --teacher: oklch(0.6 0.18 250);   /* Blue */
  --educator: oklch(0.65 0.17 150); /* Green */
  --mentor: oklch(0.72 0.18 55);    /* Orange */
  --master: oklch(0.55 0.21 290);   /* Purple */

  /* Gradients & elevations */
  --gradient-sunset: linear-gradient(135deg, oklch(0.7 0.2 35) 0%, oklch(0.78 0.17 65) 35%, oklch(0.65 0.22 350) 75%, oklch(0.55 0.21 290) 100%);
  --gradient-warm: linear-gradient(135deg, oklch(0.7 0.2 35), oklch(0.65 0.22 350));
  --gradient-cool: linear-gradient(135deg, oklch(0.65 0.22 350), oklch(0.55 0.21 290));
  --gradient-glow: radial-gradient(circle at 30% 20%, oklch(0.7 0.2 35 / 0.35), transparent 60%), radial-gradient(circle at 80% 70%, oklch(0.55 0.21 290 / 0.35), transparent 60%);

  --shadow-soft: 0 2px 8px -2px oklch(0.55 0.21 290 / 0.08), 0 8px 24px -8px oklch(0.7 0.2 35 / 0.12);
  --shadow-glow: 0 10px 40px -10px oklch(0.7 0.2 35 / 0.45);
  --shadow-card: 0 1px 2px oklch(0.18 0.03 280 / 0.04), 0 8px 24px -12px oklch(0.18 0.03 280 / 0.1);
}

.dark {
  --background: oklch(0.14 0.03 280);
  --foreground: oklch(0.97 0.01 60);
  --card: oklch(0.2 0.035 280);
  --card-foreground: oklch(0.97 0.01 60);
  --popover: oklch(0.2 0.035 280);
  --popover-foreground: oklch(0.97 0.01 60);
  --primary: oklch(0.75 0.2 40);
  --primary-foreground: oklch(0.16 0.03 280);
  --secondary: oklch(0.26 0.04 280);
  --secondary-foreground: oklch(0.97 0.01 60);
  --muted: oklch(0.24 0.035 280);
  --muted-foreground: oklch(0.72 0.03 280);
  --accent: oklch(0.7 0.22 350);
  --accent-foreground: oklch(0.16 0.03 280);
  --destructive: oklch(0.7 0.2 27);
  --destructive-foreground: oklch(0.97 0.01 60);
  --border: oklch(1 0 0 / 10%);
  --input: oklch(1 0 0 / 12%);
  --ring: oklch(0.75 0.2 40);
}

/* Global resets for styling identity */
* {
  box-sizing: border-box;
}

html {
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  background-image:
    radial-gradient(circle at 0% 0%, oklch(0.7 0.2 35 / 0.06), transparent 50%),
    radial-gradient(circle at 100% 100%, oklch(0.55 0.21 290 / 0.06), transparent 50%);
  background-attachment: fixed;
  margin: 0;
  padding: 0;
}

/* Custom elevations and styles */
.shadow-soft { box-shadow: var(--shadow-soft) !important; }
.shadow-glow { box-shadow: var(--shadow-glow) !important; }
.shadow-card { box-shadow: var(--shadow-card) !important; }

.bg-gradient-sunset { background-image: var(--gradient-sunset) !important; }
.bg-gradient-warm { background-image: var(--gradient-warm) !important; }
.bg-gradient-cool { background-image: var(--gradient-cool) !important; }
.bg-gradient-glow { background-image: var(--gradient-glow) !important; }

.text-gradient-sunset {
  background-image: var(--gradient-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

/* Typography elements defaults */
h1, h2, h3, h4, h5, h6, .font-display {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
}

/* Tailwind-equivalent Utility Classes */

/* 1. Flex & Grid Layouts */
.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.items-center { align-items: center !important; }
.items-start { align-items: flex-start !important; }
.items-end { align-items: flex-end !important; }
.justify-between { justify-content: space-between !important; }
.justify-center { justify-content: center !important; }
.justify-end { justify-content: flex-end !important; }
.shrink-0 { flex-shrink: 0 !important; }
.flex-grow-1, .flex-grow { flex-grow: 1 !important; }
.flex-1 { flex: 1 !important; }
.place-items-center { display: grid !important; place-items: center !important; }
.grid { display: grid !important; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }

@media (min-width: 40rem) {
    .sm-flex-row {
        flex-direction: row !important;
    }
}

.-top-7{
  top: -28px !important;
}

.-translate-x-1\/2 {
    --tw-translate-x: -50%;
    translate: 0 0;
}
.left-1\/2 {
    left: 50%;
}

.px-1-5 {
    padding-left: 5px;
    padding-right: 5px;
}

.text-primary-foreground\/90 {
        color: #fefbf8e6;
    }

.px-1\.5 {
    padding-inline: calc(var(--spacing) * 1.5);
}

@media (min-width: 40rem) {
    .sm\:items-end {
        align-items: flex-end;
    }
}

@media (min-width: 40rem) {
    .sm\:items-end {
        align-items: flex-end;
    }
}

@media (min-width: 40rem) {
    .sm\:gap-6 {
        gap: calc(var(--spacing) * 6);
    }
}

@media (min-width: 40rem) {
    .sm\:text-4xl {
        font-size: 36px;
        line-height: 1.11;
    }
}

.rounded-t-2xl {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

@media (min-width: 640px) {
  .sm\:flex { display: flex !important; }
  .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\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
}
@media (min-width: 768px) {
  .md\:grid-cols-\[auto_1fr_auto\] { grid-template-columns: auto 1fr auto !important; }
}
@media (min-width: 768px) {
  .md\:flex { display: flex !important; }
  .md\:hidden { display: none !important; }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
}
@media (min-width: 1024px) {
  .lg\:flex { display: flex !important; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .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-8 { grid-template-columns: repeat(8, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-\[1fr_2fr\] { grid-template-columns: 1fr 2fr !important; }
  .lg\:grid-cols-\[1fr_auto\] { grid-template-columns: 1fr auto !important; }
  .lg\:col-span-2 { grid-column: span 2 / span 2 !important; }
  .lg\:justify-end { justify-content: flex-end !important; }
}

/* 2. Gaps & Spacing */
.gap-1 { gap: 0.25rem !important; }
.gap-1\.5 { gap: 0.375rem !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-12 { gap: 3rem !important; }

/* 3. Paddings */
.p-0 { padding: 0 !important; }
.p-2\.5 { padding: 0.625rem !important; }
.p-3 { padding: 0.75rem !important; }
.p-4 { padding: 1rem !important; }
.p-5 { padding: 1.25rem !important; }
.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2rem !important; }
.p-10 { padding: 2.5rem !important; }
.p-12 { padding: 3rem !important; }
.p-16 { padding: 4rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !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-05 { 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-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-6 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-8 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.py-10 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
.py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }

.pt-4 { padding-top: 1rem !important; }
.pt-6 { padding-top: 1.5rem !important; }
.pt-10 { padding-top: 2.5rem !important; }
.pt-16 { padding-top: 4rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 0.75rem !important; }
.pb-4 { padding-bottom: 1rem !important; }
.pb-5 { padding-bottom: 1.25rem !important; }
.pb-6 { padding-bottom: 1.5rem !important; }
.pb-8 { padding-bottom: 2rem !important; }
.pb-10 { padding-bottom: 2.5rem !important; }
.pb-12 { padding-bottom: 3rem !important; }
.pb-20 { padding-bottom: 5rem !important; }
.pb-24 { padding-bottom: 6rem !important; }

.pl-11 { padding-left: 2.75rem !important; }
.pr-4 { padding-right: 1rem !important; }

@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .sm\:px-10 { padding-left: 2.5rem !important; padding-right: 2.5rem !important; }
  .sm\:p-16 { padding: 4rem !important; }
}
@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
  .lg\:pt-24 { padding-top: 6rem !important; }
  .lg\:pb-28 { padding-bottom: 7rem !important; }
}

/* 4. Margins & Offsets */
.m-0 { margin: 0 !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; }
.mt-24 { margin-top: 6rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-5 { margin-bottom: 1.25rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-12 { margin-bottom: 3rem !important; }
.mr-1 { margin-right: 0.25rem !important; }
.ml-1 { margin-left: 0.25rem !important; }
.pt-4 { padding-top: 1rem !important; }

.-mt-12 { margin-top: -3rem !important; }
.-left-4 { left: -1rem !important; }
.-right-4 { right: -1rem !important; }
.top-10 { top: 2.5rem !important; }
.top-4 { top: 16px !important; }
.right-5 { right: 20px !important; }
.bottom-10 { bottom: 2.5rem !important; }
.-inset-6 { top: -1.5rem !important; bottom: -1.5rem !important; left: -1.5rem !important; right: -1.5rem !important; }
.right-3 { right: 10px !important; }
.bottom-3 { bottom: 10px !important; }
.top-3 { top: 10px !important; }
.left-3 { left: 10px !important; }
.left-4 { left: 16px !important; }
.top-1-2 { top: 30% !important; }
.translate-y-1-2 { --tw-translate-y: -50%;
    translate: var(--tw-translate-x) var(--tw-translate-y); }

.accent-primary{
  accent-color: var(--primary);
}

.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.space-y-7 > * + * { margin-top: 1.75rem !important; }
.space-y-6 > * + * { margin-top: 1.5rem !important; }
.space-y-4 > * + * { margin-top: 1rem !important; }
.space-y-3 > * + * { margin-top: 0.75rem !important; }
.space-y-2 > * + * { margin-top: 0.5rem !important; }

/* 5. Typography */
.text-xs { font-size: 0.75rem !important; line-height: 1rem !important; }
.text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; }
.text-base { font-size: 1rem !important; line-height: 1.5rem !important; }
.text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; }
.text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; }
.text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; }
.text-3xl { font-size: 1.875rem !important; line-height: 2.25rem !important; }
.text-4xl { font-size: 2.25rem !important; line-height: 2.5rem !important; }
.text-5xl { font-size: 3rem !important; line-height: 1 !important; }
.text-11 { font-size: 11px !important; }
.text-10 { font-size: 10px !important; }

@media (min-width: 640px) {
  .sm\:text-base { font-size: 1rem !important; line-height: 1.5rem !important; }
  .sm\:text-6xl { font-size: 3.75rem !important; line-height: 1 !important; }
}
@media (min-width: 1024px) {
  .lg\:text-7xl { font-size: 4.5rem !important; line-height: 1 !important; }
}

.font-medium { font-weight: 500 !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }
.font-display { font-family: "Space Grotesk", sans-serif !important; }
.font-sans { font-family: "DM Sans", sans-serif !important; }

.tracking-tight { letter-spacing: -0.025em !important; }
.tracking-wide { letter-spacing: 0.025em !important; }
.tracking-wider { letter-spacing: 0.05em !important; }
.leading-tight { line-height: 1.25 !important; }
.leading-\[1\.05\] { line-height: 1.05 !important; }

/* 6. Colors & Opacities */
.text-foreground { color: var(--foreground) !important; }
.text-muted-foreground { color: var(--muted-foreground) !important; }
.text-primary-foreground { color: var(--primary-foreground) !important; }
.text-primary { color: var(--primary) !important; }
.text-accent-foreground { color: var(--accent-foreground) !important; }
.text-destructive { color: var(--destructive) !important; }
.text-educator { color: var(--educator) !important; }
.text-amber { color: var(--amber) !important; }
.text-magenta { color: var(--magenta) !important; }
.text-violet { color: var(--violet) !important; }

.bg-background { background-color: var(--background) !important; }
.bg-card { background-color: var(--card) !important; }
.bg-popover { background-color: var(--popover) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-muted { background-color: var(--muted) !important; }
.bg-accent { background-color: var(--accent) !important; }
.bg-destructive { background-color: var(--destructive) !important; }
.bg-foreground { background-color: var(--foreground) !important; }

.bg-background\/70 { background-color: oklch(0.985 0.008 60 / 0.7) !important; }
.bg-background\/95 { background-color: oklch(0.985 0.008 60 / 0.95) !important; }
.bg-foreground\/90 { background-color: oklch(0.18 0.03 280 / 0.9) !important; }
.bg-background\/90 { background-color: oklch(0.985 0.008 60 / 0.9) !important; }
.bg-background\/15 { background-color: oklch(0.985 0.008 60 / 0.15) !important; }
.bg-background\/20 { background-color: oklch(0.985 0.008 60 / 0.2) !important; }
.bg-background\/30 { background-color: oklch(0.985 0.008 60 / 0.3) !important; }
.bg-mentor\/15 { background-color: oklch(0.72 0.18 55 / 0.15) !important; }
.bg-educator\/15 { background-color: oklch(0.65 0.17 150 / 0.15) !important; }
.bg-educator\/10 { background-color: oklch(0.65 0.17 150 / 0.1) !important; }
.bg-amber\/15 { background-color: oklch(0.78 0.17 65 / 0.15) !important; }
.bg-master\/15 { background-color: oklch(0.55 0.21 290 / 0.15) !important; }
.bg-primary\/5 { background-color: oklch(0.7 0.2 35 / 0.05) !important; }
.bg-muted\/60 { background-color: oklch(0.96 0.015 70 / 0.6) !important; }
.bg-muted\/40 { background-color: oklch(0.96 0.015 70 / 0.4) !important; }
.bg-primary-foreground\/30 { background-color: oklch(0.99 0.005 80 / 0.3) !important; }
.bg-primary-foreground\/20 { background-color: oklch(0.99 0.005 80 / 0.2) !important; }

.border-primary-foreground\/30 { border-color: oklch(0.99 0.005 80 / 0.3) !important; }
.border-primary-foreground\/20 { border-color: oklch(0.99 0.005 80 / 0.2) !important; }
.border-border\/60 { border-color: oklch(0.92 0.015 60 / 0.6) !important; }
.text-foreground\/5 { color: oklch(0.18 0.03 280 / 0.05) !important; }

.opacity-30 { opacity: 0.3 !important; }
.opacity-40 { opacity: 0.4 !important; }
.opacity-50 { opacity: 0.5 !important; }
.opacity-60 { opacity: 0.6 !important; }
.opacity-70 { opacity: 0.7 !important; }
.opacity-80 { opacity: 0.8 !important; }
.opacity-90 { opacity: 0.9 !important; }

/* 7. Width, Height, Sizing */
.w-full { width: 100% !important; }
.h-full { height: 100% !important; }
.w-px { width: 1px !important; }
.h-8 { height: 2rem !important; }
.h-9 { height: 2.25rem !important; }
.w-9 { width: 2.25rem !important; }
.h-10 { height: 2.5rem !important; }
.w-10 { width: 2.5rem !important; }
.h-12 { height: 3rem !important; }
.w-12 { width: 3rem !important; }
.h-14 { height: 3.5rem !important; }
.w-14 { width: 3.5rem !important; }
.h-16 { height: 4rem !important; }
.w-16 { width: 4rem !important; }
.h-20 { height: 5rem !important; }
.w-20 { width: 5rem !important; }
.h-24 { height: 6rem !important; }
.w-24 { width: 6rem !important; }
.h-28 { height: 7rem !important; }
.h-32 { height: 8rem !important; }
.h-40 { height: 10rem !important; }
.h-56 { height: 14rem !important; }
.h-64 { height: 16rem !important; }
.w-48 { width: 12rem !important; }

@media (min-width: 640px) {
  .sm\:h-48 { height: 12rem !important; }
  .sm\:h-64 { height: 16rem !important; }
  .sm\:h-40 { height: 10rem !important; }
}

.min-h-screen { min-height: 100vh !important; }
.max-h-\[640px\] { max-height: 640px !important; }
.max-w-md { max-width: 28rem !important; }
.max-w-xl { max-width: 36rem !important; }
.max-w-2xl { max-width: 42rem !important; }
.max-w-3xl { max-width: 48rem !important; }
.max-w-5xl { max-width: 64rem !important; }
.max-w-6xl { max-width: 72rem !important; }
.max-w-7xl { max-width: 80rem !important; }

/* 8. Borders & Radii */
.border-b { border-bottom: 1px solid var(--border) !important; }
.border-t { border-top: 1px solid var(--border) !important; }
.border { border: 1px solid var(--border) !important; }
.border-none { border: none !important; }

.rounded-md { border-radius: var(--radius-md) !important; }
.rounded-lg { border-radius: var(--radius-lg) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }
.rounded-2xl { border-radius: var(--radius-2xl) !important; }
.rounded-3xl { border-radius: var(--radius-3xl) !important; }
.rounded-\[2rem\] { border-radius: 2rem !important; }
.rounded-\[2\.5rem\] { border-radius: 2.5rem !important; }
.rounded-\[3rem\] { border-radius: 3rem !important; }
.rounded-full { border-radius: 9999px !important; }

.border-4 {
    border-style: solid;
    border-width: 4px;
} 

.border-card {
    border-color: var(--card);
}

/* 9. Layout Details & Other */
.sticky { position: sticky !important; }
.top-0 { top: 0 !important; }
.z-40 { z-index: 40 !important; }
.z-3 { z-index: 3 !important; }
.absolute { position: absolute !important; }
.relative { position: relative !important; }
.fixed { position: fixed !important; }
.inset-0 { top: 0 !important; bottom: 0 !important; left: 0 !important; right: 0 !important; }
.pointer-events-none { pointer-events: none !important; }
.overflow-hidden { overflow: hidden !important; }
.overflow-y-auto { overflow-y: auto !important; }
.truncate { overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; }
.aspect-video { aspect-ratio: 16 / 9 !important; }
.aspect-square { aspect-ratio: 1 / 1 !important; }

.hidden { display: none !important; }

.line-clamp-2 {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* 10. Hover, Transitions & Transform States */
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !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-shadow {
  transition-property: box-shadow !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;
}
.transition-all {
  transition-property: all !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}

.duration-300 { transition-duration: 300ms !important; }
.duration-200 { transition-duration: 200ms !important; }

.hover\:text-foreground:hover { color: var(--foreground) !important; }
.hover\:bg-muted:hover { background-color: var(--muted) !important; }
.hover\:bg-primary\/90:hover { background-color: oklch(0.7 0.2 35 / 0.9) !important; }
.hover\:border-foreground\/40:hover { border-color: oklch(0.18 0.03 280 / 0.4) !important; }
.hover\:border-foreground\/30:hover { border-color: oklch(0.18 0.03 280 / 0.3) !important; }
.hover\:text-primary:hover { color: var(--primary) !important; }
.hover\:shadow-glow:hover { box-shadow: var(--shadow-glow) !important; }
.hover\:shadow-soft:hover { box-shadow: var(--shadow-soft) !important; }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem) !important; }
.hover\:-translate-y-05:hover { transform: translateY(-0.125rem) !important; }
.hover\:scale-105:hover { transform: scale(1.05) !important; }

.group:hover .group-hover\:text-primary { color: var(--primary) !important; }
.group:hover .group-hover\:scale-110 { transform: scale(1.1) !important; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05) !important; }
.group:hover .group-hover\:shadow-glow { box-shadow: var(--shadow-glow) !important; }

.backdrop-blur-xl { backdrop-filter: blur(24px) !important; -webkit-backdrop-filter: blur(24px) !important; }
.backdrop-blur { backdrop-filter: blur(8px) !important; -webkit-backdrop-filter: blur(8px) !important; }

/* Role/Chip Gradients matching accents */
.bg-gradient-to-br { background-image: linear-gradient(135deg, var(--tw-gradient-stops)) !important; }
.from-coral\/20 { --tw-gradient-from: oklch(0.7 0.2 35 / 0.2) !important; --tw-gradient-to: oklch(0.7 0.2 35 / 0) !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important; }
.to-coral\/5 { --tw-gradient-to: oklch(0.7 0.2 35 / 0.05) !important; }
.from-amber\/20 { --tw-gradient-from: oklch(0.78 0.17 65 / 0.2) !important; --tw-gradient-to: oklch(0.78 0.17 65 / 0) !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important; }
.to-amber\/5 { --tw-gradient-to: oklch(0.78 0.17 65 / 0.05) !important; }
.from-magenta\/20 { --tw-gradient-from: oklch(0.65 0.22 350 / 0.2) !important; --tw-gradient-to: oklch(0.65 0.22 350 / 0) !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important; }
.to-magenta\/5 { --tw-gradient-to: oklch(0.65 0.22 350 / 0.05) !important; }
.from-violet\/20 { --tw-gradient-from: oklch(0.55 0.21 290 / 0.2) !important; --tw-gradient-to: oklch(0.55 0.21 290 / 0) !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important; }
.to-violet\/5 { --tw-gradient-to: oklch(0.55 0.21 290 / 0.05) !important; }

.text-coral { color: var(--coral) !important; }
.text-amber { color: var(--amber) !important; }
.text-magenta { color: var(--magenta) !important; }
.text-violet { color: var(--violet) !important; }

/* Custom range input */
input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
  height: 0.5rem;
  border-radius: 9999px;
  background-color: var(--muted);
  cursor: pointer;
}

/* Reset scrollbars custom classes */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--background);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--muted-foreground);
}

/* Global border reset to warm theme border */
* {
  border-color: var(--border);
}

/* Display and layout wrappers */
.inline-flex { display: inline-flex !important; }
.block { display: block !important; }
.inline-block { display: inline-block !important; }
.cursor-pointer { cursor: pointer !important; }

/* Text alignments */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

/* Input focus glow states to match Tailwind focus:ring */
input:focus, textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 2px oklch(0.7 0.2 35 / 0.2) !important;
}

/* Active outline indicator */
.ring-2.ring-primary {
  outline: 2px solid var(--primary) !important;
  outline-offset: 2px !important;
  border-radius: var(--radius-2xl) !important;
}

/* Active text/border indicators */
.text-background { color: var(--background) !important; }
.border-foreground { border-color: var(--foreground) !important; }
.border-primary\/40 { border-color: oklch(0.7 0.2 35 / 0.4) !important; }
.hover\:border-foreground\/20:hover { border-color: oklch(0.18 0.03 280 / 0.2) !important; }
.border-border-60 { border-color: oklch(0.92 0.015 60 / 0.6) !important; }

/* Dimensions */
.h-2 { height: 0.5rem !important; }
.h-2\.5 { height: 0.625rem !important; }
.h-3 { height: 0.75rem !important; }
.w-14 { width: 3.5rem !important; }

/* Decorative blur */
.blur-3xl {
  filter: blur(64px) !important;
}

/* Premium input range slider custom styling */
input[type="range"] {
  /* -webkit-appearance: none;
  appearance: none; */
  width: 100%;
  height: 6px;
  border-radius: 9999px;
  background: var(--border);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  transition: transform 0.1s;
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Standard HTML overrides for focus borders */
button:focus, input:focus, textarea:focus {
  outline: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}


/* Styling for Contact page */
    .contact-hero {
      position: relative;
      overflow: hidden;
      /* border-radius: var(--radius-2xl); */
      background-image: var(--gradient-sunset);
      color: var(--primary-foreground);
    }
    
    .contact-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--gradient-glow);
      opacity: 0.45;
      pointer-events: none;
    }

    /* Floating branding animations for layout decoration */
    .floating-circle-bg {
      position: absolute;
      border-radius: 50%;
      filter: blur(40px);
      z-index: 0;
      opacity: 0.12;
      pointer-events: none;
    }

    .glass-card {
      background-color: oklch(1 0 0 / 0.85);
      border: 1px solid var(--border);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: var(--radius-2xl);
    }
    
    .dark .glass-card {
      background-color: oklch(0.2 0.035 280 / 0.75);
      border: 1px solid oklch(1 0 0 / 10%);
    }

    /* Custom Floating Labels with Icons */
    .custom-input-group {
      position: relative;
      margin-bottom: 1.5rem;
    }
    
    .custom-input-group input,
    .custom-input-group textarea {
      width: 100%;
      height: 3.6rem;
      padding: 1.35rem 2.75rem 0.35rem 2.85rem;
      font-size: 0.95rem;
      font-family: "DM Sans", sans-serif;
      font-weight: 500;
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      background-color: var(--card);
      color: var(--foreground);
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .custom-input-group textarea {
      height: 8rem;
      padding-top: 1.6rem;
      resize: none;
    }

    .custom-input-group label {
      position: absolute;
      left: 2.85rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: 0.95rem;
      color: var(--muted-foreground);
      pointer-events: none;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .custom-input-group textarea ~ label {
      top: 1.6rem;
      transform: none;
    }

    /* Float label states */
    .custom-input-group input:focus ~ label,
    .custom-input-group input:not(:placeholder-shown) ~ label {
      top: 30%;
      transform: translateY(-50%);
      font-size: 0.72rem;
      color: var(--primary);
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .custom-input-group textarea:focus ~ label,
    .custom-input-group textarea:not(:placeholder-shown) ~ label {
      top: 0.5rem;
      font-size: 0.72rem;
      color: var(--primary);
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .custom-input-group .input-icon {
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted-foreground);
      font-size: 1.15rem;
      pointer-events: none;
      transition: color 0.25s ease;
    }

    .custom-input-group textarea ~ .input-icon {
      top: 1.6rem;
      transform: none;
    }

    .custom-input-group input:focus ~ .input-icon,
    .custom-input-group textarea:focus ~ .input-icon {
      color: var(--primary);
    }

    /* Validated Indicator Checkmark */
    .custom-input-group .valid-indicator {
      position: absolute;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.15rem;
      color: oklch(0.65 0.17 150);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
      transform: translateY(-50%) scale(0.6);
    }

    .custom-input-group textarea ~ .valid-indicator {
      top: 1.6rem;
      transform: none;
    }

    .custom-input-group.valid .valid-indicator {
      opacity: 1;
      transform: translateY(-50%) scale(1);
    }
    
    .custom-input-group.valid textarea ~ .valid-indicator {
      transform: scale(1);
    }

    /* Invalid borders and error messages */
    .custom-input-group.invalid input,
    .custom-input-group.invalid textarea {
      border-color: oklch(0.6 0.24 27) !important;
    }

    .custom-input-group.valid input,
    .custom-input-group.valid textarea {
      border-color: oklch(0.65 0.17 150) !important;
    }

    .validation-error-msg {
      display: block;
      font-size: 0.75rem;
      color: oklch(0.6 0.24 27);
      margin-top: -1.25rem;
      margin-bottom: 1.25rem;
      padding-left: 1rem;
      font-weight: 500;
      opacity: 0;
      height: 0;
      overflow: hidden;
      transition: opacity 0.2s ease, height 0.2s ease;
    }

    .validation-error-msg.visible {
      opacity: 1;
      height: auto;
      margin-bottom: 1.25rem;
    }

    /* Success overlay inside card */
    .success-overlay {
      position: absolute;
      inset: 0;
      background-color: var(--card);
      z-index: 50;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 3rem;
      border-radius: var(--radius-2xl);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .success-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    /* SVG checkmark draw animation */
    .success-checkmark-svg {
      width: 70px;
      height: 70px;
      display: block;
      margin: 0 auto 1.5rem auto;
    }

    .checkmark-circle {
      stroke-dasharray: 166;
      stroke-dashoffset: 166;
      stroke-width: 2;
      stroke-miterlimit: 10;
      stroke: oklch(0.65 0.17 150);
      fill: none;
      animation: stroke-circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    }

    .checkmark-check {
      transform-origin: 50% 50%;
      stroke-dasharray: 48;
      stroke-dashoffset: 48;
      stroke: oklch(0.65 0.17 150);
      stroke-width: 3;
      fill: none;
      animation: stroke-check 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
    }

    @keyframes stroke-circle {
      100% { stroke-dashoffset: 0; }
    }

    @keyframes stroke-check {
      100% { stroke-dashoffset: 0; }
    }


    /* Styling for Terms page */
    .terms-content-card {
      background-color: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-2xl);
      box-shadow: var(--shadow-card);
    }
    
    .terms-section {
      margin-bottom: 2.5rem;
    }
    
    .terms-section:last-of-type {
      margin-bottom: 0;
    }
    
    .terms-section h2 {
      font-size: 1.4rem;
      color: var(--foreground);
      margin-bottom: 1rem;
      font-family: "Space Grotesk", sans-serif;
      font-weight: 700;
    }

    .terms-section p, .terms-section li {
      font-family: "DM Sans", sans-serif;
      font-size: 0.98rem;
      line-height: 1.7;
      color: var(--muted-foreground);
    }
    
    .terms-section ul {
      padding-left: 1.25rem;
      margin-bottom: 1rem;
    }

    .terms-section li {
      margin-bottom: 0.5rem;
    }

    /* login page css  */

    
    .auth-container {
      height: 100vh;
      width: 100vw;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    @media (min-width: 992px) {
      .auth-container {
        flex-direction: row;
      }
      .branding-panel {
        width: 45%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 4rem;
        overflow: hidden;
        flex-shrink: 0;
      }
      .form-panel {
        width: 55%;
        height: 100vh;
        padding: 4rem 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        background-color: var(--background);
        overflow: hidden;
        flex-shrink: 0;
      }
    }

    @media (max-width: 991.98px) {
      .branding-panel {
        padding: 1.5rem 1rem;
        text-align: center;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        height: auto;
        flex-shrink: 0;
      }
      .form-panel {
        flex: 1;
        padding: 1.5rem 1rem;
        background-color: var(--background);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        overflow: hidden;
      }
      .illustration-container {
        display: none !important;
      }
      .glass-card {
        padding: 1.5rem !important;
        margin-bottom: 0 !important;
        max-width: 100%;
      }
    }

    /* Branding panel visual details */
    .branding-panel {
      background-image: var(--gradient-sunset);
      color: var(--primary-foreground);
      position: relative;
    }
    
    .branding-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--gradient-glow);
      opacity: 0.35;
      pointer-events: none;
    }

    /* Custom Floating Labels with Icons */
    .custom-input-group {
      position: relative;
      margin-bottom: 1.5rem;
    }
    
    .custom-input-group input {
      width: 100%;
      height: 3.6rem;
      padding: 1.35rem 2.75rem 0.35rem 2.85rem;
      font-size: 0.95rem;
      font-family: "DM Sans", sans-serif;
      font-weight: 500;
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      background-color: var(--card);
      color: var(--foreground);
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .custom-input-group label {
      position: absolute;
      left: 2.85rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: 0.95rem;
      color: var(--muted-foreground);
      pointer-events: none;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Float label states */
    .custom-input-group input:focus ~ label,
    .custom-input-group input:not(:placeholder-shown) ~ label {
      top: 30%;
      transform: translateY(-50%);
      font-size: 0.72rem;
      color: var(--primary);
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .custom-input-group .input-icon {
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted-foreground);
      font-size: 1.15rem;
      pointer-events: none;
      transition: color 0.25s ease;
    }

    .custom-input-group input:focus ~ .input-icon {
      color: var(--primary);
    }

    /* Validated Indicator Checkmark */
    .custom-input-group .valid-indicator {
      position: absolute;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.15rem;
      color: oklch(0.65 0.17 150); /* green indicator */
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
      transform: translateY(-50%) scale(0.6);
    }

    .custom-input-group.valid .valid-indicator {
      opacity: 1;
      transform: translateY(-50%) scale(1);
    }

    /* Adjust indicators when password toggle is present */
    .custom-input-group .password-toggle-btn ~ .valid-indicator {
      right: 2.85rem;
    }

    /* Password Toggle Button */
    .password-toggle-btn {
      position: absolute;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: var(--muted-foreground);
      cursor: pointer;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      transition: color 0.2s ease;
    }

    .password-toggle-btn:hover {
      color: var(--foreground);
    }

    /* Invalid borders and error messages */
    .custom-input-group.invalid input {
      border-color: oklch(0.6 0.24 27) !important;
    }

    .custom-input-group.valid input {
      border-color: oklch(0.65 0.17 150) !important;
    }

    .validation-error-msg {
      display: block;
      font-size: 0.75rem;
      color: oklch(0.6 0.24 27);
      margin-top: -1.25rem;
      margin-bottom: 1.25rem;
      padding-left: 1rem;
      font-weight: 500;
      opacity: 0;
      height: 0;
      overflow: hidden;
      transition: opacity 0.2s ease, height 0.2s ease;
    }

    .validation-error-msg.visible {
      opacity: 1;
      height: auto;
      margin-bottom: 1.25rem;
    }

    /* SVG Technology Illustration Animations */
    @keyframes orbit-spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    
    .svg-orbit-ring {
      transform-origin: center;
      animation: orbit-spin 25s linear infinite;
    }
    
    .svg-orbit-ring-reverse {
      transform-origin: center;
      animation: orbit-spin 20s linear infinite reverse;
    }

    .svg-float-particle {
      animation: float 5s ease-in-out infinite alternate;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.8; }
      50% { transform: scale(1.15); opacity: 1; }
    }
    
    .svg-pulse-center {
      transform-origin: center;
      animation: pulse 4s ease-in-out infinite;
    }

    /* Glassmorphism Card Container */
    .glass-card {
      background-color: oklch(1 0 0 / 0.8);
      border: 1px solid var(--border);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: var(--radius-2xl);
    }
    
    .dark .glass-card {
      background-color: oklch(0.2 0.035 280 / 0.75);
      border: 1px solid oklch(1 0 0 / 10%);
    }

    /* Floating branding animations for layout decoration */
    .floating-circle-bg {
      position: absolute;
      border-radius: 50%;
      filter: blur(40px);
      z-index: 0;
      opacity: 0.12;
      pointer-events: none;
    }

    /* Custom Checkbox styling */
    .remember-checkbox-container {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
      user-select: none;
      font-size: 0.85rem;
      color: var(--muted-foreground);
    }

    .remember-checkbox-container input {
      display: none;
    }

    .checkbox-indicator {
      width: 18px;
      height: 18px;
      border: 1px solid var(--border);
      border-radius: 4px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--card);
      color: transparent;
      font-size: 11px;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .remember-checkbox-container input:checked ~ .checkbox-indicator {
      background-color: var(--primary);
      border-color: var(--primary);
      color: var(--primary-foreground);
    }

    .remember-checkbox-container:hover .checkbox-indicator {
      border-color: var(--primary);
    }

    /* Password Reset alert */
    .toast-alert {
      display: none;
      animation: slideInUp 0.3s ease;
      background-color: oklch(0.65 0.17 150 / 0.1);
      border: 1px solid oklch(0.65 0.17 150 / 0.25);
      color: oklch(0.65 0.17 150);
      border-radius: var(--radius-md);
      padding: 0.75rem 1rem;
      font-size: 0.85rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
      align-items: center;
      gap: 0.5rem;
    }


    /* Styling for Privacy page */
		.privacy-content-card {
			background-color: var(--card);
			border: 1px solid var(--border);
			border-radius: var(--radius-2xl);
			box-shadow: var(--shadow-card);
		}

		.privacy-section {
			margin-bottom: 2.5rem;
		}

		.privacy-section:last-of-type {
			margin-bottom: 0;
		}

		.privacy-section h2 {
			font-size: 1.4rem;
			color: var(--foreground);
			margin-bottom: 1rem;
			font-family: "Space Grotesk", sans-serif;
			font-weight: 700;
		}

		.privacy-section p,
		.privacy-section li {
			font-family: "DM Sans", sans-serif;
			font-size: 0.98rem;
			line-height: 1.7;
			color: var(--muted-foreground);
		}

		.privacy-section ul {
			padding-left: 1.25rem;
			margin-bottom: 1rem;
		}

		.privacy-section li {
			margin-bottom: 0.5rem;
		}



    
    /* Logo Wall Styles */
    .mentor-logo-card {
      background: #ffffff !important;
      border: 1px solid var(--border) !important;
      border-radius: var(--radius-xl) !important;
      padding: 0.75rem 1.5rem !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      height: 4.5rem !important;
      width: 10.5rem !important;
      transition: all 0.3s ease !important;
      box-shadow: var(--shadow-card) !important;
    }

    .mentor-logo-card:hover {
      transform: translateY(-4px) !important;
      box-shadow: var(--shadow-soft) !important;
      border-color: var(--primary) !important;
    }

    .mentor-logo-img {
      max-height: 100% !important;
      max-width: 100% !important;
      object-fit: contain !important;
      filter: grayscale(10%) opacity(0.95);
      transition: all 0.3s ease !important;
    }

    .mentor-logo-card:hover .mentor-logo-img {
      filter: grayscale(0%) opacity(1);
    }

    /* Affiliation Single Card Styles */
    .affiliation-single-card {
      background: #ffffff !important;
      border: 1px solid var(--border) !important;
      border-radius: 2.5rem !important;
      padding: 3rem 2rem !important;
      box-shadow: var(--shadow-card) !important;
      transition: all 0.3s ease !important;
    }

    .affiliation-single-card:hover {
      box-shadow: var(--shadow-soft) !important;
      border-color: var(--primary) !important;
    }

    .aff-logo-wrapper {
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      flex: 1 1 200px !important;
      max-width: 240px !important;
      height: 140px !important;
      transition: all 0.3s ease !important;
    }

    .aff-single-img {
      max-height: 100% !important;
      max-width: 100% !important;
      object-fit: contain !important;
      filter: grayscale(10%) opacity(0.95);
      transition: all 0.3s ease !important;
    }

    .aff-logo-wrapper:hover .aff-single-img {
      filter: grayscale(0%) opacity(1);
      transform: scale(1.05) !important;
    }