.onfocus .video-play {
                min-height: 400px;
                background: linear-gradient(rgba(var(--color-black-rgb), 0.4), rgba(var(--color-black-rgb), 0.7)), url(<?= base_url('public/assets/img/pea_25th.jpg') ?>) center center !important;
                background-size: cover;
            }
.hidden {
      display: none;
    }

@keyframes fadeInOut {
            0%, 100% { opacity: 0; }
            50% { opacity: 1; }
        }
        .swal2-popup {
            font-size: 1.1rem !important;
            background: #f7f9fb !important;
            border: 2px solid #d1d8e0 !important;
            position: relative; /* For positioning the animated text */
        }
        .swal2-title {
            color: #1a1a1a !important;
            font-weight: bold !important;
        }
        .swal2-button {
            background-color: #007bff !important;
            color: #fff !important;
        }
        .swal2-html-container {
            color: #333 !important;
            text-align: left !important;
        }
        .animated-text {
            position: absolute;
            top: -20px; /* Adjust as necessary */
            right: -20px; /* Adjust as necessary */
            background: #ff0000;
            color: #fff;
            padding: 5px 10px;
            font-weight: bold;
            border-radius: 5px;
            animation: fadeInOut 2s infinite;
            z-index: 1000; /* Ensure it is on top */
        }

	p{
		font-weight: 400 !important;
	}

	.list-group {
            list-style-type: none;
            padding: 0;
        }

        .list-group-item {
            position: relative;
            padding-left: 40px; /* Adjust the padding to make room for the circle */
            margin-bottom: 10px; /* Optional: spacing between items */
        }

        .list-group-item::before {
            content: counter(list-item) ".";
            counter-increment: list-item;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 30px; /* Adjust width and height to change circle size */
            height: 30px;
            border: 2px solid #000; /* Adjust border color */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold; /* Optional: make the number bold */
        }

        .list-group {
            counter-reset: list-item;
        }

	 .user-list {
            list-style-type: none; /* Remove default bullets */
            padding: 0;
        }
h4 {
            color: #2c3e50;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
        }
        .table {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            border-collapse: collapse;
            background-color: #fff;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        .table thead {
            background-color: #2c3e50;
            color: #fff;
        }
        .table th, .table td {
            padding: 12px 15px;
            text-align: left;
        }
        .table tbody tr {
            border-bottom: 1px solid #ddd;
        }
        .table tbody tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .table tbody tr:last-child {
            border-bottom: 2px solid #2c3e50;
        }
        .table tbody tr:hover {
            background-color: #f1f1f1;
        }
        .flip-clock {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.flip-unit {
  perspective: 1000px;
  width: 80px;
  height: 100px;
  position: relative;
  text-align: center;
}

.flip-unit::after {
  content: attr(data-label);
  display: block;
  font-size: 12px;
  color: #bbb;
  margin-top: 5px;
  letter-spacing: 1px;
}

.flip-card {
  position: relative;
  width: 100%;
  height: 80px;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.card-face {
  position: absolute;
  width: 100%;
  height: 50%;
  line-height: 40px;
  font-size: 2em;
  font-weight: bold;
  color: #1e2738;
  background: #f0f0f0;
  backface-visibility: hidden;
  overflow: hidden;
}

.top {
  top: 0;
  transform-origin: bottom;
  z-index: 2;
}

.bottom {
  bottom: 0;
  line-height: 40px;
  transform-origin: top;
}

.flip-animate .top {
  animation: flipTop 0.5s forwards;
}

.flip-animate .bottom {
  animation: flipBottom 0.5s forwards;
}

@keyframes flipTop {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(-90deg);
  }
}

@keyframes flipBottom {
  0% {
    transform: rotateX(90deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
.countdown-wrapper {
  margin-top: 1.5rem;
}

.closing-title {
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: #2b2b2b;
}

@media (max-width: 576px) {
  .flip-clock {
    flex-wrap: wrap;
    gap: 10px;
  }

  .flip-unit {
    width: 60px;
    height: 80px;
  }

  .card-face {
    font-size: 1.5em;
    line-height: 35px;
  }

  .flip-unit::after {
    font-size: 10px;
  }

  .closing-title {
    font-size: 1rem;
  }
}

.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  z-index: 0;
  filter: opacity(0.6);
}

.hero-bg-slider .slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 0.5 means 50% dark */
  z-index: 1;
}
#hero-animated > *:not(.hero-bg-slider):not(.hero-overlay) {
  position: relative;
  z-index: 2;
}
/* Make the header semi-transparent with backdrop blur */
.header {
  background: rgba(255, 255, 255, 0.1); /* semi-transparent white */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header ,
.header .navbar a,
.header .navbar a strong {
  color: #e6b800 !important; /* use dark text for contrast */
  font-weight: bold;
  
}

.header {
  filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
}
.logo-text {
  color: #000;
  
 
}

.icon-100 { font-size: 24px !important; }
.icon-200 { font-size: 44px !important; }
.icon-300 { font-size: 48px !important; }

/* Award Lift & Tilt Animation */
@keyframes awardPresentation {
  0% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translateY(-20px) rotateX(10deg) rotateY(5deg);
  }
  100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }
}

/* Apply to the logo */
.img-fluid.animated {
  animation: awardPresentation 3s ease-in-out infinite;
  transform-style: preserve-3d; /* For better 3D effect */
}

/* Optional: Add shine effect (like a trophy) */
.img-fluid.animated::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  border-radius: inherit;
  pointer-events: none;
}
.img-fluid.animated {
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
  animation: awardPresentation 3s ease-in-out infinite, 
             goldenShine 2s alternate infinite;
}

@keyframes goldenShine {
  from { filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3)); }
  to { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)); }
}

.testimonials_video {
    padding: 80px 0;
    background-color: #fff;
    background-position: center center;
    background-size: cover;
    position: relative;
}