.heading {
  background-color: darkmagenta;
  width: 100%;
  height: 150px;
  padding-bottom:25px;
}

.heading h1{
  font-family:cursive;
  text-align: center;
  padding-top: 45px;
  color: white;
  font-size: 56;
}

.navbar {
  display: flex;
  justify-content: space-around; /* or space-between */
  background-color: #1f5dcf;
  padding: 0;
  margin-top: -10px;
  width: 100%;
  line-height: 2;
}

.navbar a {
  text-decoration: none;
  font-weight: bold;
  font-size: 18;
  color: rgb(248, 248, 246);
}
.navbar a:hover {
  text-decoration:underline;
}

@keyframes blinkFancy {
  0%, 100% { background-color: #1f5dcf; color: rgba(221, 19, 204, 0.781); }
  50% { background-color: rgb(221, 19, 204, 0.781); color: #1f5dcf; }
}

.navbar {
  animation: blinkFancy 1.2s infinite;
}

.achievements-section {
  padding: 40px 20px;
  background-color: #f4f9ff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: #1f5dcf;
  font-weight: bold;
}

.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.achievement-card {
  width: 400px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
}

.achievement-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.achievement-card p {
  padding: 15px;
  font-size: 14px;
  color: #333;
}


.search-bar {
  padding: 10px 15px;
  width: 300px;
  font-size: 16px;
  margin: 20px auto 30px auto;
  display: block;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.event-section {
  padding: 40px;
  background: #f5f5f5;
  text-align: center;
}

.event-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #333;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-items: center;
}

.event-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  max-width: 400px;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.event-card iframe {
  width: 100%;
  height: 200px;
  margin-top: 10px;
  border: none;
  border-radius: 8px;
}

.event-card h3 {
  margin: 10px 0 5px;
  color: #0044cc;
}

.event-card p {
  font-size: 14px;
  color: #555;
}





.footer {
  background-color: 	#2C2C2C;
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-left {
  flex: 1 1 300px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 10px;
}

.footer-left p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-left a {
  color: #fff8a4;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  flex: 2 1 600px;
}

.footer-links h4 {
  margin-bottom: 10px;
  font-size: 15px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.footer-links ul li a:hover {
  text-decoration: underline;
  color: #ffeb3b;
}

.social-icons img {
  width: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

  
#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #0044cc;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#scrollToTop:hover {
  background-color: #002f7a;
}

/* Show when scroll active */
#scrollToTop.show {
  display: block;
}
