
/* styles.css */
.navbar {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border-bottom: 1px solid #e5e7eb;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
.navbar-container {
    max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar-brand {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  text-decoration: none;
}
.navbar-links {
  display: flex;
  gap: 1.5rem;
}
.navbar-link {
  color: #374151;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.navbar-link:hover {
  color: #111827;
}
@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
}

/* Hide links and show hamburger on mobile */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    .navbar-links.active {
        display: flex;
    }
    .navbar-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }
    .navbar-toggle-icon {
        /*width: 30px;*/
        /*height: 3px;*/
        /*background: #333;*/
        /*display: block;*/
        /*margin: 6px 0;*/
        /*border-radius: 2px;*/
        /*box-shadow: 0 2px #333, 0 4px #333;*/
    }
}
@media (min-width: 769px) {
    .navbar-toggle {
        display: none;
    }
}

.footer-section {
  background: #0f172a;
  color: #fff;
  padding: 3rem 0;
}
.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fde047;
  margin-bottom: 1rem;
}
.footer-desc {
  color: #cbd5e1;
  line-height: 1.7;
}
.footer-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-social-link {
  color: #cbd5e1;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-social-link:hover {
  color: #fde047;
}
.footer-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.footer-separator {
  height: 1px;
  background: #334155;
  margin-bottom: 2rem;
}
.footer-copyright {
  text-align: center;
  color: #94a3b8;
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f8fafc;
  color: #1e293b;
}

.top-image-section {
  position: relative;
  height: 60vh;
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
}

.top-image-bg {
  position: absolute;
  inset: 0;
  background: url('../images/6833c7fe5c4455669b4b0f79_1749321037727_fdf04105.png') center/90% no-repeat;
  width: 100%;
  height: 100%;
}

.top-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
}

.hero-section {
  background: linear-gradient(135deg, #4c1d95 0%, #3730a3 50%, #1e3a8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 16px;
}

.hero-content {
  max-width: 900px;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 16px;
}

.hero-content h2 {
  font-size: 1.5rem;
  color: #c4b5fd;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-content p {
  color: #c7d2fe;
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 700px;
}

.features-section {
  background: linear-gradient(to bottom, #f8fafc 0%, #fff 100%);
  padding: 80px 0;
}

.features-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 16px;
}

.features-header p {
  color: #64748b;
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

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

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(30,41,59,0.08);
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 8px 32px 0 rgba(30,41,59,0.16);
}

.feature-card-inner {
  padding: 24px;
  text-align: left;
}

.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: block;
}

.icon-purple { stroke: #9333ea; }
.icon-indigo { stroke: #3730a3; }
.icon-blue { stroke: #2563eb; }
.icon-yellow { stroke: #eab308; }
.icon-green { stroke: #22c55e; }
.icon-teal { stroke: #14b8a6; }

.feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.feature-title-purple { color: #6d28d9; }
.feature-title-indigo { color: #3730a3; }
.feature-title-blue { color: #2563eb; }
.feature-title-yellow { color: #b45309; }
.feature-title-green { color: #16a34a; }
.feature-title-teal { color: #0d9488; }

.feature-card-inner p {
  color: #64748b;
  font-size: 1rem;
}

.governance-section {
  background: linear-gradient(135deg, #faf5ff 0%, #eef2ff 100%);
  padding: 80px 0;
}

.governance-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.governance-container h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 32px;
}

.governance-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 24px 0 rgba(30,41,59,0.08);
}

.governance-card p {
  color: #334155;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
}

.badge-purple { background: #ede9fe; color: #6d28d9; }
.badge-indigo { background: #e0e7ff; color: #3730a3; }
.badge-blue { background: #dbeafe; color: #2563eb; }
.badge-teal { background: #ccfbf1; color: #0d9488; }

.footer-location {
  text-align: center;
  color: #fde047;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.footer-extra {
  text-align: center;
  margin: 0.5rem 0;
}
.footer-extra a {
  color: #fde047;
  text-decoration: underline;
  font-weight: 500;
}
