/* --- Navbar --- */
.navbar {
    font-family: 'Poppins', sans-serif;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

.navbar-brand {
    font-size: 22px;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff !important;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #00c896 !important;
}

.navbar-nav .nav-link.active {
    color: #00c896 !important;
    font-weight: 600;
}


.policy-container{
max-width:900px;
margin:auto;
padding:60px 20px;
line-height:1.7;
}

.policy-container h1{
margin-bottom:20px;
color:#0f2e1c;
}

.policy-container h2{
margin-top:25px;
color:#0f2e1c;
}

.policy-container p{
margin-top:10px;
}

/* HERO SECTION (shared) */
.hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(-45deg,#00b894,#00cec9,#009688,#006d5b);
    background-size: 400% 400%;
    animation: gradientMove 11s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
}

.hero-content p.lead {
    font-size: 20px;
    opacity: 0.9;
}


.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    opacity: 0.7;
    margin-bottom: 60px;
}

/* Cards and Team */
.service-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg,#eafff7,#f2fffc);
}

/* CTA */
.cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg,var(--dark),var(--primary));
    color: white;
}

.btn-dark-green {
    background: linear-gradient(135deg, #0f5132, #198754);
    color: white;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-dark-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* --- Footer --- */
.footer {
  background: #0f2e1c;
  color: #ffffff;
  padding: 60px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-column {
  max-width: 300px;
}

.footer-column h3 {
  margin-bottom: 15px;
  color: #6cff9b;
}

.footer-column p {
  line-height: 1.6;
  font-size: 14px;
}

.footer-column a {
  color: #ffffff;
  text-decoration: none;
}

.footer-column a:hover {
  color: #6cff9b;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 15px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #6cff9b;
}

@keyframes gradientMove{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}