 @import 'variables.css';
 /* ===== ENTRY ANIMATION ===== */

/* Initial hidden state */
.animate-btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* Active state when visible */
.animate-btn.active {
    opacity: 1;
    transform: translateY(0);
}

/* Optional stagger */
.banner-btn-row:nth-child(1) { transition-delay: 0.1s; }
.banner-btn-row:nth-child(2) { transition-delay: 0.3s; }
.banner-btn-row:nth-child(3) { transition-delay: 0.5s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ===== SECTION HEADING ===== */
p.small-sec-heading {
    font-family: var(--first-heading);
    color: var(--color-blue);
    font-weight: 400;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
}

p.small-sec-heading span {
    display: inline-block;
    width: 29px;
    height: 2px;
    background-color: #0a4a8e;
    transform-origin: left center;
    animation: breatheLine 4s ease-in-out infinite;
}

@keyframes breatheLine {
    0%, 100% {
        transform: scaleX(1);
        opacity: 0.8;
    }
    50% {
        transform: scaleX(1.4);
        opacity: 1;
    }
}

.sec-heading h1 {
    color: var(--color-blue);
    margin-bottom: 0;
}

.sec-content p {
    font-size: var(--font-size-h4);
    line-height: 31px;
    font-family: var(--font-main);


}

