/* General tab styles */
.expertise .nav-pills .nav-link {
    align-items: center;
    border-radius: 0;
    border: 1px solid #4d72b8;
    margin-bottom: 10px;
    color: #000;
    display: flex;
    font-weight: 500;   
    padding: 10px 30px;
    position: relative;
}

.expertise .nav-pills .nav-link:hover {
  color:#4d72b8;
}
/* Active tab styling */
.expertise .nav-pills .nav-link.active {
    background: linear-gradient(90deg,#4d72b8,#54b8e9);
    color: white;   
}
.expertise .nav-pills .nav-link.active .hover {
  display:block;
}
.expertise .nav-pills .nav-link.active .normal {
  display:none;
}
.hover {
  display:none;
}
/* Small arrow shape on the left side of the active tab */
.expertise .nav-pills .nav-link.active::before {
    content: '';
    position: absolute;
    left: -14px; /* Position the arrow outside the tab */
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 15px 0;
    border-color: transparent #4d72b8 transparent transparent;
    z-index: 1; /* Ensure the arrow is on top of the tab */
}

/* Remove any default outline or border */
.expertise .nav-pills .nav-link:focus {
    outline: none;
    box-shadow: none;
}
.expertise .accordion-content {
    display: none;
    padding: 15px;   
    margin-top: 10px;
}

.expertise .nav-link.active + .accordion-content {
    display: block;
}
.expert-tab-title {
  font-size:17px;
  font-weight:600;
  margin-bottom:unset;  
  margin-left: 12px;
}
.content-detail {
  font-size: 18px;
}
.content-title {
color: #231f20;
font-size: 55px;
  font-weight:750;
  margin-bottom:25px;
}
@media(max-width:991.92px){
  .content-title {
    font-size:30px;
  }
  .expertise .sub-blog-title {
    display:none;
  }
   .expertise .content-title{
    display:none;
  }
}
.expertise {
  position: relative;
  padding: 60px 0px;
}

/* .expertise::before {
    background-image: url(https://45409509.fs1.hubspotusercontent-na1.net/hubfs/45409509/Expertise_437px.svg);
    background-position: 82px 0;
    background-repeat: no-repeat;
    background-size: auto 100%;
    content: "";
    height: calc(100% - 120px);
    left: 0;
    margin: 60px 0;
    position: absolute;
    top: 6px;
    width: 100%;
    z-index: -1; /* Ensure the image is behind the content */
} */
/* For screen scale of 150% (1.5dppx) */
/* @media (resolution: 1.5dppx) {
   .expertise::before {
    left: -9px;
  }
} */

/* Adjustments for different screen sizes */
@media(max-width: 1182px) {
   .expertise { 
    padding:50px 0px!important;
  }  
}

.expertise .nav-pills .nav-link:last-child{
  margin-bottom:0;
}
.content-detail a{
  color:#4d72b8;
}
.mobile-exp{
  display:none;
}
@media(max-width:991.92px){
  .mobile-exp{
    display: block !important;
    margin-bottom: 30px;
    text-align: center;
    font-size: 35px;
  }
  .expertise .nav-pills .nav-link {
   padding:10px 30px 10px 15px;
  }
  
}



.accordion-active .nav-link.active::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%); /* Vertically center the icon */
    width: 20px; /* Icon width */
    height: 20px; /* Icon height */
    background-image: url('/hubfs/45409509/minus.svg'); /* Path to your icon */
    background-size: contain;
    background-repeat: no-repeat;
}
.accordion-active .nav-link::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%); /* Vertically center the icon */
    width: 20px; /* Icon width */
    height: 20px; /* Icon height */
    background-image: url('/hubfs/45409509/plus.svg'); /* Path to your icon */
    background-size: contain;
    background-repeat: no-repeat;
}



