/* CSS Variables */
:root {
  --primary-blue: #1e293b;
  --primary-blue-light: #334155;
  --teal: #7c3aed;
  --teal-light: #8b5cf6;
  --teal-dark: #6d28d9;
  --teal-bg: #ede9fe;
  --teal-bg-mid: #c4b5fd;
  --teal-bg-light: #ddd6fe;
  --coral: #06b6d4;
  --coral-light: #22d3ee;
  --coral-dark: #0891b2;
  --coral-bg: #cffafe;
  --coral-bg-mid: #67e8f9;
  --coral-bg-light: #a5f3fc;
  --brown: #f59e0b;
  --brown-light: #fde68a;
  --brown-warm: #fef3c7;
  --brown-dark: #d97706;
  --brown-mid: #fbbf24;
  --brown-warm-bg: #fef9ee;
  --light-gray: #f8fafc;
  --light-gray-alt: #f1f5f9;
  --medium-gray: #e2e8f0;
  --dark-gray: #1e293b;
  --footer-dark: #0f172a;
  --placeholder: #a0aec0;
  --error: #ef4444;
  --success: #4caf50;
  --success-dark: #2e7d32;
  --success-bg: #e8f5e9;
  --white: #ffffff;

  /* Transparent palette colors */
  --teal-10: rgba(124, 58, 237, 0.1);
  --teal-08: rgba(124, 58, 237, 0.08);
  --teal-15: rgba(124, 58, 237, 0.15);
  --coral-10: rgba(6, 182, 212, 0.1);
  --coral-08: rgba(6, 182, 212, 0.08);
  --brown-10: rgba(245, 158, 11, 0.1);
  --error-05: rgba(239, 68, 68, 0.05);
  --error-10: rgba(239, 68, 68, 0.1);

  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);

  /* Spacing variables (used by projects.css & legal.css) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 48px;
  --space-xl: 80px;

  /* Alias variables (used by projects.css & legal.css) */
  --primary: #1e293b;
  --secondary: #7c3aed;
  --accent: #06b6d4;
  --gray: #64748b;
  --light: #f8fafc;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

h2 {
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
}

h2:after {
  content: "";
  position: absolute;
  width: 60%;
  height: 4px;
  background: var(--teal);
  bottom: -10px;
  left: 0;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

a {
  text-decoration: none;
  color: var(--teal);
  transition: var(--transition);
}

a:hover {
  color: var(--teal-light);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--teal-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* On light backgrounds, secondary button reverts to dark */
.cta-section .btn-secondary,
.featured-projects .btn-secondary,
.partners-section .btn-secondary {
  color: var(--teal);
  border-color: var(--teal);
}

.cta-section .btn-secondary:hover,
.featured-projects .btn-secondary:hover,
.partners-section .btn-secondary:hover {
  background-color: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-coral {
  background-color: var(--coral);
  color: var(--white);
}

.btn-coral:hover {
  background-color: var(--coral-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
}

nav ul {
  display: flex;
  list-style: none;
}

nav li {
  margin-left: 30px;
}

nav a {
  color: var(--dark-gray);
  font-weight: 500;
  font-family: "Inter", sans-serif;
  position: relative;
  padding: 5px 0;
}

nav a:hover,
nav a.active {
  color: var(--teal);
}

nav a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--teal);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}

nav a:hover:after,
nav a.active:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
}

/* Legacy alt-nav classes kept for backwards compat — now mirrors main nav */

/* Hero Stats Strip */
.hero-stats-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 50px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 20px 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

@media (max-width: 576px) {
  .hero-stats-strip {
    padding: 16px 20px;
    gap: 10px;
  }
  .hero-stat { padding: 0 15px; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stat-divider { display: none; }
}

/* Hero Section */
.hero h1 {
  color: var(--white);
  font-size: 3.2rem;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}

.btn-brown {
  background-color: var(--brown);
  color: var(--white);
}

.btn-brown:hover {
  background-color: var(--brown-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-brown-light {
  background-color: var(--brown-light);
  color: var(--dark-gray);
}

.btn-brown-light:hover {
  background-color: var(--brown-mid);
  color: var(--dark-gray);
  transform: translateY(-2px);
}

/* Update hero section with brown accent */
.hero {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-blue-light) 70%,
    var(--brown) 100%
  );
  color: var(--white);
  padding: 180px 0 100px;
  margin-top: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Hero background image overlay */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1620712943543-bcc4688e7485?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center top;
  opacity: 0.1;
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, var(--brown-light), transparent);
  border-radius: 50%;
  transform: translate(30%, -30%);
  opacity: 0.1;
  z-index: 0;
}

/* Add brown accents to focus cards */
.focus-card:nth-child(1) {
  border-top-color: var(--teal);
}

.focus-card:nth-child(2) {
  border-top-color: var(--coral);
}

.focus-card:nth-child(3) {
  border-top-color: var(--brown);
}

/* Brown accent sections */
.brown-section {
  background-color: var(--brown-warm);
  padding: 80px 0;
}

/* Section Common Styles */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

/* Page Hero - shared across all inner pages */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-blue-light) 70%,
    var(--brown) 100%
  );
  color: var(--white);
  padding: 160px 0 80px;
  margin-top: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Page hero background image layer */
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  font-size: 3.2rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.hero-subtitle,
.page-subtitle {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  color: var(--white);
}

.section-title h2:after {
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
}

.section-title p {
  max-width: 700px;
  margin: 20px auto 0;
}

/* Focus Areas Preview */
.focus-areas-preview {
  padding: 100px 0;
  background-color: var(--white);
}

.focus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.focus-card {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.focus-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--teal);
}

.focus-icon {
  font-size: 2.5rem;
  color: var(--teal);
  margin-bottom: 20px;
}

.focus-card h3 {
  margin-bottom: 15px;
}

.focus-card:nth-child(1) .focus-icon {
  color: var(--teal);
}

.focus-card:nth-child(2) .focus-icon {
  color: var(--coral);
}

.focus-card:nth-child(3) .focus-icon {
  color: var(--brown);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--teal-08) 0%,
    var(--coral-08) 100%
  );
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: linear-gradient(160deg, var(--footer-dark) 0%, var(--primary-blue) 50%, var(--footer-dark) 100%);
  color: var(--white);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--brown), var(--coral));
}

.footer-main {
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

/* Brand column */
.footer-brand {
  padding-right: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

/* Footer columns */
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--teal-light);
  transform: translateX(4px);
}

/* Contact column */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--teal-light);
  font-size: 0.9rem;
  margin-top: 4px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-contact-item a:hover {
  color: var(--teal-light);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--teal-light);
}

/* Footer responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  .footer-main {
    padding: 50px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
    text-align: center;
  }

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

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col {
    text-align: center;
  }

  .footer-links a:hover {
    transform: none;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom-links {
    gap: 16px;
  }
}

/* Impact Stats Section */
.impact-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brown-warm) 0%, var(--brown-warm-bg) 100%);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.stat-item {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: var(--brown);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--dark-gray);
  font-size: 1.1rem;
}

/* Featured Projects Section */
.featured-projects {
  padding: 100px 0;
  background-color: var(--white);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.featured-card {
  background: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--teal);
  display: flex;
  flex-direction: column;
}

.featured-card-img {
  height: 160px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--white);
  border-bottom: 1px solid var(--medium-gray);
}

.featured-card-body {
  padding: 24px 30px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.featured-card-body .featured-tag { margin-bottom: 14px; }
.featured-card-body h3 { margin-bottom: 12px; }
.featured-card-body p  { flex: 1; margin-bottom: 20px; }

.featured-card-body .btn {
  align-self: flex-start;
}

.featured-card:nth-child(2) {
  border-top-color: var(--coral);
}

.featured-card:nth-child(3) {
  border-top-color: var(--brown);
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.featured-tag {
  display: inline-block;
  background: var(--teal-10);
  color: var(--teal);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  align-self: flex-start;
}

.featured-card:nth-child(2) .featured-tag {
  background: var(--coral-10);
  color: var(--coral);
}

.featured-card:nth-child(3) .featured-tag {
  background: var(--brown-10);
  color: var(--brown);
}

.featured-card h3 {
  margin-bottom: 12px;
}

.featured-card p {
  flex: 1;
  margin-bottom: 20px;
}

.featured-card .btn {
  align-self: flex-start;
}

/* Partners Section */
.partners-section {
  padding: 80px 0;
  background-color: var(--light-gray-alt);
  border-top: 1px solid var(--medium-gray);
  border-bottom: 1px solid var(--medium-gray);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 576px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

.partner-logo {
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: 10px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 0.85rem;
  transition: var(--transition);
}

.partner-logo i {
  font-size: 2rem;
  color: var(--teal);
}

.partner-logo:nth-child(2) i { color: var(--coral); }
.partner-logo:nth-child(3) i { color: var(--brown); }
.partner-logo:nth-child(4) i { color: var(--teal); }
.partner-logo:nth-child(5) i { color: var(--coral); }
.partner-logo:nth-child(6) i { color: var(--brown); }

.partner-logo:hover {
  background: var(--white);
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* Update header with brown accent */
header,
.header {
  background-color: var(--light-gray-alt);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--brown-light);
}

/* Teal accent for active navigation */
nav a.active {
  color: var(--teal);
}

nav a.active:after {
  background: var(--teal);
}

/* Update buttons in CTA section */
.cta-buttons .btn:nth-child(1) {
  background-color: var(--brown);
}

.cta-buttons .btn:nth-child(1):hover {
  background-color: var(--brown-dark);
}

.cta-buttons .btn:nth-child(2) {
  border-color: var(--brown);
  color: var(--brown);
}

.cta-buttons .btn:nth-child(2):hover {
  background-color: var(--brown);
  color: var(--white);
}

/* Brown accent in focus cards */
.focus-card {
  position: relative;
  overflow: hidden;
}

/* Additional Utility Classes */
.brown-section {
  background: linear-gradient(135deg, var(--brown-warm) 0%, var(--brown-warm-bg) 100%);
  position: relative;
}

.brown-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--brown), var(--coral));
}

/* Text colors */
.text-brown {
  color: var(--brown);
}

.text-teal {
  color: var(--teal);
}

.text-coral {
  color: var(--coral);
}

/* Background colors */
.bg-brown-light {
  background-color: var(--brown-light);
}

.bg-brown-warm {
  background-color: var(--brown-warm);
}

/* Border colors */
.border-brown {
  border-color: var(--brown);
}

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

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

/* Additional Button Styles for Focus Page */
.btn-teal {
  background-color: var(--teal);
  color: var(--white);
  border: none;
}

.btn-teal:hover {
  background-color: var(--teal-light);
  color: var(--white);
}

.btn-coral {
  background-color: var(--coral);
  color: var(--white);
  border: none;
}

.btn-coral:hover {
  background-color: var(--coral-light);
  color: var(--white);
}

.btn-brown {
  background-color: var(--brown);
  color: var(--white);
  border: none;
}

.btn-brown:hover {
  background-color: var(--brown-dark);
  color: var(--white);
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Error States for Forms */
.error {
  border-color: var(--error) !important;
  background-color: var(--error-05) !important;
}

.error:focus {
  box-shadow: 0 0 0 3px var(--error-10) !important;
}

.error-message {
  color: var(--error) !important;
  font-size: 0.9rem !important;
  margin-top: 5px !important;
}

.checkbox-group.error label {
  color: var(--error) !important;
}

/* Animation for form success */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-success {
  animation: fadeInUp 0.5s ease;
}

/* Loading spinner */
.fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
