:root {
    --eco-green: #1b4332;
    --eco-emerald: #2d6a4f;
    --eco-lime: #52b788;
    --eco-gradient-dark: linear-gradient(135deg, #0f271d 0%, #1b4332 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fafafa;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand font {
    font-weight: 800;
    color: var(--eco-green);
}

.nav-link {
    font-weight: 600;
    color: #555555 !important;
    font-size: 0.9rem;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(45deg, #a3e635, #52b788);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.inner-hero {
    padding: 60px 0;
    background: var(--eco-gradient-dark);
    color: #ffffff;
    border-bottom: 3px solid var(--eco-lime);
}

.btn-eco {
  background-color: var(--eco-green);
  color: #ffffff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  text-decoration: none;
  display: inline-block;
  text-center: center;
}

.btn-eco:hover {
  background-color: var(--eco-emerald);
  color: #ffffff;
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    height: 250px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

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

/* Footer Styles */
footer {
    background: var(--eco-gradient-dark);
    color: #b3c6be;
    padding-top: 5rem;
    padding-bottom: 3rem;
}

footer h5 {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

footer a {
    color: #b3c6be;
    text-decoration: none;
    font-size: 0.85rem;
}

footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 25px;
    margin-top: 50px;
}