.Product-rating-badge 
{
    color: white;
    padding: 1px 2px 1px 8px;
    border-radius: 6px;
    margin-right: 5px;
    font-size: 14px;
}
.Product-rating-info 
{
  color: rgb(139, 139, 163);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.5px;
    margin: 0px;
    padding: 0px;
}


.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 (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;
  border-radius: 10px;
}
nav .home-link {
  margin-right: auto;
}
nav svg {
  fill: var(--text-color);
}
#sidebar-active {
  display: none;
}
.open-sidebar-button,
.close-sidebar-button {
  display: none;
}
.ConDiv {
  display: block;
}
.customNav {
  display: none;
}
@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);
    transition: 0.75s ease-out;
      overflow-x: hidden;
     overflow-y: auto;   
     border-radius: 20px 0 0 20px;  

  }
  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: 10000;
  
  /* 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;
        }



        
    .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;
}


  .slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  width: 100%;
}

.slide-item 
{
  flex: 0 0 100%;
  box-sizing: border-box;
  white-space: normal;
  word-break: break-word;
  display: flex;
  align-items: center;
  justify-content: center;
/*  padding: 10px; /* or adjust as needed */
  text-align: center;
}


  /* Custom buttons */
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 4px 6px;
    border-radius: 4px;
    transition: background 0.3s;
  }

  .slider-btn:hover {
    background: rgba(255,255,255,0.5);
  }

  .slider-btn-prev {
    left: 5px;
  }

  .slider-btn-next {
    right: 5px;
  }

 @media (max-width: 600px) {
  .announcement-container {
    font-size: 14px;
    display: flex;
    align-items: center;  /* vertical center */
    justify-content: center; /* horizontal center if needed */
  }

  .slide-item {
    display: flex;
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */
    padding: 0 15px;
  }
}


