/* width */
::-webkit-scrollbar {
  width: 13px;
  min-width: 13px;
  /* padding-right: 5px; */
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0px #061a3b;
  background-color: transparent;

  border-radius: 0px;

}

/* Handle */
::-webkit-scrollbar-thumb {
  background: url(./ICONS/Rod.png);
  -webkit-background-clip: inherit;
  background-repeat: no-repeat;
  height: 180px;
}



/* CAROUSEL START */

.carousel-container {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -1px;
  overflow: hidden;
}


.carousel {
  position: relative;
  width: 100%;
  padding-bottom: 29.47%;
  /* Maintain aspect ratio of 1920 x 565 */
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Adjust the alpha value to control the darkness */
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide:hover .overlay {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* CAROUSEL END */


/* Focused Sectors */



.image-box {
  position: relative;
  /* width: 190px; */
  /* Adjust the width as needed */
  /* height: 175px; */
  /* Adjust the height as needed */
  margin: 5px;
  overflow: hidden;
  border-radius: 10px;
  object-fit: cover;
}

.image {
  /* width: 100%;   */
  /* height: 100%; */
  object-fit: cover;
  border-radius: 10px;
  transition: filter 0.5s ease-in-out;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background-color: rgba(0, 0, 0, 0.5);
}

.image-text {
  color: #fff;
  font-size: 17px;
  text-align: center;
  padding: 10px;
}

.image-box:hover .image {
  filter: blur(3px);
  /* Adjust the blur value as desired */
}

.image-box:hover .image-overlay {
  opacity: 1;
}




/* FOR MENU BUTTONS IN NAVBAR */
.dropdown:hover .dropdown-menu {
  display: block;
  width: max-content;
}




/* GALLERy */
/* 
<div class="image-box h-[100px] md:h-[250px] md-w-[300px]">
<img class="image h-[250px] w-[300px]" src="/Focused Sectors/aero.jpg" alt="">
<div class="image-overlay">
  <h3 class="image-text">1. <br>FOCUSED SECTORS HERE</h3>
</div> */



/* CUSTOM CSS FOR PRESENTING PARTNER POPUP */



.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  z-index: 9999;
}

.modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
  max-width: 470px;
  max-height: 450px;
  margin: 10% auto;
  padding: 3px;
  background-color: #fff;
  border-image: linear-gradient(#f8cc20, #003c9d) 30;
  border-width: 3px;
  border-bottom-width: 6px;
  border-right-width: 4.5px;
  border-style: solid;
}

h2,
p {
  margin: 0 0 10px 0;
}

button {
  padding: 10px 20px;
}


/* ANIMATIONO AND STYLING FOR SPEAKER PAGE */

#speaker-border {
  height: 8px;
  width: 24rem;
  border-radius: 500px;
  background: linear-gradient(-10deg, #027b3d, #f57504, #276ad7, #dd463b, #012969);
  background-size: 150% 150%;
  animation: gradient 3s ease-in-out infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.speaker-card {
  width: 20%;
}

.speaker-card:hover {
  transform: scale(0.95);
  transition-duration: 1.2s;
}

