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

/* Base styles for the page content */
.page-industry-news-latest-tech {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFFFFF; /* Default text color for dark sections */
    background-color: #0A192F; /* Default background for the page */
}

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

/* Hero Section */
.page-industry-news-latest-tech__hero {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A192F 0%, #1a345e 100%); /* Dark gradient for hero */
    color: #FFFFFF;
}

.page-industry-news-latest-tech__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-industry-news-latest-tech__hero .page-industry-news-latest-tech__container {
    position: relative;
    z-index: 1;
}

.page-industry-news-latest-tech__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF; /* High contrast */
}

.page-industry-news-latest-tech__hero-title .highlight {
    color: #FFD700; /* Accent color for highlight */
}

.page-industry-news-latest-tech__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0; /* Slightly lighter for readability */
}

/* Section Styling */
.page-industry-news-latest-tech__section {
    padding: 80px 0;
    background-color: #1A2A40; /* Slightly lighter dark background */
    color: #FFFFFF;
}

.page-industry-news-latest-tech__section--dark {
    background-color: #0A192F; /* Main dark background */
    color: #FFFFFF;
}

.page-industry-news-latest-tech__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 60px;
    color: #FFD700; /* Accent color for main titles */
    font-weight: bold;
}

.page-industry-news-latest-tech__sub-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #FFFFFF; /* High contrast */
}

.page-industry-news-latest-tech__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-industry-news-latest-tech__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-industry-news-latest-tech__text-content {
    flex: 1;
    font-size: 1.1em;
    color: #E0E0E0; /* Lighter text for readability on dark background */
}

.page-industry-news-latest-tech__text-content p {
    margin-bottom: 15px;
}

.page-industry-news-latest-tech__text-content strong {
    color: #FFD700;
}

.page-industry-news-latest-tech__image-container {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-industry-news-latest-tech__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Call to Action Section */
.page-industry-news-latest-tech__section--cta {
    background: linear-gradient(135deg, #0A192F, #3a5078); /* Gradient for CTA */
    text-align: center;
    padding: 100px 0;
}

.page-industry-news-latest-tech__container--center {
    max-width: 900px;
}

.page-industry-news-latest-tech__cta-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-industry-news-latest-tech__cta-image {
    max-width: 80%;
    height: auto;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-industry-news-latest-tech__btn-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.page-industry-news-latest-tech__btn {
    display: inline-block;
    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;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.page-industry-news-latest-tech__btn--primary {
    background-color: #FFD700; /* Accent color */
    color: #0A192F; /* Dark text on accent background */
    border: 2px solid #FFD700;
}

.page-industry-news-latest-tech__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-industry-news-latest-tech__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Accent text color */
    border: 2px solid #FFD700;
}

.page-industry-news-latest-tech__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

.page-industry-news-latest-tech__btn--download {
    background-color: #0A192F; /* Dark background */
    color: #FFD700; /* Accent text */
    border: 2px solid #FFD700;
}

.page-industry-news-latest-tech__btn--download:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-latest-tech__hero-title {
        font-size: 2.8em;
    }
    .page-industry-news-latest-tech__hero-subtitle {
        font-size: 1.1em;
    }
    .page-industry-news-latest-tech__section-title {
        font-size: 2em;
    }
    .page-industry-news-latest-tech__sub-title {
        font-size: 1.5em;
    }
    .page-industry-news-latest-tech__content-wrapper {
        flex-direction: column;
    }
    .page-industry-news-latest-tech__content-wrapper--reverse {
        flex-direction: column; /* Keep column for reverse on mobile */
    }
    .page-industry-news-latest-tech__text-content,
    .page-industry-news-latest-tech__image-container {
        flex: none;
        width: 100%;
    }
    .page-industry-news-latest-tech__image {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-industry-news-latest-tech__hero {
        padding: 80px 0;
    }
    .page-industry-news-latest-tech__hero-title {
        font-size: 2.2em;
    }
    .page-industry-news-latest-tech__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-news-latest-tech__section {
        padding: 60px 0;
    }
    .page-industry-news-latest-tech__section-title {
        font-size: 1.8em;
    }
    .page-industry-news-latest-tech__sub-title {
        font-size: 1.3em;
    }
    .page-industry-news-latest-tech__text-content {
        font-size: 1em;
    }
    .page-industry-news-latest-tech__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-industry-news-latest-tech__btn-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-industry-news-latest-tech__cta-image {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .page-industry-news-latest-tech__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news-latest-tech__hero-subtitle {
        font-size: 0.9em;
    }
    .page-industry-news-latest-tech__section-title {
        font-size: 1.5em;
    }
    .page-industry-news-latest-tech__sub-title {
        font-size: 1.2em;
    }
    .page-industry-news-latest-tech__btn {
        width: 100%;
        max-width: 280px;
    }
}