@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-color: #05070a;
  --bg-surface: #0a0e14;
  --surface-border: rgba(255, 255, 255, 0.05);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --accent-color: #00b923;
  /* Vibrant Green from logo */
  --accent-glow: rgba(0, 185, 35, 0.15);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

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

.mt-2 {
  margin-top: 1rem;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(5, 7, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-border);
  padding: 1rem 5%;
}

.nav-brand {
  display: flex;
  flex-direction: column;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-tagline {
  font-size: 0.65rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.2rem;
  display: none;
}

@media (min-width: 1024px) {
  .nav-tagline {
    display: block;
  }
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a:not(.btn) {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 400;
  position: relative;
}

.nav-links a:not(.btn):hover,
.nav-links a.active:not(.btn) {
  color: var(--text-primary);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: width var(--transition-smooth);
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active:not(.btn)::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent-color);
  color: #000;
  font-weight: 500;
}

.btn-primary:hover {
  background: #008f1b;
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--surface-border);
  color: var(--text-primary);
}

.btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

/* Utility */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

/* Grid / Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--surface-border);
  padding: 2.5rem;
  border-radius: 12px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 185, 35, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.card:hover::before {
  transform: scaleX(1);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.glow-orb {
  position: absolute;
  top: 20%;
  left: 60%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(0, 185, 35, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 10s infinite alternate ease-in-out;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -45%) scale(1.1);
    opacity: 1;
  }
}

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

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 750px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

/* Image Glass Morphism Element */
.image-glass {
  position: relative;
  height: 400px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--surface-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.glass-orb {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.glass-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.glass-content h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.glass-content p {
  color: var(--text-secondary);
}

/* Pills Grid */
.pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.pill {
  padding: 1rem 2rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--surface-border);
  font-size: 1.1rem;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  cursor: default;
}

.pill:hover {
  background: rgba(0, 185, 35, 0.1);
  border-color: rgba(0, 185, 35, 0.4);
  color: var(--accent-color);
  transform: translateY(-3px);
}

/* Feature Items (Why Us) */
.feature-item {
  padding: 2rem;
  border-left: 2px solid var(--surface-border);
  transition: all var(--transition-fast);
}

.feature-item:hover {
  border-left-color: var(--accent-color);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.feature-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.05);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}

.feature-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-item p {
  color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: radial-gradient(circle at 50% 100%, rgba(0, 185, 35, 0.1) 0%, transparent 60%);
  border-top: 1px solid var(--surface-border);
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Footer */
footer {
  background: #030407;
  padding: 3rem 5% 1.5rem;
  border-top: 1px solid var(--surface-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1280px;
  margin: 0 auto 2rem;
}

.footer-brand .footer-text {
  max-width: 400px;
}

.footer-links .social-icons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a,
.footer-contact p {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-links a:hover svg {
  stroke: var(--accent-color);
}

.footer-contact h4,
.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--surface-border);
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  text-align: center;
}

/* Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Core Values – Modern Premium Look */
.values-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--surface-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-5px);
  background: rgba(0, 185, 35, 0.03);
  border-color: rgba(0, 185, 35, 0.3);
}

.value-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  transition: all var(--transition-smooth);
}

.value-card:hover .value-num {
  color: rgba(0, 185, 35, 0.1);
  -webkit-text-stroke: 1px var(--accent-color);
}

.value-content h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  transition: color var(--transition-smooth);
}

.value-card:hover .value-content h4 {
  color: var(--accent-color);
}

.value-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Redundant .value-card mobile styles removed because they are now identical to default styles */

/* Partner Image Styles */
.partner-image-container {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(0, 185, 35, 0.05);
  box-shadow: 0 0 30px rgba(0, 185, 35, 0.1);
}

.partner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.partner-image:hover {
  transform: scale(1.05);
}

.team-card {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .team-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav-links {
    display: none;
    /* Add mobile menu later */
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .grid {
    grid-template-columns: 1fr !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}