:root {
  --primary-green: #6a8e22;
  --primary-yellow: #ffc107;
  --dark: #1a1a1a;
  --text-dark: #2d3436;
  --text-light: #636e72;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gradient-green: linear-gradient(135deg, #6a8e22 0%, #6a8e22 100%);
  --gradient-yellow: linear-gradient(135deg, #ffc107 0%, #ffd54f 100%);
}

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

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-family: Unbounded;
  color: var(--text-dark);
  line-height: 1.5;
  background-color: var(--off-white);
}

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

/* Header */
.header {
  background: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo {
  height: 32px;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 80px 0;
  background-color: #1e280a;
  overflow: hidden;
  margin-bottom: 20px;
  margin-top: 20px;
}

/* Background Elements */
.hero-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(106, 142, 34, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 193, 7, 0.08) 0%,
      transparent 40%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

/* Hero Title & Subtitle */
.hero-title {
  font-family: "Unbounded", cursive;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--primary-yellow) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(16px, 2vw, 18px);
  color: #b8bdc2;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.9);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-green);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-stat:hover {
  transform: translateY(-5px);
}

.hero-stat:hover::before {
  opacity: 1;
}

.hero-stat-number {
  font-family: "Unbounded", cursive;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-green);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.hero-stat-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Floating Decorations */
.hero-decoration {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.hero-decoration-1 {
  width: 80px;
  height: 80px;
  background: var(--primary-green);
  top: 10%;
  left: 5%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero-decoration-2 {
  width: 60px;
  height: 60px;
  background: var(--primary-yellow);
  bottom: 15%;
  right: 10%;
  opacity: 0.1;
  animation: float 8s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-stat {
    padding: 24px 20px;
  }

  .hero-stat-number {
    font-size: 36px;
  }
}

/* Filter Navigation */
.filter-nav {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  padding: 10px 15px;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-direction: row;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-nav::-webkit-scrollbar {
  display: none;
}

.filter-button {
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: fit-content;
}

.filter-button i {
  font-size: 14px;
}

.filter-button:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.filter-button.active {
  background: var(--gradient-green);
  color: var(--white);
  border-color: transparent;
}

/* Mobile adjustments for filter buttons */
@media (max-width: 768px) {
  .filter-nav {
    gap: 6px;
    padding: 10px 15px;
    position: sticky;
    top: 0;
    margin: 0;
  }

  .filter-button {
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 8px;
    flex: 0 0 auto;
    width: auto;
  }

  .filter-button i {
    font-size: 11px;
  }
}

/* Remove any conflicting styles */
@media (max-width: 768px) {
  .filter-nav {
    flex-direction: row !important;
  }
}

/* Project Grid */
.project-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Program Card */
.program-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.project-header {
  margin-bottom: 16px;
}

.project-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: var(--gradient-yellow);
  color: var(--dark);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.project-header h2 {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 6px;
}

.project-subtitle {
  color: var(--text-light);
  font-size: 14px;
}

.project-description {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 16px;
}

/* Stats Container */
.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.stat {
  background: var(--off-white);
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-3px);
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  color: var(--text-light);
  font-size: 13px;
}

/* Project Highlights */
.project-highlights {
  margin-bottom: 16px;
}

.project-highlights h3 {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 12px;
}

.project-highlights ul {
  list-style: none;
}

.project-highlights li {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  color: var(--text-light);
  font-size: 14px;
}

.project-highlights li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-green);
  margin-right: 6px;
}

/* Project Tags */
.project-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  padding: 4px 8px;
  background: var(--off-white);
  border-radius: 4px;
  font-size: 12px;
  color: var(--text-light);
}

/* Project Image */
.project-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 8px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.program-card:hover .project-image img {
  transform: scale(1.05);
}

/* Help Section
.help-section {
  background: var(--dark);
  padding: 48px 0;
  margin-top: 48px;
  color: var(--white);
}

.help-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 32px;
}

.help-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.help-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.help-card:hover {
  transform: translateY(-5px);
}

.help-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-card-icon i {
  font-size: 24px;
  color: var(--primary-yellow);
}

.help-card-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.help-card-description {
  font-size: 14px;
  margin-bottom: 16px;
  opacity: 0.8;
} */

.cta-button {
  padding: 8px 16px;
  background: var(--gradient-green);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .program-card {
    grid-template-columns: 1fr;
  }

  .project-image {
    order: -1;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .page-title {
    font-size: 28px;
  }

  .filter-nav {
    flex-direction: column;
  }

  .filter-button {
    /* width: 100%; */
    justify-content: center;
  }

  .help-cards {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }
}

.cta-wrapper {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-button {
  padding: 10px 20px;
  background: var(--gradient-green);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 184, 148, 0.2);
}

.cta-button i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(4px);
}

/* Import fonts */
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

/* Typography Base Styles */
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Heading Styles */
h1,
h2,
h3,
h4,
h5,
h6,
.page-title,
.project-header h2,
.help-title,
.hero-stat-number {
  font-family: "Unbounded", cursive;
  font-weight: 700;
}

/* Hero Section Typography */
.page-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

/* Project Card Typography */
.project-header h2 {
  font-size: 24px;
  letter-spacing: -0.01em;
}

.project-subtitle,
.project-description {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
}

/* Stats Typography */
.hero-stat-number {
  font-size: 36px;
  font-weight: 700;
}

.hero-stat-label,
.stat-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Help Section Typography */
.help-title {
  font-size: 32px;
  letter-spacing: -0.02em;
}

.help-card-title {
  font-family: "Unbounded", cursive;
  font-size: 20px;
  font-weight: 600;
}

.help-card-description {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
}

/* Button Typography */
.filter-button,
.cta-button {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .page-title {
    font-size: 36px;
  }

  .page-subtitle {
    font-size: 16px;
  }

  .project-header h2 {
    font-size: 22px;
  }

  .help-title {
    font-size: 28px;
  }
}

/* Help Us Section */
.help-us {
  padding: 120px 0;
  background: linear-gradient(
      -45deg,
      rgba(30, 40, 10, 0.98),
      rgba(26, 35, 8, 0.95)
    ),
    url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80")
      center/cover fixed;
  position: relative;
  overflow: hidden;
}

.help-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/images/pattern.svg") repeat;
  opacity: 0.05;
  animation: floatBackground 20s linear infinite;
}

.help-us__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
}

.help-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.help-card__content {
  padding: 40px;
}

.help-card__icon {
  width: 60px;
  height: 60px;
  background: #a3ff12;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

.help-card__icon i {
  font-size: 24px;
  color: #1e280a;
}

.help-card h2 {
  font-family: "Unbounded", sans-serif;
  /* font-size: var(--fs-lg); */
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #a3ff12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.help-card p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.6;
}

.help-card__stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.help-stat {
  text-align: center;
}

.help-stat__number {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: 2rem;
  color: #a3ff12;
  margin-bottom: 5px;
}

.help-stat__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.help-card__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(45deg, var(--primary-light), var(--accent-green));
  color: #83af2b;
  text-decoration: none;
  border-radius: 30px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(163, 255, 18, 0.2);
}

.help-card__button:hover {
  transform: translateX(5px);
}

.help-card__button i {
  transition: transform 0.3s ease;
}

.help-card__button:hover i {
  transform: translateX(5px);
}

.help-card__image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.help-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.help-card:hover .help-card__image img {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .help-us__grid {
    grid-template-columns: 1fr;
  }

  .help-card h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .help-us {
    padding: 80px 0;
  }

  .help-card__content {
    padding: 30px;
  }

  .help-card__image {
    height: 200px;
  }
}

@keyframes floatBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 20px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Fix overflow issues */
body {
  overflow-x: hidden;
  width: 100%;
}

section {
  width: 100%;
  overflow: hidden;
}

/* Add these responsive adjustments */
@media (max-width: 768px) {
  /* Adjust grid layouts */
  .help-us__grid,
  .partner-us__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }

  /* Adjust timeline layout */
  .ourjourney__timeline__item {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
  }

  .ourjourney__timeline__item__date {
    width: 100%;
    text-align: left;
  }

  /* Adjust padding */
  .help-card__content,
  .partner-us__form-container,
  .testimonial__card {
    padding: 20px;
  }

  /* Adjust section padding */
  .ourjourney__container,
  .help-us,
  .partner-us,
  .ourjourney__testimonials,
  .ourjourney__faq {
    padding: 60px 0;
  }

  /* Fix image heights */
  .help-card__image,
  .partner-us__image {
    height: 200px;
  }
}

/* Fix grid gaps */
.help-us__grid,
.partner-us__grid,
.testimonials__grid {
  gap: clamp(20px, 3vw, 40px);
}

/* Fix image containers */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Add these to prevent overflow */
* {
  max-width: 100vw;
  box-sizing: border-box;
}

section {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.video-wrapper {
  max-width: 100%;
}

/* Fix form elements */
input,
textarea,
button {
  max-width: 100%;
}

/* Fix grid items */
.help-card,
.testimonial__card,
.partner-us__form-container {
  width: 100%;
  max-width: 100%;
}

/* Partner Us Section */
.partner-us {
  padding: 120px 0;
  background: linear-gradient(
      135deg,
      rgba(30, 40, 10, 0.98),
      rgba(26, 35, 8, 0.95)
    ),
    url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80")
      center/cover fixed;
  position: relative;
  overflow: hidden;
}

.partner-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/images/pattern.svg") repeat;
  opacity: 0.03;
  animation: floatBackground 30s linear infinite;
  pointer-events: none;
}

.partner-us__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.partner-us__content {
  padding-right: 20px;
}

.partner-us__content h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
  background: linear-gradient(45deg, #fff, #a3ff12);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partner-us__content p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.partner-us__image {
  width: 100%;
  max-width: 100%;
  margin: 40px 0;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.partner-us__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.partner-us__stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.partner-stat {
  text-align: center;
}

.partner-stat__number {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: 2.5rem;
  color: #fff;
  background: linear-gradient(45deg, #fff, #a3ff12);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.partner-stat__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Form Styles */
.partner-us__form-container {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  padding: 30px;
  width: 100%;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.partner-us__form-container h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
}

.partner-us form {
  display: grid;
  gap: 20px;
}

.partner-us form input,
.partner-us form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--glass-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.partner-us form textarea {
  height: 120px;
  resize: vertical;
}

.partner-us form input:focus,
.partner-us form textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.1);
}

.partner-us form input::placeholder,
.partner-us form textarea::placeholder {
  color: var(--text-muted);
}

.partner-us form button {
  background: linear-gradient(45deg, var(--primary-light), var(--accent-green));
  color: var(--primary-green);
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(163, 255, 18, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.partner-us form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(163, 255, 18, 0.3);
}

.partner-us form button i {
  transition: transform 0.3s ease;
}

.partner-us form button:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .partner-us__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .partner-us__content {
    padding-right: 0;
    text-align: center;
  }

  .partner-us__stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .partner-us {
    padding: 80px 0;
  }

  .partner-us__content h2 {
    font-size: 2.5rem;
  }

  .partner-us__form-container {
    padding: 30px;
  }
}
Footer Styles
/* footer {
  background: linear-gradient(
    to bottom,
    rgba(30, 40, 10, 0.98),
    rgba(26, 35, 8, 0.95)
  );
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/images/pattern.svg") repeat;
  opacity: 0.03;
  animation: floatBackground 30s linear infinite;
}

.footer__container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
}

.footer__logo {
  display: flex;
  align-items: center;
}

.footer__logo img {
  max-width: 150px;
  height: auto;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: var(--fs-sm);
  transition: color 0.3s ease;
  position: relative;
  width: fit-content;
}

.footer__links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: width 0.3s ease;
}

.footer__links a:hover {
  color: var(--primary-light);
}

.footer__links a:hover::after {
  width: 100%;
}

.footer__social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
}

.footer__social a:hover {
  transform: translateY(-3px);
  background: var(--primary-light);
  color: var(--primary-dark);
}

.footer__social i {
  font-size: 1.2rem;
}

.footer__copyright {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  margin-top: 20px;
}

.footer__copyright p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
} */


/* @media (max-width: 768px) {
  footer {
    padding: 60px 0 30px;
  }

  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer__logo {
    justify-content: center;
  }

  .footer__links {
    align-items: center;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__copyright {
    margin-top: 30px;
    padding-top: 30px;
  }
} */


/* @keyframes socialPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(163, 255, 18, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(163, 255, 18, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(163, 255, 18, 0);
  }
}

.footer__social a:hover {
  animation: socialPulse 1.5s infinite;
} */
