/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #f0f9f5;
  background: #0b1120; /* Dark background fallback */
}

body {
  line-height: 1.6;
  background: #0b1120;
  padding: 0;
  margin: 0;
}

/* Utility Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Links & Buttons */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  color: #00ffa0;
}

.btn {
  display: inline-block;
  padding: 0.7em 1.6em;
  font-weight: 600;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 255, 160, 0.2);
  margin-top: 0.5rem;
}

.btn.primary {
  background: linear-gradient(135deg, #0f2040, #00ffa0);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 255, 160, 0.5);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 255, 160, 0.7);
}

.btn.soft {
  background: rgba(0, 255, 160, 0.1);
  color: #00ffa0;
}

.btn.soft:hover {
  background: rgba(0, 255, 160, 0.2);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0b1120;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.nav a {
  margin-left: 1.5rem;
  font-weight: 500;
  color: #f0f9f5;
}

/* Hero */
.hero {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(-45deg, #0b1120, #001f3f, #00332f, #00ffa0);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-copy .accent {
  color: #00ffa0;
  text-shadow: 0 0 10px #00ffa0;
}

.hero-copy p.lede {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #d0f9e8;
  max-width: 500px;
}

.cta .btn {
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill {
  background: rgba(0, 255, 160, 0.15);
  color: #00ffa0;
  font-size: 0.875rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  backdrop-filter: blur(5px);
}

/* Hero Card */
.hero-card {
  background: rgba(15, 32, 64, 0.85);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 255, 160, 0.2);
  color: #d0f9e8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card ul {
  padding-left: 1.25rem;
  list-style: disc inside;
}

/* Sections */
.section {
  padding: 4rem 0;
  color: #d0f9e8;
}

.section h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

/* Split layout */
.split {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.split > div {
  flex: 1;
}

/* Cards */
.card {
  background: rgba(15, 32, 64, 0.85);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 15px 30px rgba(0, 255, 160, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  color: #d0f9e8;
  margin-bottom: 2rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0, 255, 160, 0.4);
  background: rgba(0, 31, 63, 0.95);
}

/* Grids */
.grid2, .grid3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Forms */
.contact-form .field {
  margin-bottom: 1.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.3);
  color: #d0f9e8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00ffa0;
  box-shadow: 0 0 10px #00ffa0;
  background: rgba(0, 0, 0, 0.5);
}

/* Footer */
.site-footer {
  background: #0b1120;
  color: #d0f9e8;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer a {
  color: #00ffa0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-nav a {
  margin-left: 1rem;
}

/* Animations */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .split {
    flex-direction: column;
    gap: 2rem;
  }

  .cta .btn {
    margin-right: 0;
  }

  .hero-copy p.lede {
    max-width: 100%;
  }
}


/* Center the partner card */
.partners-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

/* Profile card */
.partner-card {
  background: rgba(15, 32, 64, 0.85);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 255, 160, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  max-width: 300px;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0, 255, 160, 0.5);
  background: rgba(0, 31, 63, 0.95);
}

/* Circular photo */
.partner-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #00ffa0;
  box-shadow: 0 0 20px rgba(0, 255, 160, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-card:hover .partner-photo {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 160, 0.7);
}

/* Name & title */
.partner-card h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #00ffa0;
}

.partner-card p {
  margin: 0;
  color: #d0f9e8;
  font-weight: 500;
}
