:root {
  --primary-color: #1e3a8a;
  --secondary-color: #3e95fe;
  --font-color: light-dark(#111827, #d7d8ed);
  --menu-color: #3b4056;
  --menu-bg-color: #f7f7f9;
}

.svg-icon {
  transition: fill 0.3s;
}

label:hover .svg-icon {
  fill: var(--primary-color);
  /* Change to your desired hover color */
  color: #ffffff;
}

.svg-icon:hover .play-button {
  fill: var(--primary-color);
}

label:hover .play-button {
  fill: var(--primary-color);
}

input[type='radio']:checked+.svg-icon {
  fill: var(--primary-color);
  /* Change to your desired selected color */
  color: #ffffff;
}

input[type='radio']:checked+.svg-icon .play-button {
  fill: var(--primary-color);
  /* Change to your desired selected color */
}

.menu-link> :not(.menu-icon) {
  padding-left: 0.3rem;
}

.hover-card {
  background-color: var(--secondary-color) !important;
  color: white !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hover-card .card-title {
  color: white !important;
}

/* Apply hover effect */
.hover-card:hover {
  background-color: var(--primary-color) !important;
}

/* Ensure text color changes inside the card */
.hover-card:hover .card-body p,
.hover-card:hover .card-body h6 {
  color: white !important;
}

/* Image effect on hover */
.hover-card:hover img {
  opacity: 0.8;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

h1 {
  color: var(--primary-color);
}

.menu-link:hover,
.light-style .menu-vertical .menu-item.open>.menu-toggle {
  background-color: var(--secondary-color) !important;
  color: #ffffff !important;
}

body,
p,
td {
  color: var(--font-color) !important;
}

.app-brand-logo {
  margin: 1rem;
}


#landingHero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.swiper-container {
  height: 100%;
  width: 100%;
}

.swiper-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.content-cms {
  position: absolute;
  top: 32%;
  left: 15%;
  color: #fff;
  /* Text color */
  z-index: 3;
  /* Ensures the text is above other elements */
  text-align: left;
  /* Aligns the text to the left */
  white-space: normal;
  /* Allows the text to wrap */
  max-width: 45%;
  /* Prevents horizontal overflow */
  word-wrap: break-word;
  /* Ensures words break if they are too long */
}

.content-cms h1 {
  font-size: 4rem;
  /* Large font size for larger screens */
  line-height: 1.2;
  /* Line height for readability */
}

.content-cms h2 {
  font-size: 1.5rem;
  /* Smaller font size for subheadings */
  margin-bottom: 1rem;
  /* Spacing below the heading */
  z-index: 3;
  /* On top of other elements */
}

/* Responsive adjustments for smaller screens */
@media (min-width: 768px) {
  .content-cms {
    top: 35%;
    /* Adjust vertical position */
    left: 15%;
    /* Keep some padding from the left */
    max-width: 90%;
    width: 40%
      /* Allow full width on smaller screens */
  }

  .content-cms h1 {
    font-size: 2.5rem;
    /* Reduce font size for better fit */
    line-height: 1.3;
    /* Adjust line spacing */
  }

  .content-cms h2 {
    font-size: 1.25rem;
    /* Slightly smaller subheading */
  }

  .content-cms .btn {
    font-size: 2rem
  }
}

@media (max-width: 540px) {
  .content-cms {
    width: 320px;
    left: 42% !important;
  }

  .content-cms h1 {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }

  .content-cms h2 {
    line-height: 1.5rem;
  }

  .content-cms .btn {
    font-size: 1.2rem
  }
}

@media (max-width: 1199.98px) {
  .content-cms {
    top: 30%;
    /* Further adjust for very small screens */
    left: 35%;

    word-wrap: break-word;
    /* Use the full width */

    /* Center align for better readability */
  }

  .content-cms h1 {
    font-size: 2rem;
    /* Smaller font for very small screens */
    line-height: 1.4;
    word-break: break-word;
    /* Break long words */
    overflow-wrap: break-word;
    /* Ensure wrapping for long words */
    white-space: normal;
    /* Allow text to wrap */
    max-width: 80%;
  }

  .content-cms h2 {
    font-size: 1rem;
  }
}


.btn {
  z-index: 3;
  /* padding: 0.75rem 1.5rem;
  font-size: 1rem;
  
   On top of everything */

}


/* Animation for Float Effect */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.swiper-pagination {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  z-index: 10;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.front-right-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  /* Behind text and button */
  opacity: 0.7;
  /* Add some transparency */
}

/* Left Image Styling */
.front-left-img {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 40%;
  /* Cover part of the central area */
  height: auto;
  z-index: 2;
  /* Behind text and button but above background */
  opacity: 0.8;
  /* Add transparency for subtle effect */
  animation: float 6s ease-in-out infinite;
  /* Optional floating animation */
}

.editor-text {
  font-size: 1.2rem;
  line-height: 1.8rem;
}

/* Scroll-up animation */
@keyframes scrollUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Images: Initially hidden */
.scrollspy-example img {
  opacity: 0;
  transform: translateY(20px);
  /* Start position: slightly below */
  animation: scrollUp 1s ease forwards;
  border-radius: 20px;
}

/* Headings: Initially hidden */
.scrollspy-example h2,
.scrollspy-example h1 {
  opacity: 0;
  transform: translateY(20px);
  /* Start position: slightly below */
  animation: scrollUp 1s ease forwards;
}

/* Sequential animation using nth-child */
.scrollspy-example h2:nth-child(odd),
.scrollspy-example img:nth-child(even),
.scrollspy-example h1:nth-child(odd) {
  animation-delay: 0.2s;
}

.scrollspy-example h2:nth-child(3),
.scrollspy-example h1:nth-child(3) .scrollspy-example img:nth-child(4) {
  animation-delay: 0.4s;
}

.scrollspy-example h2:nth-child(5),
.scrollspy-example h1:nth-child(5),
.scrollspy-example img:nth-child(6) {
  animation-delay: 0.6s;
}

/* Optional: Hover effect for interactive animation */
.scrollspy-example img:hover,
.scrollspy-example h2:hover {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Media query for mobile view */
@media (max-width: 768px) {

  h1,
  .h1,
  h2,
  .h2 {
    line-height: 2.4rem;
    /* Adjust line height for smaller screens */
  }
}

.square-btn {
  width: 100%;
  /* Make buttons take full width of the column */
  height: 20vw;
  /* Make the height of the button very large (based on viewport width) */
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  /* Make the font bigger */
  padding: 1.5rem;
  /* Increase padding for bigger buttons */
}

.square-btn:hover {
  background-color: #007bff;
  /* Primary color on hover */
  color: white;
  /* Text color on hover */
  border-color: #007bff;
  /* Border color on hover */
}

/* Adjust button sizes for larger screens */
@media (min-width: 768px) {
  .square-btn {
    height: 15vw;
    /* Adjust size for medium screens */
    font-size: 2.5rem;
    /* Adjust font size for medium screens */
  }
}

/* Extra large screens */
@media (min-width: 1200px) {
  .square-btn {
    height: 12vw;
    /* Adjust size for large screens */
    font-size: 2rem;
    /* Adjust font size for large screens */
  }
}

.bg-label-info {
  border-color: #4b4b4b !important;
  color: #1e3a8a !important;
  border: 1px solid;
}

.hidden {
  display: none;
}

.form-container {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Style for the logo */
#login-selection .logo {
  width: 60%;
  /* Full-width logo */
  height: auto;
  /* Maintain aspect ratio */
  max-width: 400px;
  /* Optional: limit the max size for large screens */
  margin: 0 auto 20px;
  /* Center with spacing below */
}

/* Buttons styling */
#login-selection .custom-btn {
  width: 100%;
  /* Full-width button */
  max-width: 400px;
  /* Optional: limit the width for large screens */
  font-size: 1.25rem;
  /* Larger font for better visibility */
  padding: 15px;
  /* Consistent padding */
  text-transform: uppercase;
  /* Make text uppercase for emphasis */
  display: flex;
  /* Align content */
  align-items: center;
  /* Center icon and text vertically */
  justify-content: center;
  /* Center content horizontally */
}

.robo-container {
  position: fixed;
  bottom: -200px;
  /* Start out of view */
  right: -200px;
  /* Start out of view */
  z-index: 1000;
  transition: transform 1s ease-in-out, bottom 1s ease-in-out;
  transform: translate(0, 0);
}

.robo-container.active {
  bottom: 0px;
  /* Position in view */
  right: 20px;
  /* Position in view */
  transform: translate(0, 0);
}

.robo {
  width: 110px;
  /* Adjust size as needed */
  height: auto;
}

/* Speech bubble styling */
.speech-bubble {
  position: absolute;
  top: -18px;
  left: -170px;


  padding: 7px 7px;

  opacity: 0;
  /* Initially hidden */
  transform: scale(0.8);
  transition: opacity 1s ease, transform 1s ease;
  z-index: 100;
}

.speech-bubble::after {
  content: "";
  position: absolute;

  left: 20px;
  width: 0;
  height: 0;
  border: 4px solid transparent;

}

/* Animated text */
.animated-text {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  width: 0;
  /* Hidden initially */
  animation: typing 3s steps(20, end), blink 0.5s step-end infinite alternate;
  animation-delay: 2s;
  /* Wait for the bubble animation */
  animation-fill-mode: forwards;
  /* Keep the text visible after animation */
}

/* Typing effect */
@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 200px;
  }

  /* Adjust width to fit text */
}

/* Cursor blink */
@keyframes blink {
  from {
    border-right: 2px solid #333;
  }

  to {
    border-right: 2px solid transparent;
  }
}

/* Show the speech bubble when active */
.robo-container.active .speech-bubble {
  opacity: 1;
  transform: scale(1);
}

@keyframes slideUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes flipImage {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

/* .features-icon-box {
  opacity: 0;
  animation: slideUp 1s ease forwards;
  animation-delay: var(--animation-delay);
}

.features-icon-box .feature-img {
  display: inline-block;
  animation: flipImage 0.6s ease forwards;
  transform-origin: center;
} */

.features-icon-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  /* Adjust gap size as needed */
}

.features-icon-box {
  flex: 1 1 calc(30.333% - 2.5rem) !important;
  /* Three boxes in a row */
  max-width: calc(20.333% - 2.5rem);
  box-sizing: border-box;
  /* Ensure padding/margin doesn't affect width */
  border: 1px solid #ccc;
  border-radius: 15px;
  padding-top: 1rem;
  margin-top: 0 !important;
}

.help-icon {
  border: 0px !important
}

@media (max-width: 768px) {

  .form-floating-select2,
  .flatpickr-input {
    /* margin-top: 1rem; */
  }

  .form-floating-select2 {
    margin-bottom: 1.2rem;
  }

  .help-icon {
    margin-bottom: -.5rem;
    max-height: 3rem;
  }
}

.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select {
  border-right: 1px solid #cfd0d6 !important;

  border-radius: 0.5rem !important;
}

.select2-container--default .select2-selection {
  /* border-right: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important; */
}

.btn-outline-primary {
  border: 1 !important;
  border-width: 1px !important;
  border-radius: 10px
}

.btn-outline-primary:hover {
  background-color: #fff
}

.info-card {
  transition: transform 0.3s ease-in-out, box-shadow 1s ease-in-out;
  /* animation: flipX 1s ease-out forwards;
  will-change: transform, opacity; */
}

.info-card:hover {
  transform: scale(1.01) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background: #eee;

}

.btn-outline-primary {
  /* transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  animation: zoomIn 0.9s ease-out forwards;
  will-change: transform, opacity; */
}

.btn-outline-primary:hover {
  transform: scale(1.06) !important;
  box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);

}

@keyframes flipX {
  from {
    opacity: 0;
    transform: rotateX(90deg);
  }

  to {
    opacity: 1;
    transform: rotateX(0);
  }
}


@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  0% {
    visibility: visible;
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }
}

.ani-table {
  /* animation: fadeIn 2s ease-out forwards;
  opacity: 0; */
}

.box-selected {
  background-color: #eee;

}

.loader {

  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50%;
  background: #f3eeee;
  padding: 30px;
  border-radius: 30px;

}

.dataTables_wrapper {
  min-height: 500px;
  visibility: hidden;
  /* Hide table initially */
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
  /* Smooth fade-in effect */
}

.dropdown-item {
  transition: transform 0.2s ease-in-out;
}

.dropdown-item:hover {
  transform: translateX(5px);
}

.nav-link {
  font-size: 1.3rem !important;
}

@media (max-width: 767px) {
  .nav-link {
    font-size: 1.1rem !important;
  }

  h1,
  .h1,
  h2,
  .h2 {
    line-height: 2.25rem !important;
  }

  .features-icon-box {
    flex: 1 1 100% !important;
    /* Three boxes in a row */
    max-width: 100%;

  }
}

.front-slider-btn {
  background-color: #d2dbe2 !important;
  color: var(--primary-color) !important;
  text-transform: none !important;
}

.front-slider-btn:hover {
  color: #fff !important;
  background-color: var(--primary-color) !important;
}

.nav-item.active {
  border-bottom: 3px solid var(--primary-color) !important;
}

.countdown-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 3rem;
  font-weight: bold;
}

.vjs-record.video-js .vjs-control.vjs-record-indicator {
  background-color: #ff625e;
  border-radius: 50%;
  width: 1.6em;
  /* Increased from .8em */
  height: 1.6em;
  /* Increased from .8em */
  line-height: 1.6em;
  /* Match the height for centering text */
  opacity: 1;
  pointer-events: none;
  position: absolute;
  right: 2.5ex;
  top: 2ex;
  transform: rotateX(0) scale(1.3);
  transition: all .5s, transform .2s .1s;
}

.vjs-record.video-js .vjs-control.vjs-record-indicator:before {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-name: pulsetext;
  color: #fff;
  content: attr(data-label);
  font-family: Helvetica, sans-serif;
  font-size: 1.2em;
  /* Increased from .8em */
  left: -3.5em;
  /* Adjusted to align with the larger indicator */
  opacity: 1;
  pointer-events: none;
  position: absolute;
  top: -0.1em;
  transition: opacity .5s .2s;
}

.vjs-record.video-js .vjs-control.vjs-record-indicator:after {
  animation-delay: .25s;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: pulse;
  border: 2px solid #ff625e;
  border-radius: 50%;
  content: "";
  display: block;
  width: calc(1.6em - 4px);
  /* Increased from .8em */
  height: calc(1.6em - 4px);
  /* Increased from .8em */
  left: 2px;
  pointer-events: none;
  position: absolute;
  top: 2px;
  transform-origin: center;
}

.modal.bottom-right .modal-dialog {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  margin: 0;
}

.pac-container {
  z-index: 2051 !important;
  /* Higher than Bootstrap modal (1050) */
}

.chat-offcanvas-full {
  width: 100vw !important;
  /* Full width on mobile */
}

@media (min-width: 992px) {
  .chat-offcanvas-full {
    width: 75vw !important;
    /* 50% width on large screens */
  }
}

.chat-offcanvas {
  width: 100vw !important;
  /* Full width on mobile */
}

@media (min-width: 992px) {
  .chat-offcanvas {
    width: 50vw !important;
    /* 50% width on large screens */
  }
}

.vjs-icon-av-perm:before {
  content: "\f102"
}

.custom-record-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(248, 86, 86, 0.91) !important;
  color: white;
  border: none;
  border-radius: 10%;
  width: 120px;
  height: 80px;
  font-size: medium !important;
  font-weight: bold;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.modal-fullscreen {
  width: 96vw !important;
  height: 96vh !important;
  margin: auto !important;
  margin-top: 2vh !important;

}

.modal-fullscreen .modal-content {
  border-radius: 20px !important;
}

.modal-content .modal-header .modal-title {
  font-size: 1.5rem !important;
}

.features-icon img {
  border-radius: 10px !important;
}

.select2-results__option svg {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #ddd;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 200px;
  /* Increased for better scrolling */
  overflow-y: auto;
  background: #fff;
  border-radius: 4px;
  /* Soft corners */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Materialize-like shadow */
}

.autocomplete-items div {
  padding: 12px 15px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  /* Materialize default font */
  transition: background-color 0.2s ease-in-out;
}

.autocomplete-items div:hover,
.autocomplete-active {
  background-color: #f5f5f5;
  /* Materialize hover color */
  color: #333;
}

.autocomplete-items div:last-child {
  border-bottom: none;
}

/* Add a highlight effect for the selected item */
.autocomplete-active {
  background-color: var(--primary-color) !important;
  /* Materialize primary color */
  color: #fff !important;
  font-weight: bold;
  border-radius: 4px;
}

.app-chat .app-chat-history .chat-history .chat-message.chat-message-right .chat-message-text {
  background-color: #eee !important;
}

.tox-promotion {
  display: none !important;
}


table.dataTable tbody tr.odd:hover,
table.dataTable tbody tr.even:hover {
  background-color: #e2e8f0 !important;
}


/* Table header background */
table.dataTable>thead>tr>th {
  background-color: #e0e7ff !important;
}

.typing-dots .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 3px;
  border-radius: 50%;
  background-color: #6c757d;
  animation: blink 1.4s infinite both;
}

.typing-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {

  0%,
  80%,
  100% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}

.chat-log-scroll {
  height: 55vh;
  overflow-y: auto;
}

@media (max-width: 767.98px) {
  .chat-log-scroll {
    height: 65vh;
  }
}


/* Wrapper for border gradient */
.ai-button-wrapper {
  position: relative;
  display: inline-block;
  padding: 4px;
  border-radius: 12px;
  /* background: linear-gradient(270deg, #0055ff, #001f99, #0055ff, #001f99); Darker blues */
  background: linear-gradient(270deg, #1261ff, #001b87, #1261ff, #001b87);
  /* Sharper Contrast */
  background-size: 800% 800%;
  animation: moveGradient 10s linear infinite;
  /* Slower default */
  transition: animation-duration 0.3s ease;
}

/* Button inside */
.ai-gradient-btn {
  background-color: #3399ff;
  color: #ffffff !important;
  /* Force white */
  font-size: 1.1rem;
  font-weight: 650 !important;
  /* Bold */
  padding: 0.7rem 1.6rem;
  border: none;
  border-radius: 10px;
  z-index: 1;
  position: relative;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  /* Optional: tiny dark shadow to make white pop better */
}

/* Hover on Button */
.ai-gradient-btn:hover {
  background-color: #4dabff;
  box-shadow: 0 0 10px #0055ff, 0 0 20px #001f99;
}

/* Hover on Wrapper (only affects animation speed) */
.ai-button-wrapper:hover {
  animation-duration: 6s;
  /* Slightly faster on hover, not crazy fast */
}

/* Keyframes for moving gradient */
@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.bg-extra-light {
  background-color: #f1f3f5 !important;
}

.custom-datatable-height .dataTables_wrapper {
  min-height: 0 !important;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.ri-icon {
  font-size: 1.5rem;
  color: #495057;
}

#registration-link,.default-txt-link,.editor-text a{
  color:#1e3a8a !important;
  text-decoration: underline;
}

#registration-link:hover,.default-txt-link:hover,.editor-text a:hover{
  color:#0b1531 !important;
  
}

.top-tab {
    display: flex;
    border: 1px solid #1e3a8a;
    border-radius: 50px;
    overflow: hidden;
    background-color: #f0f4ff; /* light base */
}

.top-tab-item {
    padding: 10px 20px;
    cursor: pointer;
    color: #1e3a8a;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    user-select: none;
    flex: 1;
    text-align: center;
    background-color: transparent;
}

.top-tab-item:hover {
    background-color: #c7d2fe; /* more visible hover */
    color:#0d193a;
}

.top-tab-item-active {
    background-color: #1e3a8a;
    color: white;
    font-weight: 600;
}
