  :root {
        --emerald: #2e8b57;
        --gold: #c8a951;
        --blue: #1e6ea7;
        --white: #ffffff;
        --light-gray: #f5f5f5;
        --dark-gray: #333333;
        --transition: all 0.3s ease;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Jost", sans-serif;
        line-height: 1.6;
        color: var(--dark-gray);
        background-color: var(--white);
        overflow-x: hidden;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-family: "Jost", sans-serif;
        font-weight: 600;
        margin-bottom: 1rem;
      }

      a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition);
      }

      ul {
        list-style: none;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      .btn {
        display: inline-block;
        padding: 12px 28px;
        border-radius: 4px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: var(--transition);
        cursor: pointer;
        border: none;
        font-family: "Poppins", sans-serif;
      }

      .btn-primary {
        background-color: var(--emerald);
        color: var(--white);
      }

      .btn-primary:hover {
        background-color: #267349;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(46, 139, 87, 0.2);
      }

      .btn-secondary {
        background-color: var(--gold);
        color: var(--dark-gray);
      }

      .btn-secondary:hover {
        background-color: #b89a47;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(200, 169, 81, 0.2);
      }

      .btn-outline {
        background-color: transparent;
        color: var(--white);
        border: 2px solid var(--white);
      }

      .btn-outline:hover {
        background-color: var(--white);
        color: var(--emerald);
      }

      .section {
        padding: 80px 0;
      }

      .section-title {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
      }

      .section-title h2 {
        font-size: 2.5rem;
        color: var(--emerald);
        display: inline-block;
      }

      .section-title h2:after {
        content: "";
        display: block;
        width: 70px;
        height: 4px;
        background-color: var(--gold);
        margin: 15px auto;
      }

     /* Header Styles */
header {
  background-color: black;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  color: white;
}

      header.scrolled {
        padding: 10px 0;
        background-color: rgba(255, 255, 255, 0.95);
        color: black;
      }

      .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
      .logo {
        display: flex;
        align-items: center;
      }

      .logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

      .logo-text {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-size: 1.5rem;
      }

      .logo-text span {
        color: var(--emerald);
      }

     .nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}


      .nav-menu li {
        margin-left: 30px;
      }

    .nav-menu a {
  font-weight: 500;
  padding: 5px 0;
  position: relative;
  transition: var(--transition);
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--emerald);
  transition: width 0.3s ease;
}


      .nav-menu a:hover {
        color: var(--emerald);
      }

      .nav-menu a:hover:after {
        width: 100%;
      }

      .nav-menu a.active {
        color: var(--emerald);
      }

      .nav-menu a.active:after {
        width: 100%;
      }

      .hamburger {
        display: none;
        cursor: pointer;
      }

      .hamburger div {
        width: 25px;
        height: 3px;
        background-color:gold;
        margin: 5px;
        transition: var(--transition);
      }

      /* Hero Section */
      .hero {
        height: 100vh;
        background: linear-gradient(rgba(0, 0, 0, 0.534), rgba(0, 0, 0, 0.521)),
          url("https://images.unsplash.com/photo-1611144727915-ef30a08aaeb3?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8N3x8bmFpcm9iaXxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&q=60&w=500");
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        color: var(--white);
        text-align: center;
        position: relative;
      }

      .hero-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
        color: var(--gold);
      }

      .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }

      .hero-btns {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
      }

      .scroll-down {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--white);
        font-size: 1.5rem;
        animation: bounce 2s infinite;
      }

      @keyframes bounce {
        0%,
        20%,
        50%,
        80%,
        100% {
          transform: translateY(0) translateX(-50%);
        }
        40% {
          transform: translateY(-20px) translateX(-50%);
        }
        60% {
          transform: translateY(-10px) translateX(-50%);
        }
      }
        .typewriter-text {
        display: inline-block;
        overflow: hidden;
        border-right: 3px solid var(--accent);
        white-space: nowrap;
        margin: 0 auto;
        animation: typing 3.5s steps(40, end),
          blink-caret 0.75s step-end infinite;
      }

      /* About Section */
      .about {
        background-color: black;
      }
    .about-texts{
      color: rgba(255, 255, 255, 0.808);
    }

      .about-content {
        display: flex;
        align-items: center;
        gap: 50px;
        
      }

      .about-img {
        flex: 1;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      }

      .about-img img {
        width: 100%;
        height: auto;
        display: block;
        transition: var(--transition);
      }

      .about-img:hover img {
        transform: scale(1.05);
      }

      .about-text {
        flex: 1;
      }

      .about-text h2 {
        color: var(--emerald);
        margin-bottom: 20px;
      }

      .about-text p {
        margin-bottom: 20px;
      }

      .values {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 30px;
      }

      .value-item {
        flex: 1 1 calc(50% - 20px);
        background-color: var(--white);
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        text-align: center;
        transition: var(--transition);
      }

      .value-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      }

      .value-icon {
        font-size: 2rem;
        color: var(--emerald);
        margin-bottom: 15px;
      }

      /* Vision Section */
      .vision-pillars {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }

      .pillar {
        background-color: black;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: var(--transition);
        text-align: center;
        border-top: 4px solid var(--emerald);
        color: rgba(255, 255, 255, 0.815);
      }

      .pillar:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      }

      .pillar-icon {
        font-size: 2.5rem;
        
        color: var(--emerald);
        margin-bottom: 20px;
      }

      .pillar h3 {
        color: var(--emerald);
        margin-bottom: 15px;
      }

      /* News Section */
      .news {
        background-color: black;
      }

      .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }

      .news-card {
        background-color: var(--white);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: var(--transition);
      }

      .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      }

      .news-img {
        height: 200px;
        overflow: hidden;
      }

      .news-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
      }

      .news-card:hover .news-img img {
        transform: scale(1.1);
      }

      .news-content {
        padding: 20px;
      }

      .news-date {
        color: var(--gold);
        font-size: 0.9rem;
        margin-bottom: 10px;
      }

      .news-content h3 {
        margin-bottom: 10px;
      }

      .news-content p {
        margin-bottom: 15px;
        font-size: 0.95rem;
      }

      .read-more {
        color: var(--emerald);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
      }

      .read-more i {
        margin-left: 5px;
        transition: var(--transition);
      }

      .read-more:hover i {
        transform: translateX(5px);
      }

      /* Media Section */
      .media-tabs {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
        border-bottom: 1px solid #eee;
      }

      .tab-btn {
        padding: 12px 25px;
        background: none;
        border: none;
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        cursor: pointer;
        position: relative;
        transition: var(--transition);
      }

      .tab-btn:after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 0;
        height: 3px;
        background-color: var(--emerald);
        transition: var(--transition);
      }

      .tab-btn.active {
        color: var(--emerald);
      }

      .tab-btn.active:after {
        width: 100%;
      }

      .tab-content {
        display: none;
      }

      .tab-content.active {
        display: block;
        animation: fadeIn 0.5s ease;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
      }

      .gallery-item {
        border-radius: 8px;
        overflow: hidden;
        height: 200px;
        position: relative;
        cursor: pointer;
      }

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

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

      .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(46, 139, 87, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: var(--transition);
      }

      .gallery-item:hover .gallery-overlay {
        opacity: 1;
      }

      .gallery-overlay i {
        color: var(--white);
        font-size: 2rem;
      }

      .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
        border-radius: 8px;
        margin-bottom: 20px;
      }

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

      /* Volunteer Section */
      .volunteer {
        background: linear-gradient(
            rgba(46, 139, 87, 0.9),
            rgba(46, 139, 87, 0.9)
          ),
          url("https://images.unsplash.com/photo-1551135040-6a4a3a5a9501?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
        background-size: cover;
        background-position: center;
        color: var(--white);
        text-align: center;
      }

      .volunteer h2 {
        color: var(--white);
      }

      .volunteer p {
        max-width: 700px;
        margin: 0 auto 40px;
      }

      .volunteer-form {
        max-width: 600px;
        margin: 0 auto;
        background-color: rgba(255, 255, 255, 0.1);
        padding: 40px;
        border-radius: 10px;
        backdrop-filter: blur(10px);
      }

      .form-group {
        margin-bottom: 20px;
        text-align: left;
      }

      .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
      }

      .form-control {
        width: 100%;
        padding: 12px 15px;
        border: none;
        border-radius: 4px;
        font-family: "Lato", sans-serif;
        font-size: 1rem;
      }

      /* Contact Section */
      .contact-content {
        display: flex;
        gap: 50px;
       
      }

      .contact-info {
        flex: 1;
      }

      .contact-form {
        flex: 1;
      }

      .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 30px;
      }

      .contact-icon {
        width: 50px;
        height: 50px;
        background-color: var(--emerald);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        margin-right: 15px;
        flex-shrink: 0;
      }

      .contact-details h3 {
        margin-bottom: 5px;
      }

      .map-container {
        height: 300px;
        border-radius: 8px;
        overflow: hidden;
        margin-top: 30px;
        
      }

      .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
      }

      /* Footer */
      footer {
        background-color: black;
        color: var(--white);
        padding: 70px 0 20px;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 50px;
      }

      .footer-col h3 {
        color: var(--emerald);
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
      }

      .footer-col h3:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: var(--gold);
      }

      .footer-col p {
        margin-bottom: 20px;
      }

      .social-links {
        display: flex;
        gap: 15px;
      }

      .social-links a {
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
      }

      .social-links a:hover {
        background-color: var(--emerald);
        transform: translateY(-5px);
      }

      .footer-links li {
        margin-bottom: 12px;
      }

      .footer-links a {
        color: #bbb;
        transition: var(--transition);
      }

      .footer-links a:hover {
        color: var(--emerald);
        padding-left: 5px;
      }

      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      /* Floating WhatsApp Button */
      .whatsapp-float {
        position: fixed;
        bottom: 25px;
        right: 25px;
        width: 60px;
        height: 60px;
        background-color: #25d366;
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 100;
        transition: var(--transition);
        animation: pulse 2s infinite;
      }

      .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      }

      @keyframes pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        70% {
          box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
      }

      /* Back to Top Button */
      .back-to-top {
        position: fixed;
        bottom: 25px;
        left: 25px;
        width: 50px;
        height: 50px;
        background-color: var(--emerald);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
      }

      .back-to-top.active {
        opacity: 1;
        visibility: visible;
      }

      .back-to-top:hover {
        background-color: #267349;
        transform: translateY(-3px);
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .about-content {
          flex-direction: column;
        }

        .contact-content {
          flex-direction: column;
        }

        .hero h1 {
          font-size: 2.8rem;
        }
      }

      @media (max-width: 768px) {
        .nav-menu {
          position: fixed;
          top: 80px;
          right: -100%;
          width: 80%;
          height: calc(100vh - 80px);
          background-color: black;
          flex-direction: column;
          align-items: center;
          justify-content: flex-start;
          padding-top: 50px;
          transition: var(--transition);
          box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        }

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

        .nav-menu li {
          margin: 15px 0;

        }

        .hamburger {
          display: block;
         
        }
       

        .hamburger.active div:nth-child(1) {
          transform: rotate(-45deg) translate(-5px, 6px);
        }

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

        .hamburger.active div:nth-child(3) {
          transform: rotate(45deg) translate(-5px, -6px);
        }

        .hero h1 {
          font-size: 2.2rem;
        }

        .hero-btns {
          flex-direction: column;
          align-items: center;
        }

        .hero-btns .btn {
          width: 100%;
          max-width: 250px;
          margin-bottom: 15px;
        }

        .section-title h2 {
          font-size: 2rem;
        }

        .media-tabs {
          flex-wrap: wrap;
        }
      }

      @media (max-width: 576px) {
        .logo-text {
          font-size: 1.2rem;
        }

        .hero h1 {
          font-size: 1.8rem;
        }

        .section {
          padding: 60px 0;
        }

        .value-item {
          flex: 1 1 100%;
        }

        .footer-content {
          grid-template-columns: 1fr;
        }
      }