/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #E6E6E6;
    color: #333;
  }
  
  .blogs-section {
    max-width: 800px;
    margin: 10px auto;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
  }
  
  .section-title {
    text-align: center;
    
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #444;
    text-transform: none;
  }
  
  /* Images Marquee Section */
  .images-marquee {
    position: relative;
    overflow: hidden;
    height: 700px;
    background-color: #f5f5f5;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  .marquee-container {
    display: flex;
    flex-direction: column;
    animation: move-up 10s linear infinite;
  }
  
  .marquee-container img {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
  }
  
  /* Keyframes for the upward movement */
  @keyframes move-up {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-100%);
    }
  }
  
  /* Description Section */
  .description-section {
    padding: 20px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .event-title {
    font-size: 1.5em;
    color: #0c3d91;
    margin-bottom: 10px;
  }
  
  .event-description {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
  }
  
  /* Go Back Button Styling */
  .go-back-container {
    text-align: center;
    /* margin-top: 2px; */
  }
  
  .go-back-button {
    display: inline-block;
    text-decoration: none;
    background-color: #011f4b; /* Button background color */
    color: #fff; /* Text color */
    padding: 10px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  

  .go-back-button:hover {
    background-color: #0c3d91; /* Lighter shade on hover */
    transform: scale(1.05); /* Slight scaling effect */
  }
  

  
/* Navbar */
header nav {
  background-color: #011f4b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

nav .logo img {
  max-width: 120px;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  transition: transform 0.3s ease;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #f9f9f9;
  ;
  font-size: 22px;
  padding: 10px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #005b96;
}

/* Dropdown */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #E6E6E6;
  min-width: 150px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.dropdown-menu li a {
  display: block;
  color: #005b96;
  padding: 10px 15px;
}

.dropdown-menu li a:hover {
  background-color: #005b96;
  color: #fff;
}

/* Hamburger Icon */
.menu-icon {
  display: none;
  font-size: 24px;
  color:#f9f9f9;
  ;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
      display: none; /* Hide menu initially */
      flex-direction: column;
      background-color: #011f4b;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      padding: 10px 0;
  }

  nav ul.open {
      display: flex; /* Show menu when toggled */
  }

  nav ul li {
      text-align: center;
  }

  .menu-icon {
      display: block; /* Show hamburger icon */
  }

  nav ul li a {
      font-size: 24px;
      color: #f9f9f9;
      padding: 15px;
  }

  
  .dropdown-menu {
      position: static;
      background-color: #005b96;
  }
}


/* Footer */

footer {
  background-color: #E6E6E6;
  text-align: center;
  justify-content: center;
  padding: 20px;

  margin-top: 20px;
}

footer p {
  color: #333;
  font-size: 18px;
}

.copyright {
  background: #011f4b;
  color: #fff;
  padding: 10px;
  font-size: 18px;
  text-align: center;
} 
