/* === Section Title Wrapper === */
section.section-title {
    background-color: #000;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* === Title Heading === */
.title-heading {
    width: 100%;
    background-color: black;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(0, 255, 0, 0.05),
        rgba(0, 255, 0, 0.05) 10px,
        transparent 10px,
        transparent 20px
    );
    padding: 3rem 1rem;
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    border-top: 2px solid limegreen;
    border-bottom: 2px solid limegreen;
    text-shadow: 0 0 8px rgba(50, 205, 50, 0.5);
    box-shadow: 0 0 12px rgba(50, 205, 50, 0.3);
}

/* === Responsive Scaling === */

/* Large laptops (≤1200px) */
@media (max-width: 1200px) {
    .title-heading {
        font-size: 2.2rem;
        padding: 2.5rem 1rem;
    }
}

/* Tablets Landscape (≤992px) */
@media (max-width: 992px) {
    .title-heading {
        font-size: 2rem;
        padding: 2rem 1rem;
        letter-spacing: 1.5px;
    }
}

/* Tablets Portrait (≤768px) */
@media (max-width: 768px) {
    .title-heading {
        font-size: 1.8rem;
        padding: 1.8rem 0.8rem;
        letter-spacing: 1.2px;
    }
}

/* Phones (≤480px) */
@media (max-width: 480px) {
    .title-heading {
        font-size: 1.65rem;
        padding: 1.5rem 0.6rem;
        letter-spacing: 1px;
    }
}
