﻿  
        .nablink5 {
            color: #a61d37 !important;
        }
         .nav-tabs .nav-link .ragging{
             color:#a61d37;
             font-size:20px;
         }
         /* Highlight the active tab */
.nav-link.pacific-tab {
  background-color: #1e90ff;         /* Pacific blue */
  color: white !important;
  font-weight: bold;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.4);
  animation: tabPulse 1s ease-in-out infinite alternate;
}

/* Animation effect */
@keyframes tabPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.4);
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.6);
  }
}

