

.page-heading-div {
  height: 200px;
  display: flex;
  position: relative;
  padding: 0px 35px;
  flex-direction: column;
  justify-content: center; /* Vertically center */
  align-items: center;     /* Horizontally center */
  text-align: center;
}

@media (min-width: 992px) {
  .page-heading-div {
    margin-top: 70px;
  }
}


@media (max-width:1000px)
{
   .container_custom{
    padding:35px 20px !important;
  }
  .headingStyle
  {
    font-size: 40px !important;
  }
  .teamHeading
  {
    font-size: 40px !important;
  }
}

.nav-link{
  
    border-radius: 10px !important;
}

        .eventlogo:hover{
    background-color: transparent !important;
    }
    
* {
  margin: 0;
  padding: 0;
}

nav {
    min-height: 70px;
  background-color: var(--color-1);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.links-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
nav a {
  height: 100%;
  padding: 8px;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid #f3f3f3;
  color: black;
}
nav a:hover {
  background-color: var(--accent-color);
  color: white;
}
nav .home-link {
  margin-right: auto;
}
nav svg {
  fill: var(--text-color);
}
#sidebar-active {
  display: none;
}
.open-sidebar-button,
.close-sidebar-button {
  display: none;
}



.customNav 
{
  display: none; 
}
.customNav.scrolled {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.customNav::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.5);
  z-index: -1;   /* Important */
}
@media (max-width: 1000px) 
{
  .ConDiv {
    display: none;
  }
  .customNav {
    display: block;
    
  }
  .links-container {
   flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 10001;
        width: 70%;
        background-color: var(--color-1);
        box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
        transition: 0.75s ease-out;
        overflow-x: hidden;
        border-radius: 20px 0 0 20px;  
        overflow-y: auto;
  }
  nav a {
    box-sizing: border-box;
    height: auto;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    justify-content: flex-start;
  }
  .open-sidebar-button,
  .close-sidebar-button {
    padding: 10px;
    display: block;
  }
  #sidebar-active:checked ~ .links-container {
    right: 0;
/*    transform: translateX(0); */
  }
  #sidebar-active:checked ~ #overlay {
      height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  
  /* Dark transparent layer */
  background-color: rgba(0, 0, 0, 0.4);

  /* Blur everything behind */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  /* Smooth fade-in */
  transition: all 0.3s ease-in-out;
  }
}


          
          .formatted-text b {
            font-weight: bold;
        }
        .formatted-text i {
            font-style: italic;
        }
        .formatted-text u {
            text-decoration: underline;
        }
        .formatted-text strike {
            text-decoration: line-through;
        }
        .formatted-text ul {
            list-style-type: disc;
            padding-left: 20px;
        }
         .formatted-text a
        {
          color: blue;
          text-decoration: underline !important;
    }

    .headingStyle,
.Subtitle {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

/* When visible (fade in) */
.headingStyle.visible,
.Subtitle.visible {
  opacity: 1;
}

/* Optional delay for subtitle */
.Subtitle {
  transition-delay: 0.3s;
}
