.img-bg img {
  position: absolute;
  top: 0;
  z-index: -3;
  height: 100vh;
  width: 100%;
  object-fit: cover;
  object-position: center 10%;
}

.img-sm img {
  position: absolute;
  top: 0;
  z-index: -3;
  height: 50vh;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  padding-bottom: 10px;
}

.header-title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 24vh;
  font-size: 40px;
  font-weight: 600;
}

header img {
  display: block;
  width: 120px;
  height: auto;
}

.mobile_menu_category {
  display: none;
}

@media (max-width: 991px) {
  header img {
    display: none;
  }

  .mobile_menu_category {
    display: block;
    position: absolute;
    top: 10px;
    z-index: 999;
    padding: 6px 15px;
    border-radius: 25px;
    transition: 0.4s;
    font-weight: 600;
    background-color: #fff;
    color: #b72;
  }

  .mobile_menu_category:hover {
    color: #fff;
    background: #1a1919;
  }

  .img-bg img {
    height: 120vh;
  }
}

/* counter */
.countdown-timer {
  padding: 0.5rem 0;
  color: white;
}

.countdown-timer .timer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}

.countdown-timer .timer div {
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 10px;
  width: 100px;
}

.countdown-timer .timer span {
  display: block;
  font-size: 1.7rem;
  font-weight: bold;
}

.countdown-timer .timer small {
  font-size: 0.7rem;
  text-transform: uppercase;
}

@media(max-width:500px) {

  .countdown-timer .timer {
    gap: 0.9rem;
  }

  .countdown-timer .timer div {
    padding: 0.4rem;
  }

  .countdown-timer .timer span {
    font-size: 1.4rem;
  }

  .countdown-timer .timer small {
    font-size: 0.5rem;
  }
}

/* Center the loader on the screen */
.loader-container {
  margin-top: 15px;
  height: 30px;
}

.loader-content {
  display: none;
  justify-content: center;
  align-items: center;
}

/* Loader animation */
.loader {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #b72;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

/* Text styling */
.loader-container h6 {
  margin: 0;
  margin-left: 10px;
  font-size: 16px;
  color: #b72;
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Keyframes for the spin animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* about us */
.about-us .card {
  margin-bottom: 1rem;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-us .card-header {
  background-image: linear-gradient(to right, #fcb040, #fddb96);
  color: white;
  cursor: pointer;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-us .card-header h5 {
  margin: 0;
  color: #333;
  font-weight: 600;
}

@media(max-width:550px) {
  .about-us .card-header h5 {
    font-size: 17px;
  }
}

@media(max-width:480px) {
  .about-us .card-header h5 {
    font-size: 15px;
  }
}

@media(max-width:440px) {
  .about-us .card-header h5 {
    font-size: 13px;
  }
}

.about-us .card-body {
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.about-us .card-header .icon {
  transition: transform 0.3s ease;
  color: #333;
}

.about-us .card-header[aria-expanded="true"] .icon {
  transform: rotate(45deg);
}


/* Sponsors */
.swiper-container {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

/* Swiper Slide */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media(max-width:500px) {
  .swiper-container {
    height: 200px;
  }
}

/* Sponsor Box */
.sponsor {
  width: 100%;
  max-width: 160px;
  /* Ensures uniform size */
  height: 150px;
  /* Keeps logos inside 300px container */
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f5, #ffffff);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

/* Logo Image */
.sponsor img {
  max-height: 120px;
  max-width: 100%;
  object-fit: contain;
}

/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #fcb040;
  transition: 0.3s;
  top: 50%;
  /* Ensures arrows stay within the height */
  transform: translateY(-50%);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #fcb040;
}

/* Pagination Dots */
.swiper-pagination {
  bottom: 10px;
  /* Keeps dots inside 300px limit */
}

.swiper-pagination-bullet {
  background: #fcb040;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #fcb040;
  transform: scale(1.3);
}

@media (max-width: 991px) {
  .vote {
    margin-top: 4%;
  }
}

.vote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 33, 68, 0);
}

.vote .categories a {
  color: rgb(6, 33, 68);
  background: #fff;
  border-radius: 20px;
  padding: 6px 20px;
  margin: 5px 5px;
  transition: 0.4s;
}

.vote .categories a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(218, 147, 60);
  z-index: 1;
  border-radius: 5px;
  transition: transform 0.5s;
  transition-timing-function: ease;
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
  transform: scaleX(0);
  border-radius: 0px;
  color: #fff;
}

.vote .categories a:hover {
  color: #fff;
  border: 1px solid #fff;
}

.vote .categories a:hover::before {
  transform: scaleX(1);
  color: #fff !important;
  z-index: -1;
}

.vote a {
  color: rgb(6, 33, 68);
  background: #fff;
  border-radius: 20px;
  padding: 6px 20px;
  margin: 5px 5px;
  transition: 0.4s;
  border: 1px solid #fff;
  transition: 0.4s;
}

.vote a:hover {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
}

.vote-2 {
  background-color: rgb(6, 33, 68);
  padding: 10px;
}

.vote-2 a {
  color: #fff;
  background: transparent;
  border-radius: 20px;
  padding: 6px 20px;
  margin: 5px 5px;
  transition: 0.4s;
  border: 1px solid #fff;
  transition: 0.4s;
}

.vote-2 a:hover {
  color: rgb(6, 33, 68);
  background-color: #fff;
}

@media (max-width: 500px) {
  .vote a {
    font-size: 13px;
  }

  .vote-2 a {
    font-size: 13px;
  }
}

.vote .categories a {
  background: transparent;
  padding: 15px 5px;
  width: 100%;
  text-align: center;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 0;
  margin: 10px;
  cursor: pointer;
  transition: color 0.4s linear;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  border: 2px solid #fff;
}

@media (max-width: 800px) {
  .vote .categories a {
    height: 13vh;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
  }
}

@media (max-width: 500px) {
  .vote .categories a {
    font-size: 12px;
    padding: 4px 15px;
    height: 10vh;
  }
}

.image-container {
  position: relative;
  overflow: hidden;
  /* border-radius: 30px; */
  /* box-shadow: 0 0 8px 2px rgba(119, 118, 118, 0.2); */
  /* background-color: #fff; */
  /* padding: 10px; */
  width: 100%;
}

.image-container:hover {
  cursor: pointer;
}

.image-container img {
  width: 195px;
  display: block;
  margin: auto;
  transition: 0.3s;

}

.image-container:hover img {
  transform: scale(0.90);
}

.category {
  padding: 5% 1%;
}

.category .col-7:hover h5 {
  transform: scale(0.90);
}

.category h5 {
  text-align: center;
  padding: 7px 5px;
  font-size: 14px;
  text-transform: uppercase;
  transition: transform 0.3s ease;
  margin: 0 auto;
  color: #fff;
  font-weight: 600;
  width: 190px;
  display: block;
}

@media (max-width: 500px) {
  .category {
    margin-bottom: 2rem;
  }

  .image-container {
    margin-left: auto;
    margin-right: auto;
  }

  .image-container img {
    width: 170px;
  }

  .category h5 {
    font-size: 13px;
    width: 169px;
  }
}

@media (max-width: 460px) {
  .image-container img {
    width: 150px;
  }

  .category h5 {
    font-size: 11px;
    width: 149px;
  }
}

@media (max-width: 340px) {
  .image-container img {
    width: 130px;
  }

  .category h5 {
    font-size: 10px;
    width: 129px;
  }
}

.category-title {
  margin-top: 7%;
  text-align: center;
  background-color: #b72;
  padding: 3px 0 0 0;
  border-radius: 15px;
  box-shadow: 0 0 6px 3px rgba(187, 180, 180, 0.1);
  text-transform: capitalize;
}

@media(max-width:991px) {
  .category-title {
    border-radius: 0 0 15px 15px;
  }
}

.category-title h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 500px) {
  .category-title h4 {
    color: #fff;
    font-size: 14px;
  }
}

.category .operator .mno {
  position: relative;
  margin: 40px auto;
}

.category .operator .mno img {
  position: absolute;
  right: 5%;
  top: -15px;
  width: 65px;
  height: 65px;
  padding: 7px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #c5c1c1;
  object-fit: contain;
}

.category .operator .mno input {
  border-radius: 20px;
  border: 1px solid #d3cece;
  padding: 7px 10px;
  width: 90%;
  box-shadow: 0 0 4px 2px rgba(109, 105, 105, 0.1);
  transition: all 0.5s ease-in-out;
}

.category .operator .mno input::placeholder {
  font-size: 15px;
  padding-left: 15px;
}

.category .operator .btn {
  width: 50%;
  border-radius: 25px;
  padding: 23px 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(to bottom, #b72, rgb(238, 142, 24));
  font-weight: 700;
}

.category .operator .btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 101%;
  height: 101%;
  background: rgb(228, 152, 60);
  z-index: 1;
  border-radius: 5px;
  transition: transform 0.5s;
  transition-timing-function: ease;
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
  transform: scaleX(0);
  border-radius: 0px;
  color: #fff;
}

.category .operator .btn:hover::before {
  transform: scaleX(1);
  color: #fff !important;
  z-index: -1;
}

.image-container:hover h5 {
  transform: scale(1.1);
}

.image-container:hover .overlay {
  opacity: 1;
}

.overlay-button:hover {
  background-color: #fff;
  color: #000;
}

.image-container:hover .overlay-button {
  transform: scale(1);
}

@media (max-width: 500px) {
  .category .operator .mno {
    margin: 30px auto;
  }

  .category .operator .mno img {
    top: -9px;
    width: 50px;
    height: 50px;
    padding: 5px;
  }

  .category .operator .mno input::placeholder {
    padding-left: 7px;
  }

  .category .operator .mno input {
    border-radius: 20px;
    border: 1px solid #d3cece;
    padding: 5px 10px;
    width: 90%;
    box-shadow: 0 0 4px 2px rgba(109, 105, 105, 0.1);
    transition: all 0.5s ease-in-out;
  }

  .category .operator .btn {
    width: 40%;
    border-radius: 25px;
    padding: 18px 3px;
  }
}

/* Overlay styles */
.custom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

/* Modal styles */
.custom-modal {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  max-width: 500px;
  width: 90%;
  transform: scale(0.7);
  transition: transform 0.3s ease-in-out;
}

.custom-modal-body {
  position: relative;
}

.custom-modal-body img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 130px;
  height: 130px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  border: 1px solid #b72;
}

.custom-modal-body h4 {
  text-align: center;
  margin-top: 5px;
}

.custom-modal-body .profile {
  color: #fcb040;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: 600;
}

.custom-modal-body .profile-content {
  display: none;
}

.custom-modal-body .profile-content p {
  text-align: left;
}

.custom-modal-body .close-profile {
  display: block;
  margin: 1rem auto;
  border-radius: 20px;
  background-color: red;
  color: #fff;
  padding: 8px 15px;
  border: none;
  transition: 0.3s;
}

.custom-modal-body .close-profile:hover {
  outline: 2px solid red;
  background-color: #fff;
  color: red;
}

.custom-modal.active {
  transform: scale(1);
}

/* Close button */
.custom-close-btn {
  background: none;
  border: none;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.response-message {
  margin: 10px auto;
  display: none;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-size: 11px;
}

/* Button to trigger the modal */
.trigger-modal-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.trigger-modal-btn:hover {
  background-color: #0056b3;
}

.carousel-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

/* Profile */
.profile img {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 200px;
  margin-bottom: 1rem;
}

.profile h5 {
  font-weight: 650;
  margin-bottom: 0.5rem;
  color: #fcb040;
}

@media(max-width:500px) {
  .profile img {
    width: 180px;
  }

  .profile h5 {
    text-align: center;
  }
}

.carousel-indicators li {
  background-color: rgb(230, 151, 54);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #b72;
  /* Add semi-transparent background to arrows */
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 10px;
}
.winners .col-sm-6{
  margin-bottom:2rem;
}

.winners .winner-bg{
  background-image: url('../img/hero/winner-bg.jpg');
  border-radius:20px;
  background-size:cover;
  background-position:center center;
  width:100%;
  position:relative;
}

.winners h4{
  font-weight:700;
  color:#fcb040;
  margin:0;
  font-size:19px;
  font-family:Arial, Helvetica, sans-serif!important;
}

.winners h5{
  text-align:center;
  margin:0;
  
}

.winners .winner-bg .overlay{
  position:absolute;
  top:0;
  width:100%;
  height:100%;
  border-radius:20px;
  background: rgba(0,0,0,0.3);
}
.winners img{
  width:150px;
  display:block;
  margin:5px auto;
  padding:1rem 0.3rem;
  position: relative;
  z-index:3;
}