/* ========================================
   GHAYAH ACADEMY - Pure CSS (No Tailwind)
   ======================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&display=swap");

/* ========== COLOR VARIABLES ========== */
:root {
  /* Primary Colors - Deep trust blue */
  --color-primary: #1e40af;
  --color-primary-50: #ffffffff;
  --color-primary-100: #dbeafe;
  --color-primary-200: #bfdbfe;
  --color-primary-300: #93c5fd;
  --color-primary-400: #60a5fa;
  --color-primary-500: #3b82f6;
  --color-primary-600: #2563eb;
  --color-primary-700: #1d4ed8;
  --color-primary-800: #1e40af;
  --color-primary-900: #1e3a8a;

  /* Secondary Colors - Professional gray */
  --color-secondary: #64748b;
  --color-secondary-50: #f8fafc;
  --color-secondary-100: #f1f5f9;
  --color-secondary-200: #e2e8f0;
  --color-secondary-300: #cbd5e1;
  --color-secondary-400: #94a3b8;
  --color-secondary-500: #64748b;
  --color-secondary-600: #475569;
  --color-secondary-700: #334155;
  --color-secondary-800: #1e293b;
  --color-secondary-900: #0f172a;

  /* Accent Colors - Warm amber */
  --color-accent: #f59e0b;
  --color-accent-50: #fffbeb;
  --color-accent-100: #fef3c7;
  --color-accent-200: #fde68a;
  --color-accent-300: #fcd34d;
  --color-accent-400: #fbbf24;
  --color-accent-500: #f59e0b;
  --color-accent-600: #d97706;
  --color-accent-700: #b45309;
  --color-accent-800: #92400e;
  --color-accent-900: #78350f;

  /* Background & Surface */
  --color-background: #ffffff;
  --color-surface: #f8fafc;

  /* Text Colors */
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-tertiary: #64748b;

  /* Semantic Colors */
  --color-success: #10b981;
  --color-success-50: #d1fae5;
  --color-success-100: #a7f3d0;
  --color-success-500: #10b981;
  --color-success-600: #059669;
  --color-success-700: #047857;

  --color-warning: #f59e0b;
  --color-warning-50: #fffbeb;
  --color-warning-100: #fef3c7;
  --color-warning-500: #f59e0b;
  --color-warning-600: #d97706;

  --color-error: #ef4444;
  --color-error-50: #fee2e2;
  --color-error-100: #fecaca;
  --color-error-200: #fecaca;
  --color-error-500: #ef4444;
  --color-error-600: #dc2626;
  --color-error-700: #b91c1c;

  /* Border Colors */
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;

  /* Shadows */
  --shadow-card: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-cta: 0 4px 14px rgba(30, 64, 175, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);

  /* Transitions */
  --transition-fast: 200ms;
  --transition-base: 300ms;
  --transition-slow: 400ms;
  --transition-reveal: 600ms;
}

/* ========== RESET & BASE STYLES ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background-color: var(--color-background);
  color: var(--color-text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11", "ss01";
  margin: 0;
  line-height: inherit;
}

/* Typography */
h1,
h3,
h4,
h5,
h6 {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  margin: 0;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 4.5rem;
    line-height: 1;
  }
}

h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

@media (min-width: 768px) {
  h2 {
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  h2 {
    font-size: 3.75rem;
    line-height: 1;
  }
}

h3 {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

@media (min-width: 768px) {
  h3 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

h4 {
  font-size: 1.5rem;
  line-height: 2rem;
}

@media (min-width: 768px) {
  h4 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

h5 {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

@media (min-width: 768px) {
  h5 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

h6 {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

@media (min-width: 768px) {
  h6 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

p {
  font-size: 1rem;
  line-height: 1.625rem;
  margin: 0;
}

@media (min-width: 768px) {
  p {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

a {
  color: black;
  text-decoration: none;
  transition: color var(--transition-base),
    background-color var(--transition-base), border-color var(--transition-base),
    text-decoration-color var(--transition-base), fill var(--transition-base),
    stroke var(--transition-base);
}

/* Elements */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

button,
[role="button"] {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

/* ========== BUTTON STYLES ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: inherit;
}

.btn:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  background-color: var(--color-primary-700);
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  border: 1px solid var(--color-border);
  background-color: var(--color-secondary-50);
  color: var(--color-text-primary);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-100);
}

.btn-accent {
  background-color: var(--color-accent);
  color: white;
  box-shadow: var(--shadow-cta);
}

.btn-accent:hover {
  background-color: var(--color-accent-600);
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: white;
}

/* ========== CARD STYLES ========== */
.card {
  border-radius: 0.75rem;
  background-color: white;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .card {
    padding: 2rem;
  }
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
}

/* ========== INPUT STYLES ========== */
.input {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--color-border);
  background-color: white;
  padding: 0.75rem 1rem;
  color: var(--color-text-primary);
  font-family: inherit;
  transition: all var(--transition-base);
}

.input::placeholder {
  color: var(--color-text-tertiary);
}

.input:focus {
  border-color: transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--color-primary-500);
}

.input-error {
  border-color: var(--color-error);
}

.input-error:focus {
  box-shadow: 0 0 0 2px var(--color-error-500);
}

/* ========== LAYOUT UTILITIES ========== */
.container-custom {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container-custom {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-custom {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

/* ========== DISPLAY & POSITION ========== */
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.sticky {
  position: sticky;
}
.static {
  position: static;
}

.inset-0 {
  inset: 0px;
}
.top-0 {
  top: 0px;
}
.right-0 {
  right: 0px;
}
.bottom-0 {
  bottom: 0px;
}
.left-0 {
  left: 0px;
}
.top-1\/2 {
  top: 50%;
}
.left-1\/2 {
  left: 50%;
}
.top-1\/3 {
  top: 33.333333%;
}
.top-20 {
  top: 5rem;
}
.top-4 {
  top: 1rem;
}
.bottom-8 {
  bottom: 2rem;
}
.bottom-32 {
  bottom: 8rem;
}
.left-4 {
  left: 1rem;
}
.left-16 {
  left: 4rem;
}
.left-1\/4 {
  left: 25%;
}
.right-4 {
  right: 1rem;
}
.right-10 {
  right: 2.5rem;
}

/* Z-index */
.z-10 {
  z-index: 10;
}
.z-50 {
  z-index: 50;
}

/* ========== FLEXBOX ========== */
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink-0 {
  flex-shrink: 0;
}

.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.items-end {
  align-items: flex-end;
}
.items-stretch {
  align-items: stretch;
}

.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}

.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-12 {
  gap: 3rem;
}

/* Spacing between adjacent children */
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 0.25rem;
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 0.5rem;
}
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 0.75rem;
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 1rem;
}
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 1.5rem;
}
.space-x-8 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 2rem;
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.5rem;
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.75rem;
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1rem;
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1.5rem;
}

/* ========== GRID ========== */
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.col-span-full {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

/* ========== SIZING ========== */
.w-full {
  width: 100%;
}
.w-auto {
  width: auto;
}
.h-full {
  height: 100%;
}

.w-1 {
  width: 0.25rem;
}
.w-2 {
  width: 0.5rem;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-7 {
  width: 1.75rem;
}
.w-8 {
  width: 2rem;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-16 {
  width: 4rem;
}
.w-20 {
  width: 5rem;
}
.w-24 {
  width: 6rem;
}
.w-32 {
  width: 8rem;
}

.h-1 {
  height: 0.25rem;
}
.h-2 {
  height: 0.5rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-7 {
  height: 1.75rem;
}
.h-8 {
  height: 2rem;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-16 {
  height: 4rem;
}
.h-20 {
  height: 5rem;
}
.h-24 {
  height: 6rem;
}
.h-32 {
  height: 8rem;
}
.h-48 {
  height: 12rem;
}
.h-56 {
  height: 14rem;
}
.h-64 {
  height: 16rem;
}
.h-96 {
  height: 24rem;
}

.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
  color: white;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-\[80\%\] {
  max-width: 80%;
}

.min-h-screen {
  min-height: 100vh;
}
.min-h-\[60vh\] {
  min-height: 60vh;
}
.max-h-\[90vh\] {
  max-height: 90vh;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}
.aspect-video {
  aspect-ratio: 16 / 9;
}

/* ========== MARGIN & PADDING ========== */
.m-0 {
  margin: 0;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.site-logo {
  width: 100px;
  height: 50px;
  margin-bottom: 100px;
}
.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-16 {
  margin-top: 4rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}

.ml-2 {
  margin-left: 0.5rem;
}
.ml-4 {
  margin-left: 1rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}

.p-0 {
  padding: 0;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pt-4 {
  padding-top: 1rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pt-32 {
  padding-top: 8rem;
}

.pb-4 {
  padding-bottom: 1rem;
}
.pb-12 {
  padding-bottom: 3rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pb-20 {
  padding-bottom: 5rem;
}

.pl-8 {
  padding-left: 2rem;
}
.pl-12 {
  padding-left: 3rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pr-12 {
  padding-right: 3rem;
}
.pr-14 {
  padding-right: 3.5rem;
}

@media (min-width: 768px) {
  .md\:mt-0 {
    margin-top: 0;
  }
  .md\:mt-20 {
    margin-top: 5rem;
  }
  .md\:pb-24 {
    padding-bottom: 6rem;
  }
  .md\:pb-28 {
    padding-bottom: 7rem;
  }
  .md\:pb-32 {
    padding-bottom: 8rem;
  }
  .md\:pt-40 {
    padding-top: 10rem;
  }
}

/* ========== TEXT STYLES ========== */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.leading-relaxed {
  line-height: 1.625;
}
.whitespace-nowrap {
  white-space: nowrap;
}

@media (min-width: 768px) {
  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .md\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:text-right {
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .lg\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
}

/* ========== COLORS ========== */
.bg-background {
  background-color: var(--color-background);
}
.bg-surface {
  background-color: var(--color-surface);
}
.bg-white {
  background-color: white;
}
.bg-black {
  background-color: black;
}

.bg-primary-50 {
  background-color: var(--color-primary-50);
}
.bg-primary-100 {
  background-color: var(--color-primary-100);
}
.bg-primary-500 {
  background-color: var(--color-primary-500);
}
.bg-primary-600 {
  background-color: var(--color-primary-600);
}

.bg-secondary-100 {
  background-color: var(--color-secondary-100);
}
.bg-secondary-200 {
  background-color: var(--color-secondary-200);
}
.bg-secondary-900 {
  background-color: var(--color-secondary-900);
}

.bg-accent-50 {
  background-color: var(--color-accent-50);
}
.bg-accent-100 {
  background-color: var(--color-accent-100);
}
.bg-accent-500 {
  background-color: var(--color-accent-500);
}
.bg-accent-600 {
  background-color: var(--color-accent-600);
}

.bg-success-50 {
  background-color: var(--color-success-50);
}
.bg-success-100 {
  background-color: var(--color-success-100);
}
.bg-success-500 {
  background-color: var(--color-success-500);
}
.bg-success-600 {
  background-color: var(--color-success-600);
}

.bg-error-100 {
  background-color: var(--color-error-100);
}
.bg-error-600 {
  background-color: var(--color-error-600);
}

.bg-warning-100 {
  background-color: var(--color-warning-100);
}

.bg-white\/20 {
  background-color: rgba(255, 255, 255, 0.2);
}
.bg-white\/90 {
  background-color: rgba(255, 255, 255, 0.9);
}
.bg-white\/95 {
  background-color: rgba(255, 255, 255, 0.95);
}
.bg-black\/90 {
  background-color: rgba(0, 0, 0, 0.9);
}
.bg-secondary-900\/80 {
  background-color: rgba(15, 23, 42, 0.8);
}

.bg-primary-400\/20 {
  background-color: rgba(96, 165, 250, 0.2);
}
.bg-accent-300\/30 {
  background-color: rgba(252, 211, 77, 0.3);
}
.bg-accent-400\/20 {
  background-color: rgba(251, 191, 36, 0.2);
}

/* Text Colors */
.text-text-primary {
  color: var(--color-text-primary);
}
.text-text-secondary {
  color: var(--color-text-secondary);
}
.text-text-tertiary {
  color: var(--color-text-tertiary);
}
.text-white {
  color: white;
}

.text-primary-300 {
  color: var(--color-primary-300);
}
.text-primary-400 {
  color: var(--color-primary-400);
}
.text-primary-500 {
  color: var(--color-primary-500);
}
.text-primary-600 {
  color: var(--color-primary-600);
}
.text-primary-700 {
  color: var(--color-primary-700);
}
.text-primary-800 {
  color: var(--color-primary-800);
}

.text-secondary-300 {
  color: var(--color-secondary-300);
}
.text-secondary-400 {
  color: white;
}
.text-secondary-600 {
  color: var(--color-secondary-600);
}

.text-accent-500 {
  color: var(--color-accent-500);
}
.text-accent-600 {
  color: var(--color-accent-600);
}
.text-accent-700 {
  color: var(--color-accent-700);
}
.text-accent-800 {
  color: var(--color-accent-800);
}

.text-success-500 {
  color: var(--color-success-500);
}
.text-success-600 {
  color: var(--color-success-600);
}
.text-success-700 {
  color: var(--color-success-700);
}

.text-error-600 {
  color: var(--color-error-600);
}
.text-warning-600 {
  color: var(--color-warning-600);
}

/* Border */
.border {
  border: 1px solid var(--color-border);
}
.border-t {
  border-top: 1px solid var(--color-border);
}
.border-b {
  border-bottom: 1px solid var(--color-border);
}

.border-border {
  border-color: var(--color-border);
}
.border-white {
  border-color: white;
}
.border-secondary-700 {
  border-color: var(--color-secondary-700);
}

.hover\:border-primary-300:hover {
  border-color: var(--color-primary-300);
}
.hover\:border-primary-500:hover {
  border-color: var(--color-primary-500);
}
.hover\:border-primary-600:hover {
  border-color: var(--color-primary-600);
}

/* Hover Backgrounds */
.hover\:bg-primary-50:hover {
  background-color: var(--color-primary-50);
}
.hover\:bg-primary-100:hover {
  background-color: var(--color-primary-100);
}
.hover\:bg-primary-600:hover {
  background-color: var(--color-primary-600);
}
.hover\:bg-primary-700:hover {
  background-color: var(--color-primary-700);
}
.hover\:bg-secondary-100:hover {
  background-color: var(--color-secondary-100);
}
.hover\:bg-surface:hover {
  background-color: var(--color-surface);
}
.hover\:bg-white:hover {
  background-color: white;
}
.hover\:bg-white\/10:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Hover Text */
.hover\:text-primary-200:hover {
  color: var(--color-primary-200);
}
.hover\:text-primary-600:hover {
  color: var(--color-primary-600);
}
.hover\:text-primary-800:hover {
  color: var(--color-primary-800);
}
.hover\:text-white:hover {
  color: white;
}
.hover\:text-accent-400:hover {
  color: var(--color-accent-400);
}
.hover\:underline:hover {
  text-decoration-line: underline;
}

/* ========== BORDER RADIUS ========== */
.rounded {
  border-radius: 0.25rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-t-xl {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

/* ========== SHADOWS ========== */
.shadow-card {
  box-shadow: var(--shadow-card);
}
.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.hover\:shadow-card-hover:hover {
  box-shadow: var(--shadow-card-hover);
}

/* ========== OVERFLOW & SCROLL ========== */
.overflow-hidden {
  overflow: hidden;
}
.overflow-y-auto {
  overflow-y: auto;
}
.scroll-smooth {
  scroll-behavior: smooth;
}

/* ========== TRANSFORMS ========== */
.transform {
  transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0))
    rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0))
    skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1))
    scaleY(var(--tw-scale-y, 1));
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0))
    rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0))
    skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1))
    scaleY(var(--tw-scale-y, 1));
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0))
    rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0))
    skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1))
    scaleY(var(--tw-scale-y, 1));
}

.-translate-x-1\.5 {
  --tw-translate-x: -0.375rem;
  transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0))
    rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0))
    skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1))
    scaleY(var(--tw-scale-y, 1));
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}
.hover\:scale-110:hover {
  transform: scale(1.1);
}

/* ========== OPACITY ========== */
.opacity-0 {
  opacity: 0;
}
.opacity-5 {
  opacity: 0.05;
}
.opacity-75 {
  opacity: 0.75;
}
.opacity-90 {
  opacity: 0.9;
}
.sko {
  color: inherit;
}
/* ========== TRANSITIONS ========== */
.transition {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter;
  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;
}

.transition-colors {
  transition-property: background-color, border-color, text-decoration-color,
    fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  color: inherit;
}

.transition-opacity {
  transition-property: opacity;
  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;
}

.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.delay-100 {
  transition-delay: 100ms;
}
.delay-200 {
  transition-delay: 200ms;
}
.delay-300 {
  transition-delay: 300ms;
}
.delay-500 {
  transition-delay: 500ms;
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== FILTERS ========== */
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale);
}
.blur {
  filter: blur(8px);
}

/* ========== BACKDROP ========== */
.backdrop-filter {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.backdrop-blur-custom {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* ========== CURSOR ========== */
.cursor-pointer {
  cursor: pointer;
}
.cursor-not-allowed {
  cursor: not-allowed;
}

/* ========== ANIMATIONS ========== */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.animate-bounce {
  animation: bounce 1s infinite;
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.animate-slide-up {
  animation: slideUp 600ms ease-out;
}
.animate-fade-up {
  animation-name: slideUp;
  animation-duration: 600ms;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

.delay-1 {
  animation-delay: 0.1s !important;
}
.delay-2 {
  animation-delay: 0.2s !important;
}
.delay-3 {
  animation-delay: 0.3s !important;
}
.delay-4 {
  animation-delay: 0.4s !important;
}
.delay-5 {
  animation-delay: 0.5s !important;
}
.delay-6 {
  animation-delay: 0.6s !important;
}

/* ========== BACKGROUNDS & PATTERNS ========== */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-primary-50 {
  --tw-gradient-from: var(--color-primary-50);
  --tw-gradient-to: rgb(239 246 255 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-primary-400 {
  --tw-gradient-from: var(--color-primary-400);
  --tw-gradient-to: rgb(96 165 250 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-primary-500 {
  --tw-gradient-from: var(--color-primary-500);
  --tw-gradient-to: rgb(59 130 246 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-primary-600 {
  --tw-gradient-from: var(--color-primary-600);
  --tw-gradient-to: rgb(37 99 235 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-primary-900\/50 {
  --tw-gradient-from: rgb(30 58 138 / 0.5);
  --tw-gradient-to: rgb(30 58 138 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-accent-400 {
  --tw-gradient-from: var(--color-accent-400);
  --tw-gradient-to: rgb(251 191 36 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-accent-500 {
  --tw-gradient-from: var(--color-accent-500);
  --tw-gradient-to: rgb(245 158 11 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-accent-600 {
  --tw-gradient-from: var(--color-accent-600);
  --tw-gradient-to: rgb(217 119 6 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-accent-900\/50 {
  --tw-gradient-from: rgb(120 53 15 / 0.5);
  --tw-gradient-to: rgb(120 53 15 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-success-500 {
  --tw-gradient-from: var(--color-success-500);
  --tw-gradient-to: rgb(16 185 129 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-success-600 {
  --tw-gradient-from: var(--color-success-600);
  --tw-gradient-to: rgb(5 150 105 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-primary-400 {
  --tw-gradient-to: var(--color-primary-400);
}
.to-primary-600 {
  --tw-gradient-to: var(--color-primary-600);
}
.to-primary-700 {
  --tw-gradient-to: var(--color-primary-700);
}
.to-primary-800 {
  --tw-gradient-to: var(--color-primary-800);
}

.to-accent-400 {
  --tw-gradient-to: var(--color-accent-400);
}
.to-accent-50 {
  --tw-gradient-to: var(--color-accent-50);
}
.to-accent-600 {
  --tw-gradient-to: var(--color-accent-600);
}
.to-accent-700 {
  --tw-gradient-to: var(--color-accent-700);
}

.to-success-600 {
  --tw-gradient-to: var(--color-success-600);
}
.to-success-700 {
  --tw-gradient-to: var(--color-success-700);
}
.to-transparent {
  --tw-gradient-to: transparent;
}

.text-gradient-primary {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
  --tw-gradient-from: var(--color-primary-600);
  --tw-gradient-to: rgb(37 99 235 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: var(--color-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pattern-dots-dark {
  background-image: radial-gradient(
    rgba(15, 23, 42, 0.06) 1px,
    transparent 1px
  );
  background-size: 10px 10px;
}

.pattern-dots-blue {
  background-image: radial-gradient(
    rgba(59, 130, 246, 0.12) 1px,
    transparent 0.5px
  );
  background-size: 12px 12px;
}

/* ========== OBJECT FIT ========== */
.object-cover {
  object-fit: cover;
}

/* ========== RESPONSIVE VISIBILITY ========== */
.visible {
  visibility: visible;
}

@media (max-width: 767px) {
  .md\:hidden {
    display: none;
  }
  .md\:block {
    display: block;
  }
  .md\:flex {
    display: flex;
  }
}

@media (min-width: 768px) {
  .md\:block {
    display: block;
  }
  .md\:hidden {
    display: none;
  }
  .md\:flex {
    display: flex;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:order-1 {
    order: 1;
  }
  .md\:order-2 {
    order: 2;
  }
  .md\:w-auto {
    width: auto;
  }
  .md\:h-20 {
    height: 5rem;
  }
  .md\:gap-8 {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .lg\:w-80 {
    width: 20rem;
  }
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:gap-16 {
    gap: 4rem;
  }
}

/* ========== UTILITIES ========== */
.rtl\:space-x-reverse:where([dir="rtl"], [dir="rtl"] *)
  > :not([hidden])
  ~ :not([hidden]) {
  --tw-space-x-reverse: 1;
}

/* Group Hover States */
.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}
.group:hover .group-hover\:text-primary-600 {
  color: var(--color-primary-600);
}
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}
.group[open] .group-open\:rotate-180 {
  transform: rotate(180deg);
}

/* Focus States */
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px var(--color-ring-offset-color, white),
    0 0 0 calc(2px + 0px) var(--color-primary-500);
}
.focus\:ring-primary-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--color-primary-500);
}
.focus\:ring-accent-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--color-accent-500);
}

/* ========== SITE SPECIFIC ========== */
.site-logo {
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0;
  position: relative;
}

nav {
  position: absolute !important;
  width: 100% !important;
  z-index: 888888 !important;
  background: white !important;
  -webkit-backdrop-filter: blur(10px) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: none !important;
}

nav .site-logo {
  max-width: none !important;
  height: 40px !important;
  width: auto !important;
  object-fit: contain !important;
}

nav a {
  color: black !important;
  gap: 18px !important;
}

nav a:hover {
  color: black !important;
}

/* تأكد أن جميع الروابط في nav بالون الأسود بغض النظر عن الفئات الأخرى */
nav a.text-text-secondary,
nav a.text-primary-600 {
  color: black !important;
  gap: 18px !important;
}

nav button {
  color: black !important;
}

@media (max-width: 640px) {
  nav .site-logo {
    height: 100px !important;
    margin-bottom: -38px !important;
    gap: 18px !important;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  nav .site-logo {
    height: 120px !important;
    gap: 18px !important;
  }
}

@media (min-width: 1024px) {
  nav .site-logo {
    height: 140px !important;
    gap: 18px !important;
  }
}

.site-logo--pinned {
  position: fixed !important;
  top: 18px;
  right: 24px;
  pointer-events: auto;
  gap: 18px !important;
}

@media (max-width: 768px) {
  .site-logo--pinned {
    top: 10px;
    right: 12px;
    height: 64px;
  }
}

#site-logo-portal {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  z-index: 99999 !important;
  pointer-events: auto !important;
  padding: 12px 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: transparent !important;
}

#site-logo-portal .portal-link {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  text-decoration: none !important;
}

#site-logo-portal .portal-text {
  color: white !important;
  font-weight: bold !important;
  font-size: 14px !important;
  white-space: nowrap !important;
  display: none !important;
}

#fixed-logo {
  position: fixed;
  top: 15px;
  right: 20px;
  pointer-events: none;
}

@media (max-width: 768px) {
  #site-logo-portal {
    top: 0 !important;
    right: 0 !important;
    padding: 8px 12px !important;
  }
  #site-logo-portal .site-logo {
    height: 80px !important;
  }
  #site-logo-portal .portal-text {
    display: none !important;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  #site-logo-portal .portal-text {
    display: inline !important;
    font-size: 13px !important;
  }
}

#site-logo-portal .site-logo,
.fixed-logo-img {
  height: 100px !important;
  width: auto !important;
}

@media (min-width: 641px) and (max-width: 1023px) {
  #site-logo-portal .site-logo,
  .fixed-logo-img {
    height: 120px !important;
  }
}

@media (min-width: 1024px) {
  #site-logo-portal .site-logo,
  .fixed-logo-img {
    height: 140px !important;
    z-index: 99999 !important;
  }
  #site-logo-portal .portal-text {
    display: inline !important;
    font-size: 15px !important;
  }
}

.site-logo.site-logo--pinned {
  display: none !important;
}

/* Page-specific logo positioning */
/* Ensure logo isn't glued to the very top on most pages */
body .site-logo {
  margin-top: 12px !important;
  position: relative !important;
}

/* Programs page: lower the logo so it sits below the hero/header */
body.page-programs .site-logo {
  margin-top: 80px !important;
  position: relative !important;
}

/* Student success stories page: pin the logo to the top-right (fixed) */
body.page-stories .site-logo {
  position: fixed !important;
  top: 18px !important;
  right: 24px !important;
  z-index: 99999 !important;
}

/* If using the portal/pinned variants, ensure page-stories shows it */
body.page-stories #site-logo-portal {
  display: flex !important;
}

/* Ensure stories page logo matches the smaller size used in About/nav */
/* Match logo sizing on About and Stories pages to Programs page responsive sizes */
body.page-about .site-logo,
body.page-stories .site-logo,
body.page-stories #site-logo-portal .site-logo,
body.page-stories #site-logo-portal img,
body.page-stories .fixed-logo-img {
  /* default small size to match nav default */
  height: 40px !important;
  max-height: 40px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain !important;
}

@media (max-width: 640px) {
  body.page-about .site-logo,
  body.page-stories .site-logo,
  body.page-stories #site-logo-portal .site-logo,
  body.page-stories #site-logo-portal img,
  body.page-stories .fixed-logo-img {
    height: 100px !important;
    max-height: 100px !important;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  body.page-about .site-logo,
  body.page-stories .site-logo,
  body.page-stories #site-logo-portal .site-logo,
  body.page-stories #site-logo-portal img,
  body.page-stories .fixed-logo-img {
    height: 120px !important;
    max-height: 120px !important;
  }
}

@media (min-width: 1024px) {
  body.page-about .site-logo,
  body.page-stories .site-logo,
  body.page-stories #site-logo-portal .site-logo,
  body.page-stories #site-logo-portal img,
  body.page-stories .fixed-logo-img {
    height: 140px !important;
    max-height: 140px !important;
  }
}

/* About page: give the logo a modest drop so it doesn't stick to top */
body.page-about .site-logo {
  margin-top: 80px !important;
  position: relative !important;
  height: 80px !important;
  max-height: 80px !important;
  width: auto !important;
}
/* Stronger selector to override other nav rules when present */
body.page-about nav .site-logo {
  height: 80px !important;
  max-height: 80px !important;
  width: auto !important;
}
@media (min-width: 1024px) {
  body.page-about .site-logo,
  body.page-about nav .site-logo {
    height: 140px !important;
    max-height: 140px !important;
  }
}
.site-logoo {
  border-radius: 50%;
}
.img-background {
  position: absolute;
  left: 90px;
  width: 170vh;
  top: 45px;
  height: auto;
  z-index: -1;
}
@media (min-width: 1025px) and (max-width: 1280px) {
  /* اكتب ستايل اللابتوب هنا */
}
@media (min-width: 768px) and (max-width: 1024px) {
  /* اكتب ستايل التابلت هنا */
}
@media (max-width: 768px) {
  .img-background img {
    display: none; /* إخفاء الصورة الأصلية */
  }

  .img-background {
    background-image: url("../img/_الواجهة 400 (1)_page-0001.jpg");
    width: 100vh;
    height: 90vh;
    left: 19px;
    top: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    /* z-index: 122222222222222222222222; */
  }
}

.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gradient-overlay {
  background: transparent !important;
}

.text-shadow {
  text-shadow: 0 2px 4px rgba(114, 2, 2, 0);
}

/* Hero section: no top padding since logo is fixed overlay */
.hero-section {
  padding-top: 0 !important;
}

/* ========== ORDER ========== */
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}

/* ========== RESPONSIVE DISPLAY ========== */
.sm\:flex-row {
  flex-direction: row;
}

.sm\:items-center {
  align-items: center;
}

.up {
  position: fixed;
  bottom: 30px;
  right: -50px;
  background-color: var(--color-primary-700);
  padding: 20px 15px;
  color: white;
  border-radius: 15px;
  transition: 0.3s;
  cursor: pointer;
}
.up.show {
  right: 30px;
}
.up.show:hover {
  background-color: var(--color-primary-300);
}

.Detail {
  background-color: white;
  padding: 20px;
  font-size: 18px;
  border-radius: 10px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
}
.Detail:hover {
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  transition: all 0.3s ease;
  background-color: #001effff;
  color: white;
}
/* End of clean.css */
