/* Standardized Inner Hero for all pages */
.inner-hero {
    position: relative;
    background: linear-gradient(135deg, #f39200 0%, #ffbb00 100%);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    margin-top: 90px;
    /* Offset for fixed header */
    margin-bottom: 60px;
    /* Gap for content */
}

/* Standard Section Spacing */
.section-padding {
    padding: 80px 0;
}

/* Premium Export/Global Pattern Overlay */
.inner-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M25 25h10v10H25zM65 25h10v10H65zM25 65h10v10H25zM65 65h10v10H65z'/%3E%3Ccircle cx='50' cy='50' r='5'/%3E%3Cpath d='M10 10l5 5M90 10l-5 5M10 90l5-5M90 90l-5-5' stroke='%23fff' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px;
    opacity: 0.4;
    z-index: -1;
}

/* Global Icon in Background */
.inner-hero::after {
    content: "\f0ac";
    /* Globe icon */
    font-family: 'FontAwesome';
    position: absolute;
    right: -50px;
    bottom: -50px;
    font-size: 20rem;
    color: rgba(255, 255, 255, 0.05);
    z-index: -1;
    transform: rotate(-15deg);
}

.inner-hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .inner-hero {
        height: 250px;
        margin-top: 80px;
    }

    .inner-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .inner-hero {
        height: 200px;
        margin-top: 70px;
    }

    .inner-hero h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
}