/* style/industry-news-tech-innovations.css */

/* Base styles for the page content area */
.page-industry-news-tech-innovations {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for main text on dark background */
    background-color: #1a1a2e; /* Very dark blue for overall background */
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Hero Section */
.page-industry-news-tech-innovations__hero-section {
    background: linear-gradient(135deg, #003366, #1a1a2e); /* Deep Ocean Blue to very dark blue */
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-industry-news-tech-innovations__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-industry-news-tech-innovations__hero-title {
    font-size: 2.8em;
    color: #FFCC00; /* Golden Yellow for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-industry-news-tech-innovations__hero-description {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-industry-news-tech-innovations__hero-btn {
    display: inline-block;
    background-color: #FFCC00; /* Golden Yellow for primary button */
    color: #003366; /* Deep Ocean Blue for text on primary button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-industry-news-tech-innovations__hero-btn:hover {
    background-color: #e6b800; /* Slightly darker yellow on hover */
    transform: translateY(-3px);
}

.page-industry-news-tech-innovations__hero-image-wrapper {
    max-width: 800px;
    margin-top: 40px;
    z-index: 0;
}

.page-industry-news-tech-innovations__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* General Section Styling */
.page-industry-news-tech-innovations__section {
    padding: 60px 20px;
    background-color: #003366; /* Deep Ocean Blue for section backgrounds */
    margin-bottom: 20px;
}

.page-industry-news-tech-innovations__section:nth-of-type(even) {
    background-color: #1a1a2e; /* Alternating with very dark blue */
}

.page-industry-news-tech-innovations__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-industry-news-tech-innovations__section-title {
    font-size: 2.2em;
    color: #FFCC00; /* Golden Yellow for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-industry-news-tech-innovations__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    border-radius: 2px;
}

.page-industry-news-tech-innovations__content-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.page-industry-news-tech-innovations__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-industry-news-tech-innovations__text-content {
    flex: 1;
    min-width: 300px;
    color: #E0E0E0;
}

.page-industry-news-tech-innovations__subsection-title {
    font-size: 1.6em;
    color: #FFCC00; /* Golden Yellow for sub-section titles */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-industry-news-tech-innovations__image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-industry-news-tech-innovations__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Call to Action Section */
.page-industry-news-tech-innovations__cta-text {
    font-size: 1.3em;
    color: #FFCC00;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-industry-news-tech-innovations__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.page-industry-news-tech-innovations__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-industry-news-tech-innovations__btn--primary {
    background-color: #FFCC00;
    color: #003366;
}

.page-industry-news-tech-innovations__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-industry-news-tech-innovations__btn--secondary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-industry-news-tech-innovations__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
}

.page-industry-news-tech-innovations__cta-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 40px auto 0;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-industry-news-tech-innovations__hero-section {
        padding: 60px 15px;
    }

    .page-industry-news-tech-innovations__hero-title {
        font-size: 2.2em;
    }

    .page-industry-news-tech-innovations__hero-description {
        font-size: 1em;
    }

    .page-industry-news-tech-innovations__section-title {
        font-size: 1.8em;
    }

    .page-industry-news-tech-innovations__subsection-title {
        font-size: 1.4em;
    }

    .page-industry-news-tech-innovations__content-grid {
        flex-direction: column;
    }

    .page-industry-news-tech-innovations__content-grid--reverse {
        flex-direction: column;
    }

    .page-industry-news-tech-innovations__hero-image-wrapper {
        margin-top: 20px;
    }

    .page-industry-news-tech-innovations__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-industry-news-tech-innovations__btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-industry-news-tech-innovations__hero-title {
        font-size: 1.8em;
    }

    .page-industry-news-tech-innovations__section-title {
        font-size: 1.5em;
    }

    .page-industry-news-tech-innovations__hero-btn {
        font-size: 1em;
        padding: 12px 25px;
    }
}

/* Ensure contrast for text on various backgrounds */
/* Text on #003366 (Deep Ocean Blue) background */
.page-industry-news-tech-innovations__section p,
.page-industry-news-tech-innovations__section li {
    color: #E0E0E0; /* Light gray */
}
.page-industry-news-tech-innovations__section h2,
.page-industry-news-tech-innovations__section h3 {
    color: #FFCC00; /* Golden Yellow */
}

/* Text on #1a1a2e (Very Dark Blue) background */
.page-industry-news-tech-innovations__section:nth-of-type(even) p,
.page-industry-news-tech-innovations__section:nth-of-type(even) li {
    color: #E0E0E0; /* Light gray */
}
.page-industry-news-tech-innovations__section:nth-of-type(even) h2,
.page-industry-news-tech-innovations__section:nth-of-type(even) h3 {
    color: #FFCC00; /* Golden Yellow */
}

/* Hero section text */
.page-industry-news-tech-innovations__hero-description {
    color: #E0E0E0;
}
.page-industry-news-tech-innovations__hero-title {
    color: #FFCC00;
}