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

.page-industry-news-tech-innovations {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-industry-news-tech-innovations .hero-section {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news-tech-innovations .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(45deg);
    opacity: 0.2;
    animation: hero-fade-in 1.5s ease-out;
}

.page-industry-news-tech-innovations .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slide-in-top 1s ease-out;
}

.page-industry-tech-innovations .hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    animation: slide-in-bottom 1.2s ease-out;
}

.page-industry-news-tech-innovations .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-industry-news-tech-innovations .btn-primary {
    background-color: #0056b3; /* Darker blue for contrast */
    color: #fff;
    border: 2px solid #0056b3;
}

.page-industry-news-tech-innovations .btn-primary:hover {
    background-color: #003f80;
    border-color: #003f80;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-industry-news-tech-innovations .btn-secondary {
    background-color: #28a745; /* Secondary green */
    color: #fff;
    border: 2px solid #28a745;
}

.page-industry-news-tech-innovations .btn-secondary:hover {
    background-color: #1e7e34;
    border-color: #1e7e34;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-industry-news-tech-innovations .hero-cta {
    animation: fade-in 1.5s ease-out;
}

.page-industry-news-tech-innovations .introduction-section, 
.page-industry-news-tech-innovations .ai-section, 
.page-industry-news-tech-innovations .blockchain-section, 
.page-industry-news-tech-innovations .mobile-tech-section, 
.page-industry-news-tech-innovations .security-section, 
.page-industry-news-tech-innovations .future-outlook-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.page-industry-news-tech-innovations .introduction-section {
    padding-top: 40px;
}

.page-industry-news-tech-innovations .section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

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

.page-industry-news-tech-innovations .section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555;
}

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

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

.page-industry-news-tech-innovations .content-grid .text-content {
    flex: 1;
    padding-right: 20px;
}

.page-industry-news-tech-innovations .content-grid .text-content h3 {
    color: #007bff;
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-industry-news-tech-innovations .content-grid .text-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-industry-news-tech-innovations .content-grid .text-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-industry-news-tech-innovations .content-grid .text-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1em;
    color: #444;
}

.page-industry-news-tech-innovations .content-grid .text-content ul li::before {
    content: '✔';
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-industry-news-tech-innovations .image-wrapper {
    flex: 1;
    text-align: center;
}

.page-industry-news-tech-innovations .feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}

.page-industry-news-tech-innovations .feature-image:hover {
    transform: scale(1.02);
}

.page-industry-news-tech-innovations .future-outlook-section .future-cta {
    margin-top: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Animations */
@keyframes hero-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-in-top {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-in-bottom {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-tech-innovations .hero-title {
        font-size: 2.8em;
    }
    .page-industry-news-tech-innovations .hero-subtitle {
        font-size: 1.2em;
    }
    .page-industry-news-tech-innovations .section-title {
        font-size: 2em;
    }
    .page-industry-news-tech-innovations .content-grid {
        flex-direction: column;
    }
    .page-industry-news-tech-innovations .content-grid.reverse-grid {
        flex-direction: column;
    }
    .page-industry-news-tech-innovations .content-grid .text-content {
        padding-right: 0;
        text-align: center;
    }
    .page-industry-news-tech-innovations .content-grid .text-content ul {
        text-align: left;
    }
    .page-industry-news-tech-innovations .content-grid .image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-industry-news-tech-innovations .hero-section {
        padding: 80px 0;
    }
    .page-industry-news-tech-innovations .hero-title {
        font-size: 2.2em;
    }
    .page-industry-news-tech-innovations .hero-subtitle {
        font-size: 1em;
    }
    .page-industry-news-tech-innovations .section-title {
        font-size: 1.8em;
    }
    .page-industry-news-tech-innovations .introduction-section, 
    .page-industry-news-tech-innovations .ai-section, 
    .page-industry-news-tech-innovations .blockchain-section, 
    .page-industry-news-tech-innovations .mobile-tech-section, 
    .page-industry-news-tech-innovations .security-section, 
    .page-industry-news-tech-innovations .future-outlook-section {
        padding: 40px 0;
    }
    .page-industry-news-tech-innovations .btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }
}