  

body{
 background-color:white;   
    
}

.text-primary{
  color: rgba(23, 166, 232,1) !important;
}

.text-shadow{
  text-shadow: 0 0 5px rgba(74, 74, 74, 0.5);

}
.btn-primary {
    background-color: rgb(23, 166, 232) !important;
}
.bg-primary{
    background-color: rgb(23, 166, 232) !important;
    
}
/* this is for the umbraco forms button */
.btn.primary {
    background-color: rgb(23, 166, 232) !important;
    color: white;
}

/* TICKER CODE START */
.ticker-container {
  position: relative; top: 60px; /* Height of the navbar */ 
   /* Ensure it stays above other content */
  /* z-index: 9999; */
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-color: white;
  border: 0px solid white;
  padding: 4px 0;
  border-bottom: 10px solid transparent;
  /* margin-bottom: 10px; */
  /* overflow-x: auto; */
   /* line-height: 100px; */
   cursor: grab;
}

.ticker {
  display: inline-block;
  animation: scroll 100s linear infinite;
  /* animation: scroll 120s cubic-bezier(0.25, 0.1, 0.25, 1) infinite; */
 
}

/* .ticker-item img{
  height:40px;
} */

.ticker-item {
  background-color: transparent;
  display: inline-block;
  padding: 5px;
  transition: transform 0.3s ease, width 0.3s ease, height
}

.ticker:hover { 
  animation-play-state: paused;
}

.ticker-item:hover {
  transform: scale(1.25);
  animation-play-state: paused;
  /* width: px;
  height: 110px; */
}

@keyframes scroll {
  0% {
      transform: translateX(0%);
  }
  50% {
      transform: translateX(-100%);
  }
  100%{
    transform: translateX(0%);
  }
  
}

/* Media query to hide the ticker on mobile devices */ 
@media (max-width: 768px) {
    .ticker-container { display: none; } 
}

/* TICKER CODE END */

.card {
    transition: transform 0.2s, box-shadow 0.2s !important ;
}
.card:hover {
    transform: translateY(-2px) scale(1.1) !important;
    box-shadow: 2px 2px 24px rgba(0, 0, 0, 0.4) !important;
}

.footer-gradient {
    background: linear-gradient(135deg, #45526e 0%, #232946 100%) !important;
}

.footer-link, .footer-link:visited {
    color: #fff;
    text-decoration: none;
    transition: text-decoration 0.4s;
}
.footer-link:hover, .footer-link:focus {
    text-decoration: none !important;
    color: #ffd700 !important;
}


.footer-logo-bg {
    background: rgba(255,255,255,0.85);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: inline-block;
}

.footer-logo-bg {
    border: 1px solid #eee;
}






