 :root {
            --primary-color: #2c5530;
            --secondary-color: #4a7c59;
            --accent-color: #ff6b35;
            --light-green: #e8f5e8;
            --text-dark: #2d3748;
            --text-light: #718096;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding: 15px 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }

        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            transition: color 0.3s ease;
            position: relative;
            margin: 0 10px;
        }

        .nav-link:hover {
            color: var(--accent-color) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .btn-primary {
            background: var(--accent-color);
            border: none;
            padding: 15px 35px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .btn-primary:hover {
            background: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
        }

        .btn-outline-light {
            border: 2px solid white;
            color: white;
            padding: 15px 35px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .btn-outline-light:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Stats Section */
        .stats {
            background: var(--light-green);
            padding: 80px 0;
        }

        .stat-card {
            text-align: center;
            padding: 40px 25px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 15px;
            display: block;
        }

        .stat-label {
            color: var(--text-light);
            font-weight: 500;
            font-size: 0.95rem;
        }

        /* About Section */
        .about {
            padding: 120px 0;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 3rem;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark);
        }

        .about-text p {
            margin-bottom: 1.5rem;
        }

        /* Services Section */
        .services {
              
            padding: 120px 0;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            border-top: 4px solid var(--accent-color);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 25px;
        }

        .service-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .service-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Projects Section */
        .projects {
            padding: 120px 0;
        }

        .project-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .project-card:hover {
            transform: translateY(-5px);
        }

        .project-image {
            height: 200px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        .project-content {
            padding: 30px;
        }

        .project-title {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .project-content p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Call to Action */
        .cta {
            background: linear-gradient(135deg, var(--accent-color) 0%, #e55a2b 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .cta h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .cta p {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Footer */
        .footer {
            background: var(--primary-color);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-title {
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }

        .footer-link {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 8px;
        }

        .footer-link:hover {
            color: white;
        }

        .social-icons a {
            display: inline-block;
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 45px;
            margin-right: 15px;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
        }

        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                padding: 120px 0 80px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
            
            .about, .services, .projects {
                padding: 80px 0;
            }
        }

        /* Coming Soon Banner */
        .coming-soon {
            background: var(--accent-color);
            color: white;
            text-align: center;
            padding: 15px 0;
            font-weight: 500;
            font-size: 0.95rem;
        }

        /* Image Placeholders */
        .image-placeholder {
            background: linear-gradient(45deg, #f1f5f9, #e2e8f0);
            border: 2px dashed #cbd5e1;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #64748b;
            text-align: center;
            transition: all 0.3s ease;
        }

        .image-placeholder:hover {
            border-color: var(--accent-color);
            color: var(--accent-color);
        }

        .hero-image-placeholder {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 2px dashed rgba(255,255,255,0.3);
        }

        .dropdown-submenu {
            position: relative;
        }
        .dropdown-submenu > .dropdown-menu {
            top: 0;
            left: 100%;
            margin-top: -1px;
        }
 /* Brand Slider  Section */

 @keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.dpb_brand_slider {
  overflow: hidden;
  padding:  0  0 30px 0;
  white-space: nowrap;
  position: relative;
}

.dpb_brand_slider:before, .dpb_brand_slider:after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}

.dpb_brand_slider:before {
  left: 0;
  background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));
}

.dpb_brand_slider:after {
  right: 0;
  background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));
}

.dpb_brand_slider_items {
  display: inline-block;
  animation: 35s slides infinite linear;
}

.dpb_brand_slider:hover .dpb_brand_slider_items {
  animation-play-state: paused;
}

.dpb_brand_slider img{
  height: 100px;
}

 /* Story */

 .dpb_story .item {
      text-align: center;
    }
    .dpb_story img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
    /* About page */
    .about_page .about-hero {
      background: url('https://source.unsplash.com/1600x500/?rural,india') center/cover no-repeat;
      color: var(--white);
      text-align: center;
      padding: 120px 20px;
      position: relative;
    }

    .about_page .about-hero-overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.5);
    }

    .about_page .about-hero-content {
      position: relative;
      z-index: 2;
    }

    .about_page .impact-number {
      font-size: 2.5rem;
      color: var(--accent-color);
      font-weight: bold;
    }

    .about_page .card-icon {
      font-size: 2.5rem;
      color: var(--accent-color);
    }

    .about_page .timeline {
      border-left: 4px solid var(--primary-color);
      padding-left: 20px;
    }

    .about_page .timeline-item {
      margin-bottom: 20px;
      position: relative;
    }

    .about_page .timeline-item::before {
      content: '';
      position: absolute;
      left: -12px;
      top: 5px;
      width: 16px;
      height: 16px;
      background-color: var(--accent-color);
      border-radius: 50%;
    }
     /* Mission Statement */
     
.mission_statement .mission_wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 50px 20px;
      min-height: 100vh;
    }

    .mission_statement .mission_card {
      background-color: white;
      max-width: 600px;
      padding: 2rem;
      border-radius: 16px;
      box-shadow: 0 12px 24px rgba(0,0,0,0.1);
      text-align: center;
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease;
    }

    .mission_statement .mission_card.show {
      opacity: 1;
      transform: translateY(0);
    }

    .mission_statement .mission_icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1rem auto;
      background-color: #4CAF50;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-size: 2rem;
    }

    .mission_statement .mission_card h2 {
      color: #4CAF50;
      margin-bottom: 1rem;
      font-size: 2rem;
    }

    .mission_statement .mission_card p {
      font-size: 1.2rem;
      line-height: 1.6;
      color: #555;
    }

    
    @media (max-width: 600px) {
      .mission_statement .mission_card {
        padding: 1.5rem;
      }

      .mission_statement .mission_card h2 {
        font-size: 1.5rem;
      }

      .mission_statement .mission_card p {
        font-size: 1rem;
      }
    }