body {
    font-family: 'Inter', sans-serif;
    background-color: #131410;
    color: #fff;
    scroll-behavior: smooth;
}

.header {
    background: #131410;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #373935;
    /* box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); */

}

.feature-card {
    background-color: #212220;
    /* Card/secondary background */
    border: 1px solid #373935;
    /* Divider color */
    border-radius: 8px;
}


.section-title {
    color: #B0E346;
}

.footer-bg {
    background-color: #212220;
}

.card {
    background: rgba(33, 34, 32, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #373935;
    border-radius: 8px;
}

.glow-effect {
    box-shadow: 0 0 15px 5px rgba(176, 227, 70, 0.25);
}

/* Navbar Styles */
.nav-link {
  color: #e5e7eb;
  font-weight: 500;
  font-size: 1rem; /* normal size */
  padding: 0.18rem 0.55rem; /* normal padding */
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.nav-link:hover {
  color: #B0E346;
  text-decoration: none;
  background: none;
  box-shadow: none;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(19, 20, 16, 0.96);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  transition: opacity 0.3s;
}
.mobile-nav-overlay.active {
  display: block;
}
.mobile-nav-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-nav-link {
  color: #fff;
  font-size: 1.15rem; /* normal size */
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.22rem 0.7rem; /* normal padding */
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-align: center;
}
.mobile-nav-link:hover {
  color: #B0E346;
  text-decoration: none;
  background: none;
  box-shadow: none;
}
@media (max-width: 767px) {
  .mobile-nav-overlay {
    display: none;
  }
  .mobile-nav-overlay.active {
    display: block;
  }
}

/* Divider style for sections */
.section-divider {
    border: none;
    border-top: 2px solid #373935;
    margin: 0;
}

/* Primary accent utility class */
.text-primary-green {
    color: #B0E346 !important;
}

.icon-primary-green {
    color: #B0E346 !important;
}





/* Forms */
input,
select,
textarea {
    background-color: #212220 !important; /* matches card/form bg */
    color: #fff !important;
    border: 1px solid #373935 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    font-size: 1rem;
    padding: 0.625rem 0.875rem !important; /* vertical and horizontal padding */
}

input::placeholder,
textarea::placeholder {
    color: #b0b0b0 !important;
    opacity: 1;
}

.form-submit-button {
    background-color: #B0E346;
    color: #131410;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    font-size: 1.05rem;
}


.form-submit-button:hover {
    background-color: #C6F06E;
}

.form-submit-button:disabled {
    background-color: #303030;
    color: #484848;
    cursor: not-allowed;
}





/* Buttons */
.app-button {
    color: #23241f;
    background-color: #B0E346;
    border: 1px solid #B0E346;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    outline: none;
}

.app-button:hover, .app-button:focus {
    color: #23241f;
    background-color: #C6F06E;
    border-color: #C6F06E;
    transform: scale(1.03);
}

.app-button-outline {
    background-color: #23241f;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    border: 1px solid #373935;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    outline: none;
}

.app-button-outline:hover, .app-button-outline:focus {
    background-color: #373935;
    color: #B0E346;
    transform: scale(1.03);
    border-color: #B0E346;
}





/* Image Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 9/16;
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
    background-color: #212220;
    border: 1px solid #373935;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-slide {
    display: none;
    /* Hidden by default */
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    aspect-ratio: 9/16;
}

.slider-slide.active {
    display: block;
    /* Show active slide */
    animation: fadeIn 0.8s;
}

@keyframes fadeIn {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

.slider-dots {
    text-align: center;
    padding: 10px 0;
}

.slider-dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #4a5568;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.slider-dot.active,
.slider-dot:hover {
    background-color: #B0E346;
}

