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

/* Base styles for the page content */
.page-industry-news-technology-innovations {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for main text */
    background-color: #1A2B47; /* Dark blue main background */
}

/* Container for content */
.page-industry-news-technology-innovations__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero section */
.page-industry-news-technology-innovations__hero {
    background: linear-gradient(135deg, #1A2B47 0%, #30476e 100%); /* Gradient dark blue */
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-industry-news-technology-innovations__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(26, 43, 71, 0) 70%);
    animation: rotateBackground 20s linear infinite;
    z-index: 0;
}

@keyframes rotateBackground {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-industry-news-technology-innovations__hero .page-industry-news-technology-innovations__container {
    position: relative;
    z-index: 1;
}

.page-industry-news-technology-innovations__title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-technology-innovations__subtitle {
    font-size: 1.4em;
    color: #B0B0B0; /* Lighter gray for subtitle */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Section styling */
.page-industry-news-technology-innovations__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-industry-news-technology-innovations__section--alt-bg {
    background-color: #101E33; /* Slightly darker blue for alternating sections */
}

.page-industry-news-technology-innovations__section--last {
    border-bottom: none;
}

.page-industry-news-technology-innovations__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

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

/* Content blocks with image and text */
.page-industry-news-technology-innovations__content-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-industry-news-technology-innovations__content-block:nth-of-type(even) {
    flex-direction: row-reverse;
}

.page-industry-news-technology-innovations__content-block p,
.page-industry-news-technology-innovations__content-block h3 {
    flex: 1;
    min-width: 300px;
}

.page-industry-news-technology-innovations__content-block h3 {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-titles */
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-industry-news-technology-innovations__content-block p {
    font-size: 1.1em;
    color: #B0B0B0;
    margin-bottom: 20px;
}

.page-industry-news-technology-innovations__image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease-in-out;
}

.page-industry-news-technology-innovations__image:hover {
    transform: translateY(-5px);
}

/* Buttons */
.page-industry-news-technology-innovations__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    margin-top: 20px;
}

.page-industry-news-technology-innovations__btn--primary {
    background-color: #FFD700; /* Gold primary button */
    color: #1A2B47; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-industry-news-technology-innovations__btn--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-industry-news-technology-innovations__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-industry-news-technology-innovations__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-industry-news-technology-innovations__cta-group {
    text-align: center;
    margin-top: 50px;
}

.page-industry-news-technology-innovations__cta-group .page-industry-news-technology-innovations__btn {
    margin: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-industry-news-technology-innovations__title {
        font-size: 2.5em;
    }

    .page-industry-news-technology-innovations__subtitle {
        font-size: 1.2em;
    }

    .page-industry-news-technology-innovations__section-title {
        font-size: 2em;
    }

    .page-industry-news-technology-innovations__content-block {
        flex-direction: column;
        text-align: center;
    }

    .page-industry-news-technology-innovations__content-block:nth-of-type(even) {
        flex-direction: column;
    }

    .page-industry-news-technology-innovations__image {
        max-width: 80%;
        margin-bottom: 20px;
    }

    .page-industry-news-technology-innovations__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-industry-news-technology-innovations__cta-group .page-industry-news-technology-innovations__btn {
        margin: 10px auto;
        display: block;
        width: fit-content;
    }
}

@media (max-width: 768px) {
    .page-industry-news-technology-innovations__hero {
        padding: 80px 0 60px;
    }

    .page-industry-news-technology-innovations__title {
        font-size: 2em;
    }

    .page-industry-news-technology-innovations__subtitle {
        font-size: 1em;
    }

    .page-industry-news-technology-innovations__section {
        padding: 40px 0;
    }

    .page-industry-news-technology-innovations__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-industry-news-technology-innovations__content-block h3 {
        font-size: 1.5em;
    }

    .page-industry-news-technology-innovations__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}