/* Add at the top of your CSS file */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Update color variables at the top */
:root {
  --primary-dark: #1e280a;
  --primary-light: #a3ff12;
  --accent-green: #84cc16;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-light: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.7);
  /* Responsive font sizes */
  --fs-xxl: clamp(2rem, 5vw, 4.5rem);
  --fs-xl: clamp(1.8rem, 4vw, 3.5rem);
  --fs-lg: clamp(1.5rem, 3vw, 2.5rem);
  --fs-md: clamp(1.1rem, 2vw, 1.5rem);
  --fs-sm: clamp(0.9rem, 1.5vw, 1.2rem);
  --heading-font: "Unbounded", cursive;
  --body-font: "Plus Jakarta Sans", sans-serif;
  --primary-color: #2e7d32;
  --secondary-color: #ffd700;
  --border-color: #e5e5e5;
  --hover-bg: #f8f9fa;
  --green-primary: #2e7d32;
  --green-light: #4caf50;
  --yellow-primary: #ffd700;
  --yellow-light: #ffe033;
  --dark: #1e280a;
  --white: #ffffff;
}

/* General Styles */

body {
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #1e280a;
  color: #fff;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
  padding: 0;
}

/* Hero Section */
.ourjourney__container {
  padding: 120px 0 80px;
  text-align: center;
}

.ourjourney__container h2 {
  font-family: "Unbounded", sans-serif;
  font-size: var(--fs-xxl);
  font-weight: 700;
  color: #fff;
  max-width: min(100% - 32px, 800px);
  margin: 0 auto 24px;
  line-height: 1.2;
}

.ourjourney__container p {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 60px;
}

.ourjourney__video {
  width: min(100% - 40px, 1000px);
  margin-inline: auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding-top: 5.25%; /* 16:9 Aspect Ratio */
}

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

/* Timeline Section */
.ourjourney__timeline {
  width: min(100% - 40px, 1000px);
  margin-inline: auto;
  padding: 100px 0;
  background: linear-gradient(
    45deg,
    rgba(30, 40, 10, 0.98),
    rgba(26, 35, 8, 0.95)
  );
  position: relative;
  box-sizing: border-box;
}

.ourjourney__timeline::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;
}

.ourjourney__timeline__item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  padding-left: 30px;
}

.ourjourney__timeline__item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 15px;
  width: 20px;
  height: 20px;
  background: var(--primary-light);
  border-radius: 50%;
  border: 4px solid var(--primary-dark);
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ourjourney__timeline__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  height: calc(100% + 40px);
  width: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.ourjourney__timeline__item__date {
  flex-shrink: 0;
  width: 120px;
  font-family: "Unbounded", sans-serif;
  font-size: var(--fs-lg);
  color: #fff;
  text-align: right;
  position: relative;
  margin-right: 20px;
}

.ourjourney__timeline__item__content {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border-radius: 20px;
  flex-grow: 1;
  transition: transform 0.3s ease;
  margin-left: 20px;
}

.ourjourney__timeline__item__content:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.15);
}

.ourjourney__timeline__item__content h3 {
  font-family: "Unbounded", sans-serif;
  font-size: var(--fs-md);
  color: #fff;
  margin-bottom: 15px;
}

.ourjourney__timeline__item__content p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* FAQ Section */
.ourjourney__faq {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgba(26, 35, 8, 0.98),
    rgba(30, 40, 10, 0.95)
  );
  position: relative;
  overflow: hidden;
}

.ourjourney__faq::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;
}

.ourjourney__faq h2 {
  font-family: "Unbounded", sans-serif;
  font-size: var(--fs-xl);
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(45deg, #fff, var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ourjourney__faq__container {
  width: min(100% - 40px, 800px);
  margin-inline: auto;
}

.faq__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq__question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
}

.faq__question h3 {
  font-size: var(--fs-md);
  color: var(--text-light);
  margin: 0;
}

.faq__icon {
  width: 30px;
  height: 30px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__icon i {
  color: var(--primary-dark);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(255, 255, 255, 0.02);
}

.faq__answer p {
  padding: 20px 30px;
  margin: 0;
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

/* Active states */
.faq__item.active .faq__question {
  background: rgba(255, 255, 255, 0.08);
}

.faq__item.active .faq__question h3 {
  color: var(--primary-light);
}

.faq__item.active .faq__icon i {
  transform: rotate(45deg);
}

.faq__item.active .faq__answer {
  max-height: 1000px; /* Increased max-height */
}

/* Hover effects */
.faq__question:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq__question:hover h3 {
  color: var(--primary-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ourjourney__faq {
    padding: 80px 0;
  }

  .faq__question {
    padding: 20px;
  }

  .faq__answer {
    padding: 0 20px;
  }
}

/* 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;
  background: linear-gradient(45deg, #fff, var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partner-us__content p {
  font-size: 1.2rem;
  color: var(--text-light);
  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;
  background: linear-gradient(45deg, #fff, var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.partner-stat__label {
  font-size: 1rem;
  color: var(--text-muted);
}

/* 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-dark);
  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;
  }
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(30, 40, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav {
  height: 70px;
  background: white;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.nav .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo-img {
  height: 35px;
  width: auto;
}

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav__links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 70px;
}

.nav__link {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.nav__link:hover,
.nav__link--active {
  background-color: var(--hover-bg);
  color: var(--primary-color);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  display: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border: 1px solid var(--border-color);
  border-top: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-item {
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid var(--border-color);
  white-space: normal;
}

.dropdown-item:hover {
  background-color: var(--hover-bg);
  color: var(--primary-color);
}

/* Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #333;
  transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    transition: 0.3s;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav__links {
    width: 100%;
    flex-direction: column;
    height: auto;
    padding: 0;
    margin: 0;
  }

  .nav__link {
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    justify-content: space-between;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    display: none;
    background: #f8f9fa;
  }

  .dropdown-item {
    padding: 12px 40px;
  }

  /* Fix dropdown arrow alignment */
  .nav__link i {
    margin-left: 8px;
  }
}

/* Hero Section Enhancement */
.ourjourney__hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(
      to bottom,
      rgba(30, 40, 10, 0.98),
      rgba(30, 40, 10, 0.95)
    ),
    url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80")
      center/cover;
}

.ourjourney__hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/images/pattern.svg") repeat;
  opacity: 0.1;
}

.ourjourney__hero h2 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #fff, #a3ff12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 20px;
  word-wrap: break-word;
}

/* Timeline Enhancement */
.timeline__header {
  text-align: left;
  margin-bottom: 80px;
}

.timeline__header h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.timeline__header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
}

.timeline__image {
  width: 100%;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--glass-border);
}

.timeline__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  transform: scale(1.1);
}

.ourjourney__timeline__item__content:hover .timeline__image img {
  transform: scale(1);
}

/* Stats Section - Clean version */
.ourjourney__stats {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(26, 35, 8, 0.98),
    rgba(30, 40, 10, 0.95)
  );
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}

.stat__item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.stat__number {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 15px;
  opacity: 1; /* Ensure visibility */
  transform: none; /* Remove any transform */
}

.stat__label {
  font-size: 1rem;
  color: var(--text-muted);
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  margin-top: 10px;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .stat__number {
    font-size: 2.5rem;
  }
}

/* Timeline Item Enhancement */
.ourjourney__timeline__item__content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .ourjourney__hero h2 {
    font-size: 3rem;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline__image {
    height: 160px;
  }
}

/* Add smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Add animation for timeline items */
.ourjourney__timeline__item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add delay for each timeline item */
.ourjourney__timeline__item:nth-child(2) {
  animation-delay: 0.2s;
}
.ourjourney__timeline__item:nth-child(3) {
  animation-delay: 0.4s;
}
.ourjourney__timeline__item:nth-child(4) {
  animation-delay: 0.6s;
}

/* Testimonials Section */
.ourjourney__testimonials {
  padding: 120px 0;
  background: linear-gradient(
      to bottom,
      rgba(26, 35, 8, 0.98),
      rgba(30, 40, 10, 0.95)
    ),
    url("https://images.unsplash.com/photo-1557804506-669a67965ba0?q=80")
      center/cover fixed;
  position: relative;
  overflow: hidden;
}

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

.testimonials__header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

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

.testimonials__header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.testimonials__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.testimonial__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: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial__image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid #a3ff12;
}

.testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__content {
  text-align: center;
}

.testimonial__content p {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial__author h4 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.2rem;
  margin: 0 0 5px;
  color: #fff;
}

.testimonial__author span {
  font-size: 0.9rem;
  color: #a3ff12;
}

@keyframes moveBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 100%;
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__header h2 {
    font-size: 2.5rem;
  }

  .ourjourney__testimonials {
    padding: 80px 0;
  }
}

/* Add hover effect for testimonial cards */
.testimonial__card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.testimonial__card:nth-child(2) {
  animation-delay: 0.2s;
}

.testimonial__card:nth-child(3) {
  animation-delay: 0.4s;
}

/* 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: #1e280a;
  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%;
}

/* Update Timeline Responsive Styles */
@media (max-width: 768px) {
  .ourjourney__timeline {
    padding: 60px 0;
  }

  .ourjourney__timeline__item {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
  }

  .ourjourney__timeline__item:not(:last-child)::after {
    display: none;
  }

  .ourjourney__timeline__item__date {
    width: 100%;
    text-align: left;
    font-size: var(--fs-md);
    color: var(--primary-light);
    margin-bottom: 10px;
  }

  .ourjourney__timeline__item__content {
    padding: 20px;
    width: 100%;
  }

  .timeline__image {
    height: 200px;
    margin-bottom: 15px;
  }

  .timeline__image img {
    height: 100%;
    object-fit: cover;
  }

  .ourjourney__timeline__item__content h3 {
    font-size: var(--fs-md);
    margin-bottom: 10px;
  }

  .ourjourney__timeline__item__content p {
    font-size: var(--fs-sm);
    line-height: 1.5;
  }

  /* Improve timeline header on mobile */
  .timeline__header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .timeline__header h2 {
    font-size: var(--fs-lg);
    margin-bottom: 15px;
  }

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

/* Add timeline animations for better mobile experience */
@media (max-width: 768px) {
  .ourjourney__timeline__item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInTimeline 0.6s ease forwards;
  }

  .ourjourney__timeline__item:nth-child(2) {
    animation-delay: 0.2s;
  }

  .ourjourney__timeline__item:nth-child(3) {
    animation-delay: 0.4s;
  }

  @keyframes slideInTimeline {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Add visual indicator for timeline progression */
  .ourjourney__timeline__item::before {
    content: "";
    position: absolute;
    left: -11px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-light);
    border-radius: 50%;
    border: 4px solid var(--primary-dark);
  }

  /* Improve spacing between sections */
  .ourjourney__container,
  .ourjourney__timeline,
  .ourjourney__testimonials,
  .help-us,
  .partner-us,
  .ourjourney__faq {
    padding: 60px 0;
  }

  /* Adjust container padding */
  .container {
    width: min(100% - 24px, 1200px);
  }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
  :root {
    /* Adjust font sizes for very small screens */
    --fs-xxl: clamp(1.8rem, 4vw, 2.5rem);
    --fs-xl: clamp(1.5rem, 3.5vw, 2rem);
    --fs-lg: clamp(1.3rem, 3vw, 1.8rem);
    --fs-md: clamp(1rem, 2.5vw, 1.3rem);
    --fs-sm: clamp(0.875rem, 2vw, 1rem);
  }

  .ourjourney__timeline__item__content {
    padding: 15px;
  }

  .timeline__image {
    height: 160px;
  }

  /* Improve touch targets */
  .ourjourney__timeline__item::before {
    width: 24px;
    height: 24px;
    left: -13px;
  }
}

/* Timeline dots for all screen sizes */
.ourjourney__timeline__item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  padding-left: 30px;
}

/* Timeline dot styling for all screens */
.ourjourney__timeline__item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 15px;
  width: 20px;
  height: 20px;
  background: var(--primary-light);
  border-radius: 50%;
  border: 4px solid var(--primary-dark);
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Timeline vertical line */
.ourjourney__timeline__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  height: calc(100% + 40px);
  width: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

/* Hover effect for timeline dots */
.ourjourney__timeline__item:hover::before {
  transform: scale(1.2);
  box-shadow: 0 0 15px var(--primary-light);
}

/* Adjust timeline layout for different screen sizes */
@media (min-width: 769px) {
  .ourjourney__timeline__item {
    padding-left: 40px;
  }

  .ourjourney__timeline__item::before {
    left: -10px;
  }

  .ourjourney__timeline__item:not(:last-child)::after {
    left: 0;
  }

  .ourjourney__timeline__item__date {
    position: relative;
    margin-right: 20px;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .ourjourney__timeline__item {
    padding-left: 30px;
    border-left: none;
  }

  .ourjourney__timeline__item::before {
    left: -10px;
    top: 0;
  }

  .ourjourney__timeline__item:not(:last-child)::after {
    left: 0;
    top: 20px;
  }

  .ourjourney__timeline__item__content {
    margin-left: 10px;
  }
}

/* Small screen adjustments */
@media (max-width: 480px) {
  .ourjourney__timeline__item {
    padding-left: 25px;
  }

  .ourjourney__timeline__item::before {
    width: 16px;
    height: 16px;
    left: -8px;
    border-width: 3px;
  }

  .ourjourney__timeline__item:not(:last-child)::after {
    left: 0;
  }
}

/* Add pulse animation for timeline dots */
@keyframes dotPulse {
  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);
  }
}

.ourjourney__timeline__item:hover::before {
  animation: dotPulse 1.5s infinite;
}

/* Animation Keyframes */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Add these classes to elements */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.scale-in {
  opacity: 0;
  animation: scaleIn 0.5s ease-out forwards;
}

/* Timeline animations */
.ourjourney__timeline__item {
  opacity: 0;
  transform: translateX(-100px);
}

.ourjourney__timeline__item.animate {
  animation: slideIn 0.6s ease-out forwards;
}

/* Stats counter animation */
.stat__number {
  display: inline-block;
  opacity: 1;
  transform: translateY(20px);
  margin-bottom: 10px;
}

.stat__number.animate {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Smooth transitions */
.ourjourney__hero h2,
.ourjourney__hero p,
.help-card,
.testimonial__card,
.faq__item {
  transition: all 0.3s ease-out;
}

/* Hover animations */
.help-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial__card:hover {
  transform: scale(1.02);
}

/* Keep only essential animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Subtle hover transitions */
.help-card,
.testimonial__card,
.faq__item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial__card:hover {
  transform: scale(1.01);
}

/* Timeline dot animation */
.ourjourney__timeline__item::before {
  transition: transform 0.3s ease;
}

.ourjourney__timeline__item:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 10px var(--primary-light);
}

/* Remove all previous animation keyframes and keep only these essential ones */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtle transitions */
.faq__item,
.help-card,
.testimonial__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Timeline dot subtle animation */
.ourjourney__timeline__item::before {
  transition: transform 0.3s ease;
}

.ourjourney__timeline__item:hover::before {
  transform: scale(1.1);
}

/* Subtle hover effects */
.help-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial__card:hover {
  transform: scale(1.01);
}

/* FAQ transitions */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq__icon i {
  transition: transform 0.3s ease;
}

/* Remove all animation-related styles and keep only essential transitions for FAQ */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq__icon i {
  transition: transform 0.3s ease;
}

/* Simple hover states without animations */
.help-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.testimonial__card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq__question:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Stats styling without animations */
.stat__number {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.stat__label {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: 10px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 15px;
}

/* Navigation Styles */
.nav {
  height: 70px;
  background: white;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.nav .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo-img {
  height: 35px;
  width: auto;
}

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav__links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 70px;
}

.nav__link {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.nav__link:hover,
.nav__link--active {
  background-color: var(--hover-bg);
  color: var(--primary-color);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  display: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border: 1px solid var(--border-color);
  border-top: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-item {
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid var(--border-color);
  white-space: normal;
}

.dropdown-item:hover {
  background-color: var(--hover-bg);
  color: var(--primary-color);
}

/* Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #333;
  transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    transition: 0.3s;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav__links {
    width: 100%;
    flex-direction: column;
    height: auto;
    padding: 0;
    margin: 0;
  }

  .nav__link {
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    justify-content: space-between;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    display: none;
    background: #f8f9fa;
  }

  .dropdown-item {
    padding: 12px 40px;
  }

  /* Fix dropdown arrow alignment */
  .nav__link i {
    margin-left: 8px;
  }
}
