/* ================= INTERNAL PAGE BANNER ================= */

.internal-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.internal-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fade overlay for readability */
.internal-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.1)
    );
}

/* Banner Text Overlay */
/* Banner overlay container */
.banner-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 2;
    color: #fff;
    pointer-events: none; /* clicks pass to banner if needed */
}

.banner-overlay-text .container {
    padding-left: 40px;  /* optional adjust */
    padding-right: 40px;
}

.banner-overlay-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

.banner-overlay-text p {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 5px;
}



/* ================= INTERNAL PAGE CONTENT ================= */

.internal-content-section {
    padding: 60px 0;
}

.internal-content-section .section-title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #d6453d !important;
}

/* Side-by-side layout */
.internal-text {
    font-size: 17px;
    line-height: 1.7;
}

.internal-content-section h4 {
    font-size: 20px;
    margin-top: 25px;
    font-weight: 700;
    color: #d6453d;
}

.internal-product-img {
    width: 100%;
    max-width: 320px;
    display: block;
    margin-left: auto;
    margin-right: 0;
}

ul.internal-list {
    margin-left: 20px;
    list-style: disc;
}



/* ================= RESPONSIVE FIXES ================= */

@media (max-width: 992px) {
    .banner-overlay-text h2 {
        font-size: 30px;
    }
    .banner-overlay-text p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .internal-banner {
        height: 220px;
    }

    .banner-overlay-text {
        left: 20px;
        bottom: 20px;
    }

    .internal-product-img {
        margin: 30px auto 0;
        max-width: 260px;
    }
}

/* Custom Colors based on the screenshot */
        :root {
            --brand-primary: #EB8C72; /* Salmon/Orange color for headings */
            --text-grey: #555555;
        }

        /* Hero Section Styling */
        .hero-section {
            /* Replace with your top background image */
            height: 350px; /* Adjust height as needed */
            position: relative;
            display: flex;
            align-items: flex-end; /* Aligns text to the bottom */
            
        }

        .wpc{
            background-image: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4)), url('../images/products/product-hd1.jpg');
            background-size: cover;
            background-position: center;
        }

        .defence{
            background-image: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4)), url('../images/products/product-hd2.jpg');
            background-size: cover;
            background-position: center;
        }

        .mobility{
            background-image: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4)), url('../images/products/product-hd3.jpg');
            background-size: cover;
            background-position: center;
        }

        .hero-section .container{
            margin: 0 auto;
            width: 90%;
            max-width: 1320px;
           
        }

        .hero-text {
            color: white;
            padding-bottom: 20px;
            font-family: 'Barlow Condensed';
        }

        .hero-text .brand-name {
            font-size: 2.5rem;
            font-weight: 500;
        }

        .hero-text .breadcrumbs {
            font-size: 1.5rem;
            font-weight: 400;
            opacity: 0.9;
            color: #fff;
        }

        /* Content Styling */
        .section-heading {
            color: var(--brand-primary);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .content-text {
            color: var(--text-grey);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .highlights-list {
            color: var(--text-grey);
            margin-bottom: 2rem;
        }

        .highlights-list li {
            margin-bottom: 0.5rem;
        }

        /* Image Styling */
        .product-image-container {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding-top: 2rem;
        }