/* Texas Hero Section Styling */
.texas-hero-section {
    position: relative;
    /* Using a stable, high-quality image with a Texas theme */
    background: url("../images/texas-flag-on-wood.jpg") no-repeat center center/cover;
    background-color: #002868; /* Fallback color (Texas flag blue) */
}

/* Dark blue overlay for text readability */
.texas-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 40, 104, 0.7); /* Texas flag blue overlay */
    z-index: 1;
}
