* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Nunito", sans-serif;
    color: #222;
  }
  
  /*to prevent purple visited link*/
  a {
    color: inherit;
    text-decoration: none;
  }
  a:visited {
    color: inherit;
  }
  
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 10px 5vw;
    height: 80px;
    box-sizing: border-box;
  }
  
  .logo {
    height: 160px;
    transform: translateX(-30px);
    object-fit: contain;
  }
  
  .nav-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #222;
    font-size: 1rem;
    font-weight: 500;
  }
  
  /* Buttons on the right */
  .nav-buttons {
    display: flex;
    align-items: center;
  }
  
  .nav-buttons .btn {
    margin-left: 0.75rem;
  }
  
  .btn {
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 16px;
    transition: background-color 0.3s;
  }
  
  .btn.yellow {
    background-color: #fdd835;
    color: #000;
  }
  
  .btn.yellow:hover {
    background-color: #fbc02d;
  }

  /* for mobile navbar*/
/* Base styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    position: relative;
  }
  
  .nav-links ul,
  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
  }
  
  .mobile-menu {
    display: none;
  }
  
  .hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
  }
  
  /* Mobile styles */
  @media (max-width: 768px) {
    .desktop-nav {
      display: none !important;
    }
  
    .hamburger {
      display: block;
    }
  
    .mobile-menu {
      display: none;
      position: absolute;
      top: 100%;
      right: 0;
      width: 100%;
      background-color: #fff;
      z-index: 1000;
      padding: 1rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      color: #222;
      
    }
  
    .mobile-menu a {
      color: #111 !important; /* Change to black or any theme color */
      text-decoration: none;
      font-weight: 600;
      font-family: 'Nunito', sans-serif;
    }
    .mobile-menu a:hover {
      color: #fdd835; /* optional hover effect */
    }
    
  
    .mobile-menu.active {
      display: block;
    }
  
    .mobile-menu ul {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
  
    .mobile-menu .btn {
      width: 80%;
      margin: 0.5rem auto;
    }
  }

 /* Top white block */
.projects-top {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
  }
  
  .projects-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000; /* Black heading */
    margin: 0;
  }
  
  /* Bottom black block */
  .projects-bottom {
    background: #000000;
    padding: 80px 20px;
    text-align: center;
  }
  
  .projects-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* White text on black background */
  .projects-text {
    font-size: 22px;
    line-height: 1.7;
    color: #ffffff; /* White text */
    margin-bottom: 28px;
  }
  
  :root {
    --max-width: 1000px;
    --accent: #0d2b57;
  }
  
  /* Section wrapper */
  .project-section {
    background: #ffffff;
    padding: 60px 20px;
    color: #333;
  }
  
  /* Align and constrain width */
  .project-wrap {
    max-width: var(--max-width);
    margin: 0 auto;
  }
  
  /* Header layout */
  .project-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
  }
  
  .project-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f6ff;
    font-size: 26px;
    color: var(--accent);
    border: 2px solid rgba(13, 43, 87, 0.06);
  }
  
  /* Label above the title */
  .project-label {
    font-size: 13px;
    color: #777;
  }
  
  /* Main title */
  .project-title {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    color: #000;
  }
  
  /* Image container */
  .project-media {
    margin: 14px 0 18px;
  }
  
  .project-image-wrap {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    background: #fff;
  }
  
  .project-media {
    position: relative;
    width: 100%;
    margin: 20px 0;
  }
  
  .slider {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  
  /* Slide base */
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Left/right arrows */
  .slider-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 15px;
    pointer-events: none;
  }
  
  .slider-controls span {
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    font-size: 20px;
    transition: 0.3s;
  }
  
  .slider-controls span:hover {
    background: rgba(0,0,0,0.85);
  }
  
  
  /* Body text */
  .project-body p {
    font-size: 16px;
    color: #222;
    line-height: 1.75;
    max-width: 900px;
  }

  /* Footer Base Styles */
.footer {
    background-color: #fff;
    color: #000;
    font-family: inherit;
    margin-top: 60px;
  }
  
  .footer-top {
    background-color: #f5d400;
    padding: 30px 20px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .footer-main {
    text-align: center;
    padding: 40px 20px;
  }
  
  .footer-cta {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  
  .volunteer-footer-btn {
    padding: 12px 25px;
    background-color: #f5d400;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 40px;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
  }
  
  .footer-links div {
    text-align: left;
  }
  
  .footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .footer-links a {
    display: block;
    color: #000;
    text-decoration: none;
    margin-bottom: 6px;
    font-size: 0.95rem;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .footer-bottom p {
    margin: 10px 0;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
  }
  
  .social-icons img {
    width: 28px;
    height: 28px;
    filter: invert(1);
    /*background-color: #000;*/
    padding: 15px;
    border-radius: 50%;
    color: #000;
  }
  
  /* Mobile Responsive */
  @media (max-width: 720px) {
    .project-title {
      font-size: 28px;
    }
  
    .project-icon {
      width: 48px;
      height: 48px;
      font-size: 22px;
    }
  }
  
  
  