html {
    font-family: "Nunito Sans", sans-serif;
    src: url('/public/assets/fonts/NunitoSans_7pt-Regular.ttf'),
         format('truetype');
}

.secondary-nav,
.primary-nav {
    transition: transform 0.35s ease-in-out; 
}

@media screen and (max-width: 767px) {
    .primary-nav,
    .secondary-nav {
        display: none;
    }
}

#mobile-menu {
    animation: slideDown 0.5s ease-out forwards;
    transform: translateY(-100%);
}


#mobile-menu.hidden {
    transform: translateY(-200%);
}


@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* service button header */
#service-button:hover #service-arrow{
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}
#service-arrow{
    transition: transform 0.3s ease;
}

/* learn more animation */
/* hidden-learn
static-icon-arrow 
hover-card 
card-img */
.card-img{
    transition: transform 0.3s ease;
}
.hidden-learn{
    opacity: 0;
    transition: opacity 0.3s ease;
}
.static-icon-arrow{
    transition: transform 0.3s ease;
    margin-left: -78px;
}
.hover-card:hover .card-img{
    transform: scale(110%)
}

.hover-card:hover .hidden-learn{
    opacity: 1;
}
.hover-card:hover .static-icon-arrow{
    transform: translateX(90px);
}

/* expertise card animation */
.expertise-card{
    transition: 0.3s ease;
}
.expertise-card:hover{
    transform: translateY(-10px);
}
.expertise-card:hover .expertise-arrow{
    transform: translateX(110px);
}
.expertise-card:hover .know-more{
    opacity: 100;
}
.know-more{
    transition: opacity 0.3s ease;
}
.expertise-arrow{
    transition: 0.3s ease;
}
.expertise-arrow{
    margin-left: -98px;
}
.know-more{
    opacity: 0;
}

.gif-img {
    display: none;
}

.expertise-card:hover .static-img {
    display: none;
}

.expertise-card:hover .gif-img {
    display: block;
}

/* solution card */
.solution-card {
    position: relative;
    transition: transform 0.5s ease, background-color 0.5s ease;
}

.solution-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #b6eaff; /* Initial background color on hover */
    transition: height 0.5s ease;
    z-index: -1;
    border-radius: 5px;
    
}

.solution-card:hover::before {
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-card:hover .service-card-know {
    background-color: #fca13f;
    color: white;
}

/* about us page */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
    z-index: 30;
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  /* Style the icon bar links */
  .icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
  }
  
  /* Style the social media icons with color, if you want */
  .icon-bar a:hover {
    transform: scale(105%);
  }
  
  .facebook {
    background: #3B5998;
    color: white;
  }
  
  .twitter {
    background: #55ACEE;
    color: white;
  }
  
  .google {
    background: #dd4b39;
    color: white;
  }
  
  .linkedin {
    background: #007bb5;
    color: white;
  }
  
  .youtube {
    background: #bb0000;
    color: white;
  }


  /* animated bars on hompage */

  .banner-button {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    padding: 10px 20px;
    background-color: transparent;
    color: #fff;
    border: 2px dashed transparent;
    border-radius: 5px;
    cursor: pointer;
}


  .banner-button.active {
    color: #fff; /* Change to desired text color */
    /* border: 2px dotted white; */
  }

  .line{
    background-color: #b6eaff;
    height: 4px;
    border-radius: 5px;
    width: 0%; 
    transition: width 0s;
  }

  .line.active{
    background-color: #b6eaff;
    height: 4px;
    border-radius: 5px;
    width: 100%; /* Initial width set to 0 */
    transition: width 3.8s linear;
  }

  /* animated bars - sub pages */

  .line-bar{
    background-color: #27c2ff;
    height: 4px;
    border-radius: 5px;
    width: 0%; 
    transition: width 0.2s;
  }

  .line-bar.active{
    background-color: #14bcff;
    height: 4px;
    border-radius: 5px;
    width: 100%; /* Initial width set to 0 */
    transition: width 1s linear;
  }



  /* submenu bar */

  .sub-menu-logo{
    width: 0px;
    opacity: 0%;
    transition: opacity 2s ease ;
    margin-left: 0;
  }

  .sub-menu-logo.active{
    z-index: 50;
    margin-left: 10rem;
    width: 20%;
    opacity: 100%;
    transition: opacity 3s ease;
    /* transition: margin-left 1s ease-in-out; */
}

.sub-menu-logo.active .sub-menu-bar {
    z-index: 990;
  }

/* Industry Tiles */

.industry-tile:hover{
    cursor: pointer;

}
.industry-tile:hover .industry-tile-img {
    transform: scale(1.1); /* Use transform to scale */
    transition: transform 0.5s ease; /* Smooth transition */
}

.industry-tile-img {
    transition: transform 0.5s ease; /* Apply transition to ensure smooth return */
}

.industry-tile:hover .industry-tile-title {
    background-color: #9be3ff;
}