body {
  font-family: 'Inter', Arial, sans-serif;
  background: #181818;
  color: #F5F5F7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  background: #181818 !important;
  transition: box-shadow 0.2s;
}

.navbar .navbar-brand {
  color: #85BB65 !important;
  letter-spacing: 1px;
}

.navbar .nav-link {
  font-weight: 500;
  color: #F5F5F7 !important;
  transition: color 0.2s;
}

.navbar .nav-link.active, .navbar .nav-link:focus, .navbar .nav-link:active, .navbar .nav-link:hover {
  color: #fff !important;
  background: transparent !important;
  box-shadow: 0 2px 12px 0 #85BB65;
  text-shadow: 0 0 8px #85BB65, 0 0 16px #85BB65;
  border-radius: 0;
  transition: box-shadow 0.2s, text-shadow 0.2s, color 0.2s;
}

.hero-section {
  background: linear-gradient(120deg, #181818 60%, #23272F 100%);
  padding-top: 80px;
  padding-bottom: 80px;
  animation: fadein 1s;
}

.brand-intro {
  background: #23272F;
  color: #F5F5F7;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  margin-top: -60px;
  z-index: 2;
  position: relative;
}

.card {
  background: #23272F;
  color: #F5F5F7;
  border: none;
  border-radius: 1rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 6px 32px rgba(133,187,101,0.15);
  transform: translateY(-4px) scale(1.02);
}

.btn-primary {
  background: #85BB65;
  border: none;
  font-weight: 600;
  color: #fff;
  transition: background 0.2s, box-shadow 0.2s;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:focus:active {
  background: #85BB65 !important;
  color: #fff !important;
  box-shadow: 0 2px 12px rgba(133,187,101,0.18);
  outline: none !important;
  border: none !important;
}

a, .link {
  color: #1E90FF;
  transition: color 0.2s;
}

a:hover, .link:hover {
  color: #85BB65;
}

footer {
  background: #181818;
  border-top: 1px solid #23272F;
  color: #B0B0B0;
}

/* Optional accent classes */
.accent-yellow {
  color: #FFEB3B;
}
.accent-lime {
  color: #00FF85;
}

.animate-fadein {
  opacity: 0;
  animation: fadein 1s forwards;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .brand-intro {
    margin-top: -30px;
  }
}

.hero-fonts {
  font-family: 'Lexend', 'Noto Serif Malayalam', 'Tinos', serif;
}

.highlight-orange {
  color: #85BB65;
  background: #181818;
  padding: 0.15em 0.4em;
  border-radius: 0.4em;
  font-weight: 600;
}

.underline-orange {
  border-bottom: 4px solid #85BB65;
  display: inline-block;
  padding-bottom: 0.1em;
}

.card-title {
  color: #85BB65;
}

.social-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: #23272a;
  border-radius: 2rem;
  box-shadow: 0 4px 24px rgba(133, 187, 101, 0.4);
  padding: 1.2rem 0.7rem;
  align-items: center;
}
.social-fab a {
  color: #85BB65;
  background: #111;
  border-radius: 50%;
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px #85BB65, 0 0 0px #23272a;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  font-size: 1.6rem;
}
.social-fab a:hover {
  background: #85BB65;
  color: #23272a;
  box-shadow: 0 0 16px #85BB65, 0 0 0px #23272a;
}
.social-fab i {
  font-size: 1.6rem;
  line-height: 1;
  filter: drop-shadow(0 0 4px #85BB65);
}
@media (max-width: 767.98px) {
  .social-fab {
    right: 1rem;
    bottom: 1rem;
    padding: 0.4em 0.8em 0.4em 0.6em;
    gap: 0.7em;
  }
  .social-fab a {
    width: 2em;
    height: 2em;
    font-size: 1.1em;
  }
} 
