@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
/* Global Styles */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body {
    font-family: 'poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

body::-webkit-scrollbar{
  display: none;
}

.bg{
  /* background-image: url(../assets/images/back.jpg); */
    background-size: cover; 
}
.main-header {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  height: 4.5em;
  position: fixed;
  top: 0;
  z-index: 100;
  box-shadow: 0 1em 2em rgba(80, 91, 160, 0.3);
  width: 100vw;
}
/* Logo Container */
.logo-container img {
  height: 3em;
}
.logo-container a {
  display: flex;
  align-items: center;
}
/* Navigation Links */
.navigation {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.navigation-links {
  list-style: none;
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}
@media (min-width:1025px) {
  .navigation-links{
    gap: 60px;
    justify-content: center;
  }
  
}
.silver-jublee{
  animation: alternate;
  -webkit-animation: alternate;
  animation-duration: 10s;
}










.navigation-links a {
  color: #122023;
  text-decoration: none;
}

.navigation-links a:hover {
  border-bottom: 2px solid #5d4ce6;
  color: #5d4ce6;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 1em;
}

.button {
  padding: 0.5em 0.7em;
  border: 2px solid #5d4ce6;
  cursor: pointer;
  background-color: white;
  color: #5d4ce6;
  font-size: 1em;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #5d4ce6;
  color: white;
}
.notification-button{
  display:none;
}
.donate-button{
  display:none;
}
/* Default styles */
.hamburger-menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
.box{
  text-align: center;
  gap: 4;
  height: 500px;
  overflow: auto;
  

  
}

/* Close button for the mobile menu */
.close-menu {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .main-header {
    height: 3.5em;
  }
  .navigation {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    background-color: white;
    width: 50%;
    height: auto;
    padding: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

  /* Slide-in effect when menu is active */
  .navigation.active {
    display: flex;
    transform: translateX(0);
  }

  .close-menu {
    display: block;
  }

  .navigation-links {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .action-buttons {
    flex-direction: column;
    margin-top: 50px;
  }

  .hamburger-menu {
    display: block;
  }
}

/* Hide overflow when the menu is active */
body.no-scroll {
  overflow: hidden;
}

.slideshow {
  height: fit-content;
    width: 100vw;
    /* margin: 3.5em auto 0 auto; */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 4.5em;
    margin-bottom: 1.5em;
  }
  
  .slide {
    min-width: 100%;
    height: 100%;
    transition: transform 1s ease;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    object-fit: cover;
    object-position: top;
  }
  
  /* Styling for Prev and Next buttons */
  button.prev,
  button.next {
    position: absolute;
    top: 50%;
    border:none;
    transform: translateY(-50%);
    color: black;
    background:transparent;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }
  
  /* Position the Prev button on the left */
  button.prev {
    left: 10px;
  }
  
  /* Position the Next button on the right */
  button.next {
    right: 10px;
  }  


/* Base Styles for Desktop */
.stats {
  height: 200px;
  display: flex;
  padding: 20px;
  background-color: #f4f5fd;
  /* background-color: #ffffff; */
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 30px;
  /* margin-bottom: 10px; */
}

.stats-wrapper {
  display:flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.stats-item {
  text-align: center;
}


.label {
  font-size: 16px;
}
.topstat{
  display: flex;
  align-items: center;
}
.statbg{
  width:60px;
  height:60px;
  background-color: rgb(208, 208, 249);
  border-radius: 10px;
  margin-right: -30px;
}
.text-large {
  font-size: 3em;
  font-weight: bold;
  color: #5d4ce6;

}

.text-small {
  margin-left: 25px;
  font-weight: bold;
  line-height: 1.5em;
  color: #5d4ce6;
}
.statbox-z2{
  z-index: 10;
}


  .text-large {
    margin-left: 12px;
    font-size: 40px;
  }

  .label {
    font-size: 1.5em;
  }



/* Media Query for 481px */
@media (max-width: 481px) {
  .stats {
    padding: 10px;
    flex-direction: column;
    align-items: center;
  }

  .stats-item {
    margin-bottom: 15px;
  }

  .text-large {
    font-size: 20px;
  }

  .label {
    font-size: 12px;
  }
}
/* video */
/* Styling for the container to center content */
.home-video {
  display: flex;
  flex-direction: column; /* Stack text and video vertically */
  align-items: center; /* Center horizontally */
  justify-content: center; /* Center vertically */
  text-align: center;
  background-image: url("../assets/images/back.jpg");
  background-size: cover; 
  background-position: center;
  margin-top: 30px;
}


/* Styling for the text */
.video-text span {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2em; /* Space between text and video */
  color: #5d4ce6;
}

/* Video iframe styling */
.video iframe {
  max-width: 90vw;
  max-height: 90vh;
  width: 560px;
  height: 315px;
  border-radius: 20px;
}

@media (min-width: 860px) {
  .video iframe {
  width: 840px;
  height: 472px;
}
}

/* event */


    .eventbutton {
        display: flex;
        padding: 1.875em 1.875em 0 0;
        justify-content: end; /* Centers the button horizontally */
        align-items: center;
         /* Light background for contrast */
    }

    .allevents {
        padding: 0.5em 1.875em; /* Button padding */
        border:2px solid #5d4ce6;
        cursor: pointer;
        background-color: white; /* Button background color */
        color: #5d4ce6; /* Button text color */
        font-size: 1em; /* Button font size */
        border-radius: 5px; /* Rounded corners */
        transition: background-color 0.3s ease; /* Smooth transition */
    }
/* Button Styling */
button.btn {
  background-color: #5d4ce6;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

button.btn:hover {
  background-color:#5d4ce6;
}

/* Responsive Styles */

/* For screens smaller than 1440px */
@media (min-width: 941px) {
  .event-card {
      width: calc(33.33% - 30px); /* Adjust card width */
  }
}

/* For screens smaller than 941px */
@media (max-width: 941px) {
  .event-card {
      width: calc(50% - 20px); /* 2 cards per row */
  }
}

/* For screens smaller than 481px */
@media (max-width: 481px) {
  .event-card {
      width: 100%; /* Full width card on small screens */
  }
  .event-date {
      width: 100%; /* Date section spans full width */
      margin-bottom: 10px;
  }
  button.btn {
      width: 100%; /* Button takes full width */
      text-align: center;
  }
}


/* Footer Styles */
.container {
  display: flex;
  margin: auto;
  width: 98%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}


.footer {
  background-color: #ffffff;
  padding: 2em 0;
}

.footer-col {
  flex: 1 1 calc(25% - 1em);
  padding: 0 1em;
}

.footer-col h4 {
  font-size: 18px;
  color: #000000;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 600;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5em;
  background-color: #5d4ce6;
  height: 2px;
  width: 3em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 1em;
  text-transform: capitalize;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #000000;
  padding-left: 0.5em;
}

.footer-logo {
  max-width: 12.5em;
  margin-bottom: 15px;
}

.social-links{
  margin-top: 1em;
}
.contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone,
.email {
  display: flex;
  align-items: center; /* Ensures content is vertically aligned */
}

.phone i,
.email i,
.location i {
  color: #5d4ce6;
  font-size: 1.2em;
}

.footer-col .social-links a{
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: #e9eaf5;
  margin:0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #5d4ce6;
  transition: all 0.5s ease;
  }
  .footer-col .social-links a:hover{
  color: #ffffff;
  background-color: #5d4ce6;
  }
  

/* Responsive Design */
@media (max-width: 768px) {
  .footer-col {
    flex: 1 1 calc(50% - 1em);
  }
}

@media (max-width: 480px) {
  .footer-col {
    flex: 1 1 100%;
  }
}

.copyright {
  text-align: center;
  margin-top: 1em;
}

/* Scroll to Top Button */
.scroll-to-top-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000; /* Ensure the button is above other content */
}

.scroll-to-top-btn {
  display: none; /* Initially hidden */
  background-color: #5d4ce6; /* Button background color */
  color: white; /* Icon color */
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5em;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}


.scroll-to-top-btn:hover {
  background-color: #5d4ce6; /* Hover effect */
}