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

/* Variables */
:root {
    --primary-color: #0A192F;
    --secondary-color: #FFD700;
    --text-light: #F8F8F8;
    --text-dark: #333333;
    --background-dark: #0A192F;
    --background-light: #FFFFFF;
    --accent-dark: #998100;
    --accent-light: #f5e6d0;
}

.page-industry-news-technology-advances {
    font-family: 'Arial', sans-serif;
    color: var(--text-light);
    background-color: var(--background-dark);
    line-height: 1.6;
}

.page-industry-news-technology-advances .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-industry-news-technology-advances .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a345c 50%, var(--secondary-color) 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--secondary-color);
}

.page-industry-news-technology-advances .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,tech,pattern,dark_gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-industry-news-technology-advances .hero-section h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-industry-news-technology-advances .hero-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-industry-news-technology-advances .content-section {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-industry-news-technology-advances h2 {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 10px;
    text-align: left;
}

.page-industry-news-technology-advances h3 {
    font-size: 1.8em;
    color: var(--accent-light);
    margin-top: 35px;
    margin-bottom: 15px;
    text-align: left;
}

.page-industry-news-technology-advances p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--text-light);
}

.page-industry-news-technology-advances .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.page-industry-news-technology-advances .img-fluid:hover {
    transform: scale(1.02);
}

.page-industry-news-technology-advances .btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-industry-news-technology-advances .btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-industry-news-technology-advances .btn-primary:hover {
    background-color: var(--accent-dark);
    color: var(--text-light);
    transform: translateY(-3px);
}

.page-industry-news-technology-advances .btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-industry-news-technology-advances .btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.page-industry-news-technology-advances .cta-block {
    background-color: #1a345c; /* A slightly lighter shade of primary for contrast */
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-industry-news-technology-advances .cta-block h3 {
    color: var(--secondary-color);
    font-size: 2.2em;
    margin-bottom: 20px;
}

.page-industry-news-technology-advances .cta-block p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-industry-news-technology-advances .cta-block .btn-lg {
    padding: 18px 40px;
    font-size: 1.3em;
    margin: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-industry-news-technology-advances .hero-section h1 {
        font-size: 2.5em;
    }
    .page-industry-news-technology-advances .hero-section p {
        font-size: 1em;
    }
    .page-industry-news-technology-advances h2 {
        font-size: 2em;
    }
    .page-industry-news-technology-advances h3 {
        font-size: 1.5em;
    }
    .page-industry-news-technology-advances .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-industry-news-technology-advances .cta-block h3 {
        font-size: 1.8em;
    }
    .page-industry-news-technology-advances .cta-block p {
        font-size: 1em;
    }
    .page-industry-news-technology-advances .cta-block .btn-lg {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-industry-news-technology-advances .hero-section {
        padding: 60px 0;
    }
    .page-industry-news-technology-advances .hero-section h1 {
        font-size: 2em;
    }
    .page-industry-news-technology-advances .hero-section p {
        font-size: 0.9em;
    }
    .page-industry-news-technology-advances .content-section {
        padding: 30px 0;
    }
    .page-industry-news-technology-advances h2 {
        font-size: 1.8em;
        margin-top: 30px;
    }
    .page-industry-news-technology-advances h3 {
        font-size: 1.3em;
        margin-top: 25px;
    }
    .page-industry-news-technology-advances .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    .page-industry-news-technology-advances .cta-block {
        padding: 25px;
    }
    .page-industry-news-technology-advances .cta-block h3 {
        font-size: 1.5em;
    }
    .page-industry-news-technology-advances .cta-block .btn-lg {
        width: 100%;
        margin: 10px 0;
    }
}