* {
  text-decoration: none !important;
}
body {
  color: white !important;
  background: black !important;
  font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
  font-optical-sizing: auto !important;
  font-weight: 400 !important; /* Replace '400' with your desired weight */
  font-style: normal !important;
  font-variation-settings: "wdth" 100 !important;
}
.nav-link {
  transition: 0.5s ease-in-out;
}
.nav-link:hover {
  transition: 0.5s ease-in-out;
  scale: 1.03;
  color: #010101 !important;
  background-color: #fdb614 !important;
}
.nav-link.active {
  font-weight: bold;
  scale: 1.03;
  background-color: #fdb614 !important;
  color: #010101 !important; /* Or a customized active link color */
}
.dropdown-menu {
  border-radius: 10px;
}
.dropdown-item {
  transition: background-color 0.2s ease; /* Change duration as desired */
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #fdb614 !important;
  color: black !important;
}
.bg-banner {    
  background: #333333;
}
.btn-dark {
  transition: 0.5s ease-in-out;
  background: black !important;
}
.btn-dark:hover {
  transition: 0.5s ease-in-out;
  scale: 1.02;
  color: black !important;
  font-weight: 600;
  background-color: #fdb614 !important;
  border: none;
}
.pxy-6 {
  display: block;
  padding: 10px 100px !important;
  font-size: 16px;
}
.image-wrapper {
  position: relative;
  overflow: hidden;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
}

.hover-content {
  position: absolute;
  border-radius: 10px;
  top: -100%; /* Initially hidden above */
  left: 0;
  width: 100%;
  height: 100%; /* Ensures the overlay covers the entire image */
  opacity: 0;
  transition: all 0.3s ease-in-out;
  background-color: rgba(0, 0, 0, 0.5); /* Your overlay background */
}

.image-wrapper:hover {
  scale: 1.1;
  transition: 0.5s ease-in-out;
}
.image-wrapper:hover .hover-content {
  opacity: 1;
  top: 0; /* Slide down to cover image */
}
.img-fluid {
  border-radius: 10px !important;
}
.btn-ads {
  background-color: #fdb614 !important;
  transition: 0.5s ease-in-out;
}
.btn-ads:hover {
  background-color: #191919 !important;
  color: white !important;
  transition: 0.5s ease-in-out;
  scale: 1.1;
}
.image-title {
  word-break: break-word;
  border-radius: 0 0 20px 20px;
}
@media (max-width: 991px) {
  .image-wrapper {
    width: 450px;
    height: auto;
    margin: 0 auto;
  }
  .event-tag-h3 {
    height: 60px !important;
    width: 300px !important;
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  /* Adjust breakpoint as needed */
  .img-fluid {
    max-width: 75% !important;
  }
  .hover-content {
    width: 75%;
    border-radius: 10px;
    transform: translateX(16.5%);
    transition: all .5s ease-in-out;
  }
  .event-tag-h3 {
    height: 40px !important;
    width: 200px !important;
    font-size: 15px;
  }
}
@media (max-width: 540px) {
  .event-tag-h3 {
    height: 30px !important;
    width: 200px !important;
    font-size: 14px;
    border-radius: 10px !important;
  }
}
.icon i {
  font-size: 20px;
}
.text-justify {
  text-align: justify !important;
}

.border-bottom-our-service {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.border-bottom-our-service::after {
  content: "";
  bottom: 0;
  position: absolute;
  left: 50%;
  width: 130%;
  transform: translateY(7px) translateX(-50%);
  border-bottom: 3.5px solid #fdb614;
}

.h3-container {
  display: inline-block;
  overflow: hidden; /* Allows border to go to edge of container */
  width: max-content;
}
h3.ads {
  padding: 10px 0;
  background-image: linear-gradient(to right, #fdb614 70%, transparent 30%);
  background-position: 0 100%; /* Position at the bottom */
  background-size: 100% 3px;
  background-repeat: no-repeat;
}
.image-container {
  position: relative;
  transition: ease-in-out 0.5s;
  overflow: hidden;
}

.image-container img {
  display: block;
  width: 100%;
  border-radius: 20px;
}
.image-container:hover {
  scale: 1.03;
  transition: ease-in-out 0.5s;
}

.image-container .image-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fdb614;
  color: black;
  text-align: center;
  padding: 5px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.image-container:hover .image-title {
  opacity: 1;
}
.image-title p {
  margin: 0;
}
.slider-dots {
  display: flex;
  justify-content: center;
}

.slider-dots .dot {
    bottom: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 2s ease, transform .5s ease-in-out;
}

.slider-dots .dot.active {
  background-color: #fdb614;
  transform: scale(1.2);
  border-radius: 10px;
  padding: 0px 10px;
  transition: background-color 2s ease, transform .5s ease-in-out;
}
.event {
  position: relative;
}

.event:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fdb614;
}