.feature_section{
      background-color: #113F67;
}

.feature_section *{
    color: white;
}


.feature_section .highlight {
    color: #fbbf24;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 8px rgba(251, 191, 36, 0.3));
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.feature_section .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
    animation: shimmer 2s ease-in-out infinite;
}


.feature_section .feature_img img{
    border-radius: 15px;
}

.feature_section .feature_content p::before{
    color: #fbbf24;
}