/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }
  
  .hero {
    color: white;
    text-align: center;
    padding: 60px 20px;
    background: maroon;
    border-radius: 16px;
  }
  
  .hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .hero .btn {
    background-color: #0284c7;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
  }
  
  .story {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    align-items: center;
  }
  
  .story img {
    max-width: 100%;
    border-radius: 12px;
    flex: 1;
  }
  
  .story div {
    flex: 1;
  }
  
  .mission-vision {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  .card {
    color: white;
    background: maroon;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 250px;
  }
  
  .team {
    margin-top: 40px;
  }
  
  .team-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .team .card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  .achievements {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    text-align: center;
  }
  
  .achievements h3 {
    font-size: 28px;
    color: #0284c7;
  }
  
  .testimonial-container {
    overflow: hidden; /* Hide overflowing content */
    width: 100%;
    position: relative;
  }
  
  .testimonial-grid {
    display: flex; /* Arrange testimonial in a row */
    gap: 20px;
    transition: transform 0.5s ease-in-out; /* Smooth scrolling effect */
  }
  
  .testimonial-grid blockquote {
    min-width: 100%; /* Each testimonial takes up full width */
    text-align: center;
    font-style: italic;
    color: #555;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .team-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  .card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 250px;
    height: 300px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  
  .card .overlay {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 10px;
    width: 100%;
  }
  
  .card h4 {
    margin: 0;
    font-size: 18px;
  }
  
  .card p {
    margin: 5px 0 0;
    font-size: 14px;
  }

body{
    margin: 0px;
    margin-top: 77px;
    font-size: 20px;
    font-family: 'Segoe UI', sans-serif;
    background-color: rgb(250, 250, 255);
}
.navbar{
    position: fixed;
    z-index: 2;
    top: 0px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: rgb(128, 0, 0);
}
.navbar > :nth-child(2){
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.navbar a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    background-color: rgb(128, 0, 0) ;
    font-size: 20px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.navbar a:hover {
    background-color: rgb(100, 0, 0);
}
.active{
    text-decoration: underline !important;
}
.navbar img{
    width: 60px;
    padding: 10px;
}
.mission-vision {
  display: flex; /* Use Flexbox for horizontal alignment */
  gap: 5px; /* Add spacing between the cards */
  justify-content: center; /* Center the cards horizontally */
  align-items: stretch; /* Ensure all cards have the same height */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.card1 {
  background-color: rgb(247, 220, 220);
  flex: 1; /* Allow cards to grow and take equal space */
  min-width: 250px; /* Set a minimum width for responsiveness */
  max-width: 300px; /* Optional: Limit the maximum width */
  padding: 20px;
  border-radius: 0px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

footer {
  text-align: center;
}
/* General styles for the mode toggle button */
.mode-toggle {
  background-color: maroon;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}
.mode-toggle img{
  width: 20px;
}

.mode-toggle:hover {
  background-color: #a00000;
}

/* Default light mode styles */
body {
  background-color: #ffffff;
  color: #000000;
}

.navbar {
  background-color: maroon;
  color: white;
}

.navbar a {
  color: white;
}

.mode-toggle img {
  width: 20px;
  height: 20px;
}

/* Dark mode styles */
body.dark-mode {
  background-color: #121212;
  color: #ffffff;
}

body.dark-mode .navbar {
  background-color: #1e1e1e;
}

body.dark-mode .navbar a {
  color: #ffffff;
}

body.dark-mode .mode-toggle img {
  filter: invert(1); /* Invert the icon color for better visibility */
}
