/* Slider container */
.new-slider-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
  }
  
  /* Slider */
  .new-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  /* Individual slide */
  .new-slide {
    min-width: 100%;
    position: relative;
  }
  
  .new-slide img {
    width: 100%;
    display: block;
  }
  
  .caption {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.2rem;
  }
  
  /* Buttons */
  .new-prev, .new-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #D60403; /* Gradient background */
    color: #fff;
    border: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%; /* Perfect round shape */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth interaction */
}

.new-prev:hover, .new-next:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5); /* Enhanced shadow */
}

  
  .new-prev {
    left: 10px;
  }
  
  .new-next {
    right: 10px;
  }
  
  .new-prev:hover, .new-next:hover {
    background: rgba(0, 0, 0, 0.8);
  }
  
  /* Indicators */
  .new-indicators {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
  }
  
  .new-dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .new-dot.active, .new-dot:hover {
    background-color: #717171;
  }
  


.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    animation: slideAnimation 5s infinite;
}

@keyframes slideAnimation {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
}



  .pancholi-images{
    width: -webkit-fill-available;
  }

  

.heading {
    padding-top: 10px!important;
}

.heading-one {
    padding-top: 0px!important;
}

/* Popup overlay styles */
.popup-overlay {
  display: none; /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
  z-index: 1000;
}

/* Popup content styles */
.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

/* Close button styles */
.btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ff5c5c;
  border: none;
  color: white;
  font-size: 16px;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
}

.btn-close:hover {
  background-color: #ff2d2d;
}

/* Image styling */
.popup-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media only screen and (max-width: 600px) {
    /* Styles for devices with a width of 600px or less (phones) */
    .popup-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #fff;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      width: 400px !important;
  }
}

/* add slider */

/* Slider container */
.slider-container {
  position: relative;
  width: 100%;
  height: 400px; /* Default height for desktop */
  overflow: hidden; /* Hide overflow */
  background-color: #ffffff; /* Black background for contrast */
}

/* Slider content wrapper */
.slider-wrapper {
  display: flex;
  animation: slide-animation 15s linear infinite; /* Smooth sliding */
}

/* Individual slides */
.slider-item {
  flex: 0 0 33.33%; /* Each image takes up 1/3 of the container */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image styling */
.slider-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Animation keyframes */
@keyframes slide-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive styles */
@media (max-width: 1024px) {
  .slider-container {
    height: 167px; /* Adjust for tablets */
  }

  .slider-item {
    flex: 0 0 50%; /* Show 2 images at a time */
  }
}

@media (max-width: 768px) {
  .slider-container {
    height: 250px; /* Adjust for smaller tablets */
  }

  .slider-item {
    flex: 0 0 100%; /* Show 1 image at a time */
  }
}

@media (max-width: 480px) {
  .slider-container {
    height: 200px; /* Adjust for mobile devices */
  }

  .slider-item img {
    border-radius: 4px; /* Smaller border radius for smaller screens */
  }
}

/* Adjusting font size for laptops */
@media (min-width: 1024px) and (max-width: 1440px) {
  .slider-container{
    height: 206px !important;
  }
}

/* Visible on mobile screens */
@media (max-width: 767px) { /* Mobile screens (width <= 767px) */
  .mobileView {
    display: block; /* Make the div visible */
  }
  .screendisplay{
    display: none;
  }
}

/* Hidden on laptop and larger screens */
@media (min-width: 768px) { /* Laptop screens (width >= 768px) */
  .mobileView {
    display: none; /* Hide the div */
  }
  .screendisplay {
    display: block; /* Make the div visible */
  }
}


.enavyug_container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #cdc6c6 !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 40px;
  text-transform: uppercase;
}

h1::after {
  content: "";
  display: block;
  width: 60px;
  margin: 5px auto;
  border-bottom: 2px solid #333;
}

.entry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.entry:last-child {
  border-bottom: none;
}

.entry .title {
  flex: 1;
  font-weight: bold;
  color: #000;
  font-size: 20px;
}

.entry .date {
  margin-left: 20px;
  color: #888;
  font-size: 14px;
}

.entry .download {
  margin-left: 20px;
  font-size: 18px;
  color: #000;
  text-decoration: none;
}

.entry .download:hover {
  color: #007bff;
}

/* Slider Container */
.image-slider {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

/* Slider */
.slider-container {
  position: relative;
  max-width: 100%;
  margin: auto;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  display: block;
}

/* Buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 10px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Auto-Sliding */
@keyframes slideAnimation {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
}

.slider {
  animation: slideAnimation 9s infinite;
}







  .custom-slider-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .custom-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .custom-slide {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
  }

  .custom-slide img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* .custom-prev, .custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    z-index: 10;
  }

  .custom-prev {
    left: 10px;
  }

  .custom-next {
    right: 10px;
  } */

  .custom-indicators {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: none;
  }

  .custom-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
  }

  .custom-dot.custom-active {
    background-color: #fff;
  }

  /* Make text smaller for mobile devices */
@media screen and (max-width: 600px) {
  .entry .title {
      font-size: 15px !important;
  }
}













