
/* Navbar Styles */
/* Logo Styling */
.navbar .logo {
    display: flex;
    align-items: center;
}
  
.navbar .logo img {
    max-height: 50px; /* Adjust the height of your logo */
    width: auto;      /* Maintain aspect ratio */
    margin-right: 1rem; /* Optional spacing between the logo and menu */
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0); /* Transparent background */
    backdrop-filter: blur(0px); /* Blur effect behind the navbar */
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0); /* Subtle shadow */
  }
  
  .navbar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    margin: 0 1rem;
    transition: color 0.3s ease;
  }
  
  .navbar a:hover {
    color: #71d5c0; /* Accent color on hover */
  }
  
  /* Responsive Menu */
  .navbar .menu {
    display: flex;
  }
  
  .navbar .hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
  }
  
  /* Media Query for Small Screens */
  @media (max-width: 768px) {
    .navbar .menu {
      display: none;
      flex-direction: column;
      background: rgba(255, 255, 255, 0.9);
      position: absolute;
      top: 100%;
      right: 0;
      width: 100%;
      padding: 1rem;
    }
  
    .navbar .menu.open {
      display: flex;
    }
  
    .navbar .hamburger {
      display: block;
    }
  }


  /* nav bar for about us */
  .navbar2 .logo2 {
    display: flex;
    align-items: center;
}
  
.navbar2 .logo2 img {
    max-height: 50px; /* Adjust the height of your logo */
    width: auto;      /* Maintain aspect ratio */
    margin-right: 1rem; /* Optional spacing between the logo and menu */
}

.navbar2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0); /* Transparent background */
    backdrop-filter: blur(0px); /* Blur effect behind the navbar */
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding-bottom: 0em;
  }
  
  .navbar2 a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    margin: 0 1rem;
    transition: color 0.3s ease;
  }
  
  .navbar2 a:hover {
    color: #004369; /* Accent color on hover */
  }
  
  /* Responsive Menu */
  .navbar2 .menu {
    display: flex;
  }
  
  .navbar2 .hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
  }
  
  /* Media Query for Small Screens */
  @media (max-width: 768px) {
    .navbar .menu {
      display: none;
      flex-direction: column;
      background: rgba(255, 255, 255, 0.9);
      position: absolute;
      top: 100%;
      right: 0;
      width: 100%;
      padding: 1rem;
    }
  
    .navbar .menu.open {
      display: flex;
    }
  
    .navbar .hamburger {
      display: block;
    }
  }
/* General Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  /* Hero Section */
  .opener {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.4)
      ),
      url("images/orphans.jpeg") no-repeat center center/cover;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .opener h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: #f3f3f3; 
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  
  .opener p {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #f3f3f3;
  }
  
  .opener .arrow-down {
    margin-top: 2rem;
    font-size: 2rem;
    color: white;
    animation: bounce 1.5s infinite;
  }
  
  /* Statistics Section */
  .stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #004369; 
    color: white;
    padding: 2rem 0;
    font-size: 1.5rem;
  }
  
  .stats .stat {
    text-align: center;
  }
  
  .stats .stat h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  
  .stats .stat p {
    font-size: 1rem;
    font-weight: lighter;
  }
  
  /* Keyframe for Arrow Animation */
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  

/* STYLE IMAGES */
.open {
    width: 100%
 }
/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 3em;
    background: #2f7ca8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
  }
  
  .hero-text {
    background-color: #2f7ca8; 
    padding: 0;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    white-space: nowrap; /* Prevents the text from wrapping */
    animation: moveText 10s linear infinite; /* Apply animation */
  }
  
  @keyframes moveText {
    0% {
      transform: translateX(100%); /* Start off-screen to the right */
    }
    100% {
      transform: translateX(-100%); /* Move off-screen to the left */
    }
  }
  
  
  /* Mission Section */
  .mission {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: white;
  }
  
  .mission img {
    max-width: 100%;
    height: auto;
    flex: 1 1 50%;
    object-fit: cover;
  }
  
  .mission-content {
    flex: 1 1 50%;
    padding: 2rem;
    text-align: left;
  }
  
  .mission-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
  }
  
  .mission-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
  }
  
  .mission-content a {
    color: #000;
    text-decoration: underline;
  }
  
  .mission-buttons {
    display: flex;
    gap: 1rem;
  }
  
  .mission-buttons a {
    padding: 0.8rem 1.5rem;
    border: 2px solid #000;
    background: none;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .mission-buttons a:hover {
    background: #000;
    color: #fff;
  }
  
  /* Footer Section */
  .footer {
    padding: 1rem;
    text-align: center;
    background: #ffe6e6;
    color: #333;
    font-size: 0.9rem;
  }
 
  .partnership-section {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .partnership-section h2 {
    font-family:Arial, Helvetica, sans-serif;
    padding-top: 2em;
    padding-bottom: 1em;
  }

  .partnership-section p {
    font-family: Georgia, 'Times New Roman', Times, serif;
  }

  .partnership-section .logos {
    padding: 2em;
    margin-bottom: 2em;
  }

/* General Reset */
  
  /* Our Blue Section */
  .our-blue {
    padding: 50px 20px;
    text-align: center;
    background-color: #004369; /* Yellow background */
  }
  
  .our-blue .header h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #ffffff; /* Dark text */
  }
  
  .our-blue .header h2 {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #f3f3f3;
  }
  
  /* Cards Container */
  .cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  
  /* Individual Card */
  .card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    padding: 20px;
    text-align: center;
  }
  
  .card img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }
  
  .card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
  }
  
  .card .description {
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .cards-container {
      flex-direction: column;
      align-items: center;
    }
  
    .card {
      max-width: 90%;
    }
  }
  
/* impact section */

/* General Reset */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff; /* Deep purple background */
  }
  
  /* Impact Section */
  .impact-section {
    padding: 50px 20px;
    text-align: center;
  }
  
  .impact-section h2 {
    font-size: 2rem;
    color: #000000; /* Gold color for the heading */
    margin-top: 60px;;
    margin-bottom: 60px;
    font-family: Georgia, 'Times New Roman', Times, serif;

  }
  .impact-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  /* Individual Cards */
  .impact-card {
    background-color: #004369;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    max-width: 300px;
  }
  
  .impact-card img {
    width: 100%;
    height: auto;
    border-bottom: 5px solid #f3f3f3; /* Purple border under the image */
  }
  
  .impact-card h3 {
    font-size: 1.5rem;
    color: #f3f3f3; /* Light purple text */
    margin: 20px 0 10px;
  }
  
  .impact-card p {
    font-size: 1rem;
    color: #f3f3f3;
    padding: 0 15px;
    margin-bottom: 20px;
  }
  
  .impact-card button {
    background-color: #ffdf78; /* Yellow button */
    color: #004369; /* Purple text */
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
  }
  
  .impact-card button:hover {
    background-color: #003756; /* Darker yellow on hover */
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .impact-container {
      flex-direction: column;
      align-items: center;
    }
  
    .impact-card {
      max-width: 90%;
    }
  }
  
  .learning {
    padding: 50px 20px;
    text-align: center;
  }

  .learn-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .learn-content h1 {
    font-size: 2rem;
    color: #000000; /* Gold color for the heading */
    margin-top: 60px;;
    margin-bottom: 60px;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }

  .learn-content p {
    font-size: 1rem;
    color:#000000;
    margin-bottom: 20px;
    padding: 0 15px;
  }

  .learnpics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .learnpics img {
    width: 30%;
  }
/* about us section */

  
  /* Team Section */
  .team-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
  }
  
  .team-section h2 {
    font-size: 2rem;
    color: #000000; /* Gold color for the heading */
    margin-top: 60px;;
    margin-bottom: 60px;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  
  /* Team Members Container */
  .team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  /* Team Member Card */
  .team-member {
    max-width: 300px;
    text-align: left;
  }
  
  .team-member img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .team-member h3 {
    font-size: 1.5rem;
    color: #000;
    margin: 10px 0 5px;
  }
  
  .team-member .role {
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
    margin-bottom: 10px;
  }
  
  .team-member .bio {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.4;
  }
  