  .fact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

.fact-icon {
  width: 120px;
  height: 120px;
  border: 2px dotted #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.fact-icon img {
  width: 50%;
  filter: invert(1) brightness(2);
  transition: transform 0.3s ease;
}

.fact-label {
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.fact-item:hover .fact-icon {
  border-color: #00aaff; /* optional hover color */
}

.fact-item:hover .fact-icon img {
  transform: scale(1.1);
}

                    .white-image {
  filter: invert(1) brightness(2);
}
.text-4{display:block;color:#ffffff;text-align:center;}
/* Initially hide the IRCE scroll logo */
.scroll-logo {
  display: none;
  height: 50px;
  transition: opacity 0.3s ease;
  padding:10px;
}
 .main-logo {
   width:180px;
  }
/* Hide the main logos on small screens */
@media (max-width: 991px) {
  .main-logo {
    display: none !important;
  }
  .scroll-logo {
    display: block !important;
  }
}

/* When navbar is scrolled */
.navbar.scrolled .main-logo {
  display: none !important;
}

.navbar.scrolled .scroll-logo {
  display: block !important;
  opacity: 1;
}
     
.countdown-container {
  display: flex;
  gap: 30px;
}



.countdown-circle {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
    border:2px dotted #fff;
}

.countdown-circle .time {
  font-size: 30px;
  font-weight: bold;

}

.countdown-circle span {
  position: absolute;
  bottom: 10px;
  font-size: 15px;
  color: #fff;
}
.bg-white1{min-height:250px!important;}

/* Blinking Text Effect for Register Now */
@keyframes blinkText {
  0%, 100% {
    color: #000000; /* Crafto pink accent */
  }
  50% {
    color: #ffffff; /* white text */
  }
}

.register-blink {
 

  animation: blinkText 1.2s infinite;
  transition: color 0.3s ease;
  padding: 8px 18px;
  border-radius: 50px;
  background: transparent;
  font-weight:bold;
  font-size:16px;
}

.register-blink:hover {
  color: #ffffff !important;
  text-shadow: 0 0 8px rgba(255, 0, 127, 0.7);
  animation: none; /* stop blinking on hover */
}
/* Sticky Downloads Tab */
.downloads-tab {
  position: fixed;
  top: 40%;
  right: 0;
  z-index: 9999;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  font-family: "Poppins", sans-serif;
}

/* Vertical Tab Label */
.downloads-toggle {
  background: linear-gradient(135deg, #ff007f, #ff4db2);
  color: #fff;
  font-weight: 600;
  padding: 8px 11px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.downloads-toggle:hover {
  background: linear-gradient(135deg, #ff4db2, #ff007f);
}

/* Hidden Menu */
.downloads-menu {
  position: absolute;
  top: 0;
  right: 100%;
  background: #fff;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 15px 20px;
  width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.4s ease;
}

.downloads-tab:hover .downloads-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Menu Links */
.downloads-menu a {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  margin-bottom: 10px;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.downloads-menu a:hover {
  color: #ff007f;
  transform: translateX(5px);
}
/* Wrapper */
.sponsor-title-wrap {
    position: relative;
    text-align: center;
    margin: 30px 0 18px;
}

/* Minimized crossing line */
.sponsor-title-wrap::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 1px;               /* thinner line */
    background: #d0d0d0;       /* softer color */
    z-index: 1;
}

/* Base title style */
.sponsor-title {
    display: inline-block;
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 7px 26px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 0.4px;
}

/* Color variants */
.bg-event {
    background: #2f2f8f;      /* blue */
}

.bg-principal {
    background: #c44b00;      /* orange */
}

.bg-lanyard {
    background: #0a7c6f;      /* teal */
}

.bg-gold {
    background: #f3cc1d;      /* teal */
}


.bg-silver {
    background: #6b6b6b;      /* grey */
}

/* Mobile tuning */
@media (max-width: 576px) {
    .sponsor-title-wrap::before {
        left: 8%;
        right: 8%;
    }

    .sponsor-title {
        font-size: 16px;
        padding: 6px 18px;
    }
}
