body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #e0eafc;
}

/* Footer Styles */
.footer {
  background-color: #003366;
  color: white;
  padding: 20px 0 10px;
  margin-top: 40px;
  font-size: 0.9em;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-contact {
  flex: 2;
  padding-right: 20px;
}

.footer-links {
  flex: 1;
  text-align: right;
}

.footer-section h3 {
  color: white;
  margin-bottom: 12px;
  font-size: 1.1em;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
  padding: 2px 0;
}

.footer-links a:hover {
  color: #ffcc00;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85em;
}

.icon {
  margin-right: 6px;
  color: #ffcc00;
}

/* Enhanced Responsive Navbar */
.navbar {
  background-color: #003366;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 200px;
}

.logo-image {
  height: 50px;
  width: auto;
  transition: height 0.3s ease;
}

.logo-text {
  font-size: clamp(1rem, 2vw, 1.3em);
  font-weight: bold;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: clamp(10px, 2vw, 20px);
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 10px;
  transition: all 0.3s ease;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  white-space: nowrap;
}

.nav-links a:hover {
  color: #ffcc00;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .logo-image {
    height: 40px;
  }
  
  .nav-links {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 15px;
  }
  
  .logo-container {
    min-width: auto;
  }
  
  .nav-links {
    justify-content: center;
  }
  
  .nav-links a {
    padding: 5px 8px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .logo-text {
    font-size: 1rem;
  }
  
  .nav-links {
    gap: 5px;
  }
  
  .nav-links a {
    padding: 5px;
    font-size: 0.85rem;
  }
}

/* Home Page Styles */
.home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.hero-subtitle {
  font-size: 1.2em;
  color: #003366;
  margin-top: 10px;
}

.intro-section {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.info-card {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h2 {
  color: #003366;
  margin-top: 0;
}

.info-card ul {
  padding-left: 20px;
}

.info-card li {
  margin-bottom: 10px;
}

.mission-statement {
  background-color: #003366;
  color: white;
  padding: 40px;
  border-radius: 8px;
  margin: 40px 0;
  text-align: center;
}

.mission-statement blockquote {
  font-style: italic;
  font-size: 1.2em;
  margin: 0;
}

.mission-statement footer {
  margin-top: 20px;
  font-weight: bold;
}

/* Slideshow Styles */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: 30px auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border-radius: 8px;
  overflow: hidden;
}

/* Change this in your style.css */
.mySlides {
  display: none; /* This hides all slides by default */
}

.mySlides:first-child {
  display: block; /* This shows the first slide by default */
}
.mySlides img {
  width: 100%;
  vertical-align: middle;
}

.slide-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  background-color: rgba(0, 51, 102, 0.7);
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #003366;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* About Page Styles */
.about-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
  line-height: 1.6;
  color: #333;
}

.about-intro {
  margin-bottom: 40px;
}

.about-intro h1 {
  color: #003366;
  margin-bottom: 20px;
  font-size: 2em;
}

.about-intro p {
  font-size: 1.1em;
}

section {
  margin-bottom: 40px;
}

h2 {
  color: #003366;
  margin: 30px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0eafc;
  font-size: 1.6em;
}

h3 {
  color: #003366;
  margin: 25px 0 15px;
  font-size: 1.3em;
}

ul {
  margin: 15px 0;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

.purpose-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.purpose-item {
  background-color: #f8f9fa;
  padding: 20px;
  border-left: 4px solid #003366;
}

.purpose-item h3 {
  margin-top: 0;
  color: #003366;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .purpose-list {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-container {
    padding: 40px;
  }
}

/* /* /* 

/* Events Page Styles */
.events-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

.events-subtitle {
  font-size: 1.2em;
  color: #003366;
  margin-bottom: 30px;
}

/* Event Cards */
.event-card {
  display: flex;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin-bottom: 25px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-card.featured {
  border-left: 5px solid #ffcc00;
}

.event-date {
  background-color: #003366;
  color: white;
  padding: 15px;
  min-width: 70px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.date-day {
  font-size: 1.8em;
  font-weight: bold;
  line-height: 1;
}

.date-month {
  font-size: 1em;
  text-transform: uppercase;
}

.event-details {
  padding: 20px;
  flex: 1;
}

.event-details h2, 
.event-details h3 {
  color: #003366;
  margin-top: 0;
}

.event-meta {
  margin: 10px 0;
  color: #666;
  font-size: 0.9em;
}

.event-meta span {
  margin-right: 15px;
}

.event-button {
  display: inline-block;
  background-color: #003366;
  color: white;
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 15px;
  transition: background-color 0.3s;
}

.event-button:hover {
  background-color: #002244;
}

.event-link {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

.event-link:hover {
  text-decoration: underline;
}

/* Past Events */
.past-events {
  margin-top: 50px;
}

.past-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.past-event {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.past-event img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.past-event h3 {
  padding: 0 15px;
  color: #003366;
}

.past-event p {
  padding: 0 15px 15px;
  color: #666;
}

.view-all-button {
  display: inline-block;
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #003366;
  padding: 8px 25px;
  border-radius: 4px;
  transition: all 0.3s;
}

.view-all-button:hover {
  background-color: #003366;
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    flex-direction: row;
    justify-content: space-around;
    padding: 10px;
  }
  
  .date-day,
  .date-month {
    display: inline-block;
    margin: 0 5px;
  }
}
/* /* /* /* 




/* PDF Gallery Styles */
.event-gallery {
  margin-bottom: 50px;
}

.pdf-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.pdf-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.pdf-card:hover {
  transform: translateY(-5px);
}

.pdf-thumbnail {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.pdf-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pdf-card:hover .pdf-thumbnail img {
  transform: scale(1.05);
}

.pdf-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 51, 102, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.view-button {
  background-color: #ffcc00;
  color: #003366;
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.view-button:hover {
  background-color: white;
}

.pdf-info {
  padding: 20px;
}

.pdf-info h3 {
  margin: 0 0 10px;
  color: #003366;
}

.pdf-info p {
  margin: 0 0 15px;
  color: #666;
  font-size: 0.95em;
}

.pdf-meta {
  display: flex;
  justify-content: space-between;
  color: #888;
  font-size: 0.85em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pdf-gallery {
    grid-template-columns: 1fr;
  }
}