/* css for msme page start on date 05-05-2005 */
/* Mobile Menu */

@font-face {
  font-family: "Espuma Pro";
  src: url("../fonts/espuma/EspumaPro-Regular.otf");
  font-weight: normal;
}
.espuma-pro {
  font-family: "Espuma Pro Regular" !important;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100vh;
  background-color: #000710;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease-in-out;
  z-index: 1050;
  padding-top: 60px;
  text-align: left;
}
.nav-link {
  position: relative;
  text-decoration: none;
  color: inherit; /* keeps text color */
  padding-bottom: 4px; /* optional spacing */
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #a20e19;
  transition: width 0.5s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu.open {
  left: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1040;
}

.overlay.show {
  display: block;
}

.menu-icon {
  font-size: 2.5rem;
  cursor: pointer;
  color: #fff;
  margin: 0 15px;
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}
@media (max-width: 992px) {
  .custom-dropdown-wrapper {
    width: 100%;
  }
}

/* Slick Custom Styles */
.media-slider img {
  max-height: 380px;
  margin: auto;
  border-radius: 10px;
}
.fixed-nominate-button {
  position: fixed;
  top: 70px;
  right: -20px;
  z-index: 9999; /* Stay above other elements */
}

.fixed-nominate-button .nominateBtn {
  background-color: #ffc107; /* Bootstrap yellow (or customize) */
  color: #000;
  font-weight: bold;
  border: none;
  padding: 10px 30px;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.fixed-nominate-button .nominateBtn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.slider-controls {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.award-frame {
  background: url("../images/msme-page/award_frame.svg") no-repeat center center;
  background-size: contain;
  width: 100%;
  padding-top: 100%; /* This makes the div a square */
  position: relative;
}
.award-frame span {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  text-align: center;
  width: 70%;
  font-size: 14px;
}
.bg-darkblue {
  background-color: #040f23;
}

.category-card {
  perspective: 1000px;
  margin-bottom: 30px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 200px;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.category-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  /* border: 1px solid #ffc107; */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.card-front {
  background-color: transparent;
  color: #ffc107;
  font-size: 1.2rem;
}

.card-back {
  border: 2px solid #c34149;
  background-color: #111827;
  color: #fff;
  transform: rotateY(180deg);
  font-size: 1rem;
  box-shadow: 0 0 15px #c3414ac4;
}
.media-coverage {
  background-image: url(../images/msme-page/images/media-coverage.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 500px;
}
#prevSlide img,
#nextSlide img {
  width: 15px;
}

/* Hide native select */
#realSelect {
  display: none;
}

.custom-dropdown {
  min-width: 200px;
  border: 1px solid #d32f2f; /* red border */
  background-color: #0d1b2a; /* dark background */
  color: #f9a825; /* yellowish text */
  font-family: sans-serif;
  cursor: pointer;
  position: relative;
  border-radius: 10px;
}

.selected-option {
  padding: 8px 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow {
  transition: transform 0.3s ease;
}

.dropdown-options {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  border-top: 2px solid #d32f2f;
}

.dropdown-options li {
  padding: 8px 10px;
  font-weight: bold;
  transition: background 0.3s;
}

.dropdown-options li:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.award-frame--clickable {
  cursor: pointer;
  border-radius: 10px;
}
.award-frame.active-category {
  /* border: 2px solid #ffc107; */
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
  transition: all 0.3s ease;
}

/* Toggle open */
.custom-dropdown.open {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.custom-dropdown.open .dropdown-options {
  display: block;
  position: absolute;
  background: #040f23;
  width: 100%;
  border: 1px solid #d32f2f;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 2;
}

.custom-dropdown.open .arrow {
  transform: rotate(180deg);
}
.profile-section {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 20px 0;
  color: white;
}

.thumbnail-wrapper {
  position: relative;
  width: 120px; /* set width as per your design */
  height: 120px;
  flex-shrink: 0;
}

.thumbnail-img {
  width: 100%;
  height: 100%;
  border-radius: 50%; /* optional if the image is circular */
  object-fit: cover;
  display: block;
  object-position: top center;
}

.thumbnail-border {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 110%;
  height: 110%;
  pointer-events: none; /* ensures it doesn't block hover/clicks */
}

.profile-info {
  max-width: 600px;
}

.role {
  font-weight: 400;
  color: #cfcfcf;
  margin: 5px 0;
}

.description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #cfcfcf;
}
.year-dropdown {
  position: relative;
  font-family: Arial, sans-serif;
}

.year-dropdown-btn {
  background: none;
  border: none;
  color: #f4a300;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.year-dropdown-btn:focus {
  border: 0;
  outline: none;
}

.year-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000d1a;
  border: 1px solid #f4a300;
  z-index: 1;
  min-width: 100%;
}

.rotate {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.year-dropdown-item {
  padding: 3px 20px;
  color: #f4a300;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background 0.3s;
}

.year-dropdown-item:hover {
  background-color: rgba(244, 163, 0, 0.2);
}
/* Scoped styling under .custom-slider-container */
.custom-slider-container .custom-video-slider .slick-slide {
  padding: 10px;
}

.custom-slider-container .slick-prev,
.custom-slider-container .slick-next {
  width: 40px;
  height: 40px;
  z-index: 10;
}

.custom-slider-container .slick-prev::before,
.custom-slider-container .slick-next::before {
  display: none;
}

/* Custom Arrow Images (replace with your own) */
.custom-slider-container .slick-prev {
  left: -50px;
  background: url("../images/msme-page/images/left.png") no-repeat center center;
  background-size: contain;
}
.custom-slider-container .slick-prev:focus {
  outline: none;
}
.custom-slider-container .slick-next:focus {
  outline: none;
}
.custom-slider-container .slick-next {
  right: -50px;
  background: url("../images/msme-page/images/right.png") no-repeat center
    center;
  background-size: contain;
}

/* Custom Dots */
.custom-slider-container .slick-dots li button:before {
  font-size: 52px;
  color: #888;
  opacity: 1;
}

.custom-slider-container .slick-dots li.slick-active button:before {
  color: #febe30;
}

/* Max height for video container */
.custom-slider-container .video-wrapper {
  position: relative;
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

/* Maintain aspect ratio and avoid stretching */
.custom-slider-container .video-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensures thumbnail/video is not stretched */
}
/* css for msme page end on date 05-05-2005 */

.msme_banner {
  background-repeat: no-repeat;
  text-align: center;
  background-size: auto;
  background-image: url("/wp-content/themes/tally/assets/images/msme-page/new-bg-white-01.svg");
}

.clsShortLinks {
  padding: 4px;
  border: 1px solid black;
  font-size: 14px !important;
  margin-right: 4%;
  width: 150px;
  float: left;
}
.clsAwardCardIcon {
  background-repeat: no-repeat;
  text-align: center;
  padding: 37px;
  margin: auto;
  font-weight: bold;
  padding-top: 58px;
  width: 187px;
  height: 180px;
  background-size: cover;
  background-image: url("/wp-content/themes/tally/assets/images/msme-page/award_frame.svg");
}
.clsNomineCardIcon {
  background-repeat: no-repeat;
  color: #ffffff;
  padding-top: 25px !important;
  text-align: left;
  padding-left: 16px !important;
  padding: 31px;
  margin: auto;
  width: 187px;
  height: 180px;
  background-size: cover;
  background-image: url("/wp-content/themes/tally/assets/images/msme-page/nomination_polygon.svg");
}
.nomineCardText {
  background: #94cbec;
  padding: 4px;
  color: #292929;
  font-size: 14px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
.nominate_text {
  font-size: 14px;
}
.webinars-custom-main-card .card-body .btn-register {
  display: block;
  text-align: center;
  padding: 15px;
  background-color: #febe30;
  color: #000;
  text-decoration: none;
}
.card-deck {
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.nomineeHrLine {
  margin: 6px 27px 0px 0px;
  border-top: 4px solid #febf2f;
  width: 18%;
}
.clsNomineeheader {
  line-height: 20px;
  font-weight: 600;
}

/*webinar css*/

.pro_img {
  /* width: 50%;
  padding: 6%;
  border-radius: 50%;*/
  width: 90px !important;
  height: 90px;
  border-radius: 100%;
}
.clsEventBox {
  background: #3069b1;
  color: white;
}
.clsEventDetails {
  line-height: 36px;
  border: 3px solid #d6d6d6;
  border-top: 0px;
  font-size: 14px;
  font-weight: 600;
}
.clsRegNowBtn {
  width: 153px;
  background: #febe30;
  margin: 16px;
  border: 0px;
}
.clsSpeakerDetails {
  font-size: 10px;
}

.clsEventHeader {
  font-size: 18px;
}
.webinarHrLine {
  width: 10%;
}
.webinarHrLine,
.hrLine {
  margin: 0;
  border-top: 4px solid #febf2f;
}

.webinars-custom-main-card .card-body {
  padding: 0;
}

.webinars-custom-main-card .card-body .card-content-wrapper {
  padding: 25px;
}

@media (min-width: 320px) {
  .tally_img {
    width: 121px;
    padding: 3%;
  }
  h1 {
    font-weight: bold;
    font-size: 1.8rem;
  }
  .clsMsmeHonors {
    width: 70%;
  }
  .clsRegNowBtn {
    width: 131px;
  }
}

@media (min-width: 425px) {
  h1 {
    font-weight: bold;
    font-size: 2rem;
  }
  .clsMsmeHonors {
    width: 70%;
  }
  .tally_img {
    width: 121px;
    padding: 3%;
  }
  .clsRegNowBtn {
    width: 131px;
  }
}

@media (min-width: 768px) {
  .tally_img {
    width: 168px;
    padding: 3%;
  }
  /*.msme_banner{
      height:373px !important;
    }*/
  h1 {
    font-weight: bold;
    font-size: 2rem;
  }
  .clsMsmeHonors {
    width: 70%;
  }
  .clsRegNowBtn {
    width: 131px;
  }
}

@media (min-width: 992px) {
  .tally_img {
    width: 200px;
    padding: 3%;
  }
  h1 {
    font-weight: bold;
    font-size: 2.3rem;
  }
  .clsMsmeHonors {
    width: 57%;
  }
  .headingBg {
    font-size: 0.9rem;
  }
}
@media (min-width: 1440px) {
}
