body {
  background: linear-gradient(
    120deg,
    #0b1f14,  /* Deep Earth Green */
    #145214,  /* Forest Green */
    #2c5f2d,  /* Riverbank Green */
    #1b3b5f   /* Deep River Blue */
  );
  background-size: 400% 200%;
  animation: afroFlow 18s ease infinite;
  color: #fdfcf7; /* Light foreground text */
  font-family: 'Inter', Arial, sans-serif;
}

/* Smooth Gradient Animation */
@keyframes afroFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* HERO SECTION WITH VIDEO SUPPORT */
.hub-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 15%;
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
  color: #fff;
  text-align: center;
}

/* Optional Video Background Layer */
.hub-hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* reduced to enhance foreground readability */
  z-index: 0;
}

/* Dark Afro Overlay for better contrast */
.hub-hero::after {
  content: "";
  position: absolute;
  background: rgba(11, 31, 20, 0.65); /* semi-transparent dark overlay */
  z-index: 1;
}
/* Hero Content Above Video */
.hub-hero h1,
.hub-hero p {
  position: relative;
  z-index: 2;
}
/* Hero Title */
.hub-hero h1 {
  font-size: 3.8rem;
  font-weight: 900;
  color: #f8d57e; /* Golden - Afrocentric accent */
  text-shadow: 0px 0px 25px rgba(248, 213, 126, 0.6);
}
/* Hero Subtitle */
.hub-hero p {
  font-size: 1.35rem;
  max-width: 850px;
  margin: 15px auto 0 auto;
  color: #fdfcf7;
  text-shadow: 0 0 8px rgba(0,0,0,0.5);
}

/* CTA Buttons */
.hero-content .btn {
  display: inline-block;
  margin-top: 35px;
  padding: 16px 38px;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, #f8d57e, #d87c2a, #145214); /* Afrocentric gradient */
  color: #0b1f14; /* contrast with gradient */
  box-shadow: 0px 12px 40px rgba(216, 124, 42, 0.45);
  transition: 0.3s ease;
}

.hero-content .btn:hover {
  transform: scale(1.08);
  box-shadow: 0px 18px 60px rgba(248, 213, 126, 0.55);
}

/* Panels */
.panel {
  background: rgba(255, 255, 255, 0.09); /* semi-transparent for readability */
  border: 1px solid rgba(248, 213, 126, 0.35);
  backdrop-filter: blur(15px);
  box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.25);
  color: #fdfcf7;
  border-radius: 20px;
  padding: 30px;
  transition: 0.3s ease;
}

.panel:hover {
  transform: translateY(-8px);
  box-shadow: 0px 20px 70px rgba(0, 0, 0, 0.35);
}

/* Panel Titles */
.panel h2 {
  color: #f8d57e;
  font-weight: 800;
}

/* Inputs / Textareas */
input, select, textarea {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(248, 213, 126, 0.35);
  color: #fdfcf7;
  padding: 14px;
  border-radius: 12px;
}

input:focus, select:focus, textarea:focus {
  border-color: #f8d57e;
  box-shadow: 0px 0px 12px rgba(248, 213, 126, 0.45);
}

/* Cost Boxes */
.cost-box {
  background: rgba(27, 59, 95, 0.25);
  border: 1px solid rgba(248, 213, 126, 0.25);
  color: #fff;
}

.cost-box h3 {
  color: #f8d57e;
  text-shadow: 0px 0px 12px rgba(248, 213, 126, 0.45);
}

/* Tips */
.tip {
  background: rgba(248, 213, 126, 0.12);
  border-left: 5px solid #f8d57e;
  font-style: italic;
  color: #fff;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .hub-hero h1 { font-size: 2.6rem; }
  .panel { padding: 20px; }
  .hub-hero { padding: 80px 10%; }

    /* ================================
   FOREZAVA FOOTER
================================ */

.hub-footer {
  background: linear-gradient(135deg, #145214, #1b3b5f);
  color: #fdfcf7;
  padding: 60px 10%;
  font-size: 0.95rem;
  position: relative;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* Logo and Brand */
.footer-brand {
  max-width: 250px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #f8d57e;
  line-height: 1.5;
  font-weight: 500;
}

/* Footer Links */
.footer-links h3 {
  color: #f8d57e;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fdfcf7;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #f8d57e;
  text-decoration: underline;
}

/* Contact Info */
.footer-contact h3 {
  color: #f8d57e;
  margin-bottom: 12px;
}

.footer-contact a {
  color: #fdfcf7;
  text-decoration: none;
  transition: 0.3s;
}

.footer-contact a:hover {
  color: #f8d57e;
  text-decoration: underline;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  margin-right: 15px;
  font-size: 1.3rem;
  color: #fdfcf7;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #f8d57e;
}

/* Bottom Footer */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(248, 213, 126, 0.35);
  padding-top: 20px;
  text-align: center;
  color: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-brand {
    margin-bottom: 20px;
}