.logoo {
  width: 200px;
}
.socail-info {
  border-top: 3px solid #000000;
  padding-top: 25px;
}
.bannerBtn {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.bannerBtn a {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #ffffff;
  transition: all 0.35s ease-in-out;
}
.btnRow {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.titleCstm {
  font-size: 45px;
  line-height: 50px;
}
.service-icon-cstm img {
  width: 64px;
  height: 64px;
}
.itemInnerCstm h3 {
  font-size: 30px;
  line-height: 30px;
}

/* footer */

.footerIconsCstm {
  width: 30px;
}

/* end footer */

/* previous sponsors */

.prevSponsorsMarqItem img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

/* end previous sponsors */

/* nomination form styling */

.formCheckCstm {
  display: flex;
}

/* end nomination form styling */

/* media reg */

.modalContentCstm {
  background: #1a1a1a;
}
.modalContentCstm .modal-body {
  padding: 2rem 1rem;
}
/* .headerBtnMedia {
  background: url(assets/icons/close.png);
  width: 30px;
} */

.btnModalFooter {
  background: #000000;
  color: #ffffff;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  border: 1px solid #000000;
}
.headerBtnMedia {
  width: 30px;
  transition: transform 0.3s ease;
}
.headerBtnMedia:hover {
  transform: scale(1.2);
}
.btnModalFooter {
  transition: transform 0.3s ease;
}
.btnModalFooter:hover {
  transform: scale(1.1);
}
.modalFooterMedia {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.modalHeaderMedia {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
/* end media reg */

/* previous Speakers */

.prevSpeakerImgContainer img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.previousSpeakerInfoContainer a {
  cursor: initial;
}
.previousSpeakerInfoContainer p {
  margin-bottom: 5px;
}

/* end previous Speakers */

/* event location */

.evtLocationContainer img {
  width: 25px;
  height: 25px;
}
.locationDiv {
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 5px;
}

/* end event location */

/* inner page banner */

.innerPageBanner {
  position: relative;
  background-image: url(assets/images/commonImages/innerPageBanner.jpg) !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-attachment: fixed;
}

/* end inner page banner */

/* award nomination button */

@keyframes blinkGlow {
  0%,
  100% {
    box-shadow: 0 0 10px #23cafd, 0 0 20px #23cafd;
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 2px #23cafd, 0 0 4px #23cafd;
    opacity: 0.6;
  }
}

.award-btn {
  background-color: #23cafd;
  color: white;
  border: none;
  padding: 12px 15px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(35, 202, 253, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;

  /* Blinking effect */
  animation: blinkGlow 1.5s infinite;
}

/* end award nomination button */

/* btn highlight */

.btn-highlight {
  position: relative;
  animation: pulse-glow 2s infinite ease-in-out;
  box-shadow: 0 0 0 0 rgba(119, 190, 255, 0.7);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(119, 190, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(119, 190, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(119, 190, 255, 0);
  }
}
.btn-highlight::after {
  box-shadow: 0 0 15px 3px rgba(119, 190, 255, 0.5);
  animation: pulse-glow-after 2s infinite ease-in-out;
}

@keyframes pulse-glow-after {
  0% {
    box-shadow: 0 0 5px 2px rgba(119, 190, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 20px 6px rgba(119, 190, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 5px 2px rgba(119, 190, 255, 0.3);
  }
}
/* end btn highlight */

/* countdown */

.locationDivTop img {
  width: 30px;
  height: 30px;
}

.countdown-timer-widget {
  background: #000000;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Animated Background */
.countdown-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: -1;
}

.countdown-bg-animation::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%, transparent, #23cafd, transparent, #23cafd, transparent);
  animation: countdown-rotate 20s linear infinite;
}

@keyframes countdown-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.countdown-container {
  text-align: center;
  /* max-width: 1200px; */
  width: 100%;
  /* padding: 2rem; */
  padding: 6rem 0 2rem 0;
  position: relative;
  z-index: 1;
}

/* .countdown-header {
  margin-bottom: 4rem;
} */

.countdown-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #23cafd, #ffffff, #23cafd);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: countdown-gradientShift 3s ease-in-out infinite;
  letter-spacing: -2px;
}

@keyframes countdown-gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.countdown-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.countdown-event-date {
  font-size: 1.5rem;
  color: #23cafd;
  font-weight: 500;
  margin-top: 1rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(35, 202, 253, 0.3);
  border-radius: 50px;
  background: rgba(35, 202, 253, 0.05);
  backdrop-filter: blur(10px);
  display: inline-block;
}

.countdown-timer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  /* margin: 4rem 0; */
  margin: 1.5rem 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.countdown-timer-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(35, 202, 253, 0.2);
  border-radius: 24px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.countdown-timer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #23cafd, transparent);
  transition: all 0.6s ease;
}

.countdown-timer-card:hover::before {
  left: 100%;
}

.countdown-timer-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(35, 202, 253, 0.4);
  background: rgba(35, 202, 253, 0.08);
  box-shadow: 0 20px 40px rgba(35, 202, 253, 0.1);
}

.countdown-timer-number {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  /* color: #23cafd; */
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
  text-shadow: 0 0 30px rgba(35, 202, 253, 0.3);
  transition: all 0.3s ease;
}

.countdown-timer-card:hover .countdown-timer-number {
  transform: scale(1.1);
  text-shadow: 0 0 40px rgba(35, 202, 253, 0.5);
}

.countdown-timer-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
}

.countdown-progress-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  opacity: 0.2;
}

.countdown-progress-ring circle {
  fill: none;
  stroke: #23cafd;
  stroke-width: 2;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.countdown-expired-message {
  grid-column: 1 / -1;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #23cafd;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 2rem 0;
  animation: countdown-pulseGlow 2s ease-in-out infinite;
}

@keyframes countdown-pulseGlow {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 20px rgba(35, 202, 253, 0.5);
  }
  50% {
    opacity: 0.7;
    text-shadow: 0 0 40px rgba(35, 202, 253, 0.8);
  }
}

.countdown-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.countdown-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #23cafd;
  border-radius: 50%;
  animation: countdown-float 6s linear infinite;
}

@keyframes countdown-float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(1);
    opacity: 0;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .countdown-container {
    padding: 1rem;
  }

  .countdown-timer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
  }

  .countdown-timer-card {
    padding: 2rem 1rem;
  }

  .countdown-event-date {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .countdown-timer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* end countdown */
