.nav-icon .nav-icon-item {
    display: flex;
    flex-direction: column;  /* icon top, text bottom */
    align-items: center;
    text-decoration: none;
}

.nav-icon .nav-icon-item i {
    font-size: 22px;
}

.nav-icon .text {
    margin-top: 4px;
    font-size: 14px;
    display: block;
    text-align: center;
   font-family: 'Montserrat', sans-serif;

}

.nav-icon .count-box {
    margin-top: 2px;
    font-size: 12px;
}

@media (min-width: 1440px) {
  .fish-icon{
    font-size: 17px !important;
  }
}

@media only screen and (max-width: 1024px) {
.fish-icon{
    font-size: 20px !important;
  }
}

.page-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    /* margin: 30px 0 40px; */
    color: #222;
    position: relative;
}
.page-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
   background: linear-gradient(90deg, #045C9D, #0EAFFF, #00FFED, #7FFFD4);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Tabs container */
.fancy-tabs {
    display: flex !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding-bottom: 20px; /* space for arrow */
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
}

.fancy-tabs::-webkit-scrollbar {
    display: none;
}

/* Tab buttons */
.fancy-tabs .nav-link {
    background: #EDEDED;
    color: #666;
    font-weight: 600;
    padding: 12px 26px;
    margin: 0 6px;
    border-radius: 4px;
    position: relative;
    border: none !important;
    transition: 0.25s ease;
}

/* Active tab */
.fancy-tabs .nav-link.active {
    background: linear-gradient(90deg, #002f4b, #005c97, #00a8e8);
    color: #fff;
    position: relative;

}

/* PERFECT arrow like screenshot */
.fancy-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px; /* arrow sits flush */
    transform: translateX(-50%);

    width: 0;
    height: 0;

    border-left: 14px solid transparent;
    border-right: 14px solid transparent;

    border-top: 14px solid #0B5ED7; /* same blue */
}


/* Remove underline */
.fancy-tabs .nav-link::after {
    display: none !important;
}


/* Animate underline on hover & active */
.fancy-tabs .nav-link:hover::after,
.fancy-tabs .nav-link.active::after {
    width: 100%;
}

/* Optional hover text color */
.fancy-tabs .nav-link:hover {
    color: #0EAFFF;
}
/* Mobile responsive tabs */
/* Mobile responsive fancy tabs */
@media (max-width: 768px) {
    .fancy-tabs {
        display: flex !important;         
        /* justify-content: flex-start !important;  */
        overflow-x: auto !important;                  
        white-space: nowrap !important;              
        padding-bottom: 10px;             
        -webkit-overflow-scrolling: touch !important; 
        scrollbar-width: none !important;              
        font-size:15px !important;
    }

    .fancy-tabs::-webkit-scrollbar {
        display: none;                      /* Chrome/Safari hide scrollbar */
    }

    .fancy-tabs .nav-item {
        flex: 0 0 auto;                     /* width based on content */
        margin-right: 15px;                  /* spacing between tabs */
    }

    .fancy-tabs .nav-link {
        font-size: 16px;                    /* mobile font size */
        padding: 8px 15px;                  /* mobile padding */
    }

    .fancy-tabs .nav-link.active::after {
        bottom: -3px;                        /* adjust underline position */
    }
    .text{
        display: none !important;
    }
}

