/* Body layout */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f1f8e9;
  font-family: 'Segoe UI', sans-serif;
}

.logo-image {
  max-width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
}

/* Navigation Bar */
.navbar {
  width: 100%;
  background-color: #6a1b9a;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.navbar ul li {
  margin: 10px 20px;
}

.navbar ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.3s;
}

.navbar ul li a:hover {
  background-color: #8e24aa;
}

/* Banner styles */
.banner {
  background: 
    linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)),
    url('https://i.ibb.co/ZBssn4N/water-background.jpg');
  background-size: cover;
  background-position: center;
  padding: 40px 60px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  width: 90%;
  margin-top: 50px;
  animation: fadeIn 1s ease-in-out;
}
.banner {
  background: linear-gradient(to right, #f3e5f5, #e1f5fe);
  padding: 40px 60px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  width: 90%;
  margin-top: 50px;
  animation: fadeIn 1s ease-in-out;
}

.banner h1 {
  color: #2c3e50;
  font-size: 48px;
  margin: 10px 0;
}

.banner h3 {
  color: #6a1b9a;
  margin: 10px 0;
  font-size: 26px;
  font-style: italic;
}

.banner p {
  color: #37474f;
  font-size: 20px;
  margin: 8px 0;
}

.banner .affiliation {
  color: #00897b;
  font-weight: bold;
}

.greeting-text {
  color: #d84315;
  font-size: 10px;
  margin-top: 10px;
  font-weight: bold;
}

/* Scrolling Banner */
.scrolling-container {
  width: 100%;
  height: 50px;
  overflow: hidden;
  background: #f8f8f8;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  position: relative;
}

.scrolling-text {
  position: absolute;
  white-space: nowrap;
  color: #e74c3c;
  font-size: 24px;
  font-weight: bold;
  animation: scrollText 12s linear infinite;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes scrollText {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}
/* Scrolling Image Gallery */
.scrolling-images {
  width: 100%;
  overflow: hidden;
  background-color: #eee;
  padding: 15px 0;
}

.image-track {
  display: flex;
  gap: 20px;
  animation: scrollImages 30s linear infinite;
}

.image-track img {
  height: 150px;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
}

/* Keyframes for right-to-left animation */
@keyframes scrollImages {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* Intro, Mission, Highlights */
.intro, .mission, .highlights {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.intro h2, .mission h2, .highlights h2 {
  color: #4a148c;
  margin-bottom: 15px;
}

.intro p, .mission p, .highlights li {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

/* Highlights List */
.highlights ul {
  list-style-type: none;
  padding-left: 0;
}

.highlights li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.highlights li::before {
  content: "🎯";
  position: absolute;
  left: 0;
}

/* Social Media Section */
.social-media {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
  background-color: #fafafa;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.social-media h2 {
  color: #6a1b9a;
  margin-bottom: 10px;
}

.social-media p {
  font-size: 17px;
  color: #333;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social-icons a i {
  font-size: 28px;
  color: #555;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover i {
  color: #6a1b9a;
  transform: scale(1.1);
}

/* About Page */
.about {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.about h1 {
  color: #4a148c;
  font-size: 32px;
  margin-bottom: 15px;
}

.about p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}
  .gallery {
      padding: 20px;
 <style>
    body {
      margin: 0;
      padding: 0;
      font-family: sans-serif;
    }

    .scrolling-wrapper {
      display: flex;
      overflow-x: auto;
      white-space: nowrap;
      scroll-behavior: smooth;
      gap: 10px;
      padding: 10px;
      background: #f8f8f8;
    }

    .scrolling-wrapper::-webkit-scrollbar {
      height: 6px;
    }

    .scrolling-wrapper::-webkit-scrollbar-thumb {
      background-color: #888;
      border-radius: 5px;
    }

    .scrolling-image {
      flex: 0 0 auto;
      height: 200px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .scrolling-image img {
      height: 100%;
      width: auto;
      display: block;
    }
  </style>
/* Events Section */
.events {
  max-width: 500px;
  margin: 40px auto;
  padding: 20px;
  text-align: left;
}

.events h1 {
  font-size: 32px;
  color: #4a148c;
  margin-bottom: 10px;
}

.events p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.event-card {
  background-color: #f3e5f5;
  border-left: 6px solid #6a1b9a;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
}

.event-card h2 {
  color: #6a1b9a;
  margin-bottom: 10px;
}

.event-card p {
  margin: 5px 0;
  color: #333;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background-color: #6a1b9a;
  color: #fff;
  margin-top: 40px;
}
