.fade-in {
    animation: fadeIn ease 10s;
    -webkit-animation: fadeIn ease 10s;
    -moz-animation: fadeIn ease 10s;
    -o-animation: fadeIn ease 10s;
    -ms-animation: fadeIn ease 10s;
  }
  @keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  
  @-moz-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  
  @-webkit-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  
  @-o-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  
  @-ms-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }


  



/* bation-card */
.bastion-card {
  background: linear-gradient(145deg, #343a40, #02489e);
  color:white;
  border: 0;
  border-radius: 1rem;
  padding: 0rem;
}

.bastion-card .btn-bast {
    color:#fff;
    background: linear-gradient(145deg, #343a40, #02489e);
    border-radius: 1rem;
    border-color: #fff;
    
}
.bastion-card .btn-bast:hover {
  background: linear-gradient(145deg, #007bff, #007bff);
  border-color: #fff;
  color:#fff;
}


  
/* illustrated-cards */

.illustrated-card {
  background: linear-gradient(145deg, #ffffff, #e6ecf3);
  border: 2px dashed #02489e;
  border-radius: 1rem;
  box-shadow: 6px 6px 0px #02489e;
  padding: 1.5rem;
  transition: transform 0.2s;
}

.illustrated-card:hover {
  transform: translateY(-5px);
}

  .illustrated-card-left {
  background: linear-gradient(145deg, #ffffff, #e6ecf3);
  border: 2px dashed #02489e;
  border-radius: 1rem;
  box-shadow: -6px 6px 0px #02489e;
  padding: 1.5rem;
  transition: transform 0.2s;
}

.illustrated-card-left:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #02489e;
}

.stat-label {
  font-size: 1rem;
  color: #555;
}

.card-header {
  background-color: transparent;
  border-bottom: none;
  font-weight: bold;
  font-size: 1.25rem;
  color: #02489e;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background-color: #02489e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 1.2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}




/* SCROLL BAR */

    /* width */
::-webkit-scrollbar {
  width: 5px;
  height: 6px;
}

    /* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
  
    /* Handle */
::-webkit-scrollbar-thumb {
  background: #02489e; 
  border-radius: 10px;
}

    /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #2c2c2cd6; 
}



/* hero-banner */
.hero-banner h1 {
    font-size: 48px;
}
.hero-banner .btn {
    position: relative;
    overflow: hidden;
    z-index: 9;
}
.hero-banner .btn-primary {
    color: #2f2f41;
    background-color: rgba(1, 164, 121, 0.1);
    border-color: #01a479;
}
.hero-banner .btn:before {
    content: "";
    background: #ed5561;
    width: 4px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}
.hero-banner .btn:hover:before {
    width: 100%;
}
.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
  }




  /* TEAM CARDS*/
  .swiper-container {
    padding: 40px 0;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
  }

  /* Bubble Card Style */
  .team-bubble {
    max-width: 300px;
    background: #fff;
    border: 3px dotted #02489e;
    border-radius: 2rem;
    box-shadow: 6px 6px 0 #02489e;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
  }

  .team-bubble:hover {
    transform: scale(1.05);
  }

  .team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #02489e;
    margin-bottom: 0.75rem;
  }

  .team-info {
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s ease;
    font-size: 0.9rem;
  }

  .team-bubble:hover .team-info {
    opacity: 1;
    transform: translateY(0);
  }