/* Site-Wide Responsiveness Overrides */

/* Fluid Typography for Hero Titles */
.vaf-hero-title {
    font-size: clamp(32px, 5vw, 56px) !important;
    line-height: 1.1 !important;
}

/* Mobile CTA in Menu */
.mobile-cta-wrapper {
    padding: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--vaf-orange);
    color: white !important;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(244, 130, 31, 0.3);
}

/* Hero Section Adjustments */
@media (max-width: 767px) {
    .infotechno-hero {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }

    .hero-button {
        flex-direction: column;
        align-items: stretch !important;
    }

    .hero-button .ht-btn {
        margin-right: 0 !important;
        margin-bottom: 10px;
        text-align: center;
    }
}

/* Stats/Journey Responsive Spacing */
@media (max-width: 575px) {
    .infotechno-hero-text h1 {
        margin-bottom: 15px !important;
    }

    .infotechno-hero .col-6 {
        padding: 5px !important;
    }
}

/* Timeline Swipe Indicator (for horizontal scroll) */
.timeline-fast-track::after {
    content: 'Swipe to explore journey →';
    display: block;
    position: absolute;
    bottom: -10px;
    right: 0;
    font-size: 11px;
    color: #9ca3af;
    font-family: 'JetBrains Mono', monospace;
}

@media (min-width: 992px) {
    .timeline-fast-track::after {
        display: none;
    }
}