.hero-thumb3 {
    min-height: 300px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05); /* optional overlay */
    border-radius: 12px;
}
@keyframes flyInRight {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-style3 .hero-title,
.hero-style3 .hero-text,
.hero-style3 .tg-button-wrap {
    opacity: 0;
    animation: flyInRight 1s ease forwards;
}

.hero-style3 .hero-title {
    animation-delay: 0.2s;
}

.hero-style3 .hero-text {
    animation-delay: 0.5s;
}

.hero-style3 .tg-button-wrap {
    animation-delay: 0.8s;
}

.sub-title {
    display: inline-block;
    white-space: normal; /* allow wrapping */
    max-width: 100%; /* no clipping */
    overflow: visible;
}





