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

/* Variables */
:root {
  --primary-color: #1A2E47;
  --secondary-color: #FFD700;
  --text-color-light: #FFFFFF;
  --text-color-dark: #1A2E47;
  --text-color-medium: #E0E0E0;
  --bg-dark: #1A2E47;
  --bg-light: #F8F8F8;
  --border-color: #3A4F6A;
}

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

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

.page-industry-news-tech-innovations__hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3A4F6A 100%);
  color: var(--text-color-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news-tech-innovations__hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  animation: floatEffect 10s infinite ease-in-out;
}

.page-industry-news-tech-innovations__hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  animation: floatEffect 12s infinite reverse ease-in-out;
}

@keyframes floatEffect {
  0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
  50% { transform: translate(20px, 20px) scale(1.1); opacity: 1; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
}

.page-industry-news-tech-innovations__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--text-color-light);
}

.page-industry-news-tech-innovations__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: var(--text-color-medium);
}

.page-industry-news-tech-innovations__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-industry-news-tech-innovations__content-section {
  padding: 80px 0;
}

.page-industry-news-tech-innovations__text-block {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
  color: var(--text-color-dark);
}

.page-industry-news-tech-innovations__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.page-industry-news-tech-innovations__feature-item {
  background-color: var(--text-color-light);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news-tech-innovations__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-industry-news-tech-innovations__feature-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 1px solid var(--border-color);
}

.page-industry-news-tech-innovations__feature-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-industry-news-tech-innovations__feature-item p {
  font-size: 1em;
  color: var(--text-color-dark);
}

.page-industry-news-tech-innovations__flex-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

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

.page-industry-news-tech-innovations__flex-item {
  flex: 1;
  min-width: 300px;
}

.page-industry-news-tech-innovations__sub-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.page-industry-news-tech-innovations__flex-item p {
  font-size: 1.1em;
  color: var(--text-color-dark);
  margin-bottom: 30px;
}

.page-industry-news-tech-innovations__image--large {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--border-color);
}

.page-industry-news-tech-innovations__future-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 80px auto;
  max-width: 1000px;
}

.page-industry-news-tech-innovations__future-list li {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background-color: var(--text-color-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
}

.page-industry-news-tech-innovations__future-list li:nth-child(even) {
  flex-direction: row-reverse;
}

.page-industry-news-tech-innovations__list-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-industry-news-tech-innovations__future-list li p {
  flex: 2;
  font-size: 1.1em;
  color: var(--text-color-dark);
}

.page-industry-news-tech-innovations__list-image {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.page-industry-news-tech-innovations__cta-banner {
  background: linear-gradient(45deg, var(--primary-color), #3A4F6A);
  color: var(--text-color-light);
  padding: 60px 40px;
  text-align: center;
  border-radius: 15px;
  margin-top: 60px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.page-industry-news-tech-innovations__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-industry-news-tech-innovations__cta-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-color-medium);
}

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

/* Buttons */
.page-industry-news-tech-innovations__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

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

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

.page-industry-news-tech-innovations__btn--secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-industry-news-tech-innovations__btn--secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  transform: translateY(-3px);
}

.page-industry-news-tech-innovations__btn--tertiary {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  border: 2px solid var(--primary-color);
}

.page-industry-news-tech-innovations__btn--tertiary:hover {
  background-color: #0d1e33;
  border-color: #0d1e33;
  transform: translateY(-3px);
}

.page-industry-news-tech-innovations__btn--cta {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-industry-news-tech-innovations__btn--cta:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.page-industry-news-tech-innovations .highlight {
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-industry-news-tech-innovations__hero-title {
    font-size: 2.8em;
  }

  .page-industry-news-tech-innovations__hero-subtitle,
  .page-industry-news-tech-innovations__text-block,
  .page-industry-news-tech-innovations__flex-item p,
  .page-industry-news-tech-innovations__feature-item p,
  .page-industry-news-tech-innovations__future-list li p,
  .page-industry-news-tech-innovations__cta-text {
    font-size: 1em;
  }

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

  .page-industry-news-tech-innovations__feature-title,
  .page-industry-news-tech-innovations__sub-title,
  .page-industry-news-tech-innovations__list-title {
    font-size: 1.6em;
  }

  .page-industry-news-tech-innovations__flex-row,
  .page-industry-news-tech-innovations__flex-row--reverse {
    flex-direction: column;
    gap: 30px;
  }

  .page-industry-news-tech-innovations__future-list li {
    flex-direction: column;
    text-align: center;
  }

  .page-industry-news-tech-innovations__future-list li:nth-child(even) {
    flex-direction: column;
  }

  .page-industry-news-tech-innovations__list-image {
    order: -1; /* Image appears above text on mobile */
    margin-bottom: 20px;
  }

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

  .page-industry-news-tech-innovations__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@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__section-title {
    font-size: 1.8em;
  }

  .page-industry-news-tech-innovations__content-section {
    padding: 60px 0;
  }

  .page-industry-news-tech-innovations__feature-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-industry-news-tech-innovations__cta-banner {
    padding: 40px 20px;
  }

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

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

  .page-industry-news-tech-innovations__btn--cta {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

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

  .page-industry-news-tech-innovations__hero-subtitle {
    font-size: 0.9em;
  }

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

  .page-industry-news-tech-innovations__feature-title,
  .page-industry-news-tech-innovations__sub-title,
  .page-industry-news-tech-innovations__list-title {
    font-size: 1.4em;
  }

  .page-industry-news-tech-innovations__text-block,
  .page-industry-news-tech-innovations__flex-item p,
  .page-industry-news-tech-innovations__feature-item p,
  .page-industry-news-tech-innovations__future-list li p,
  .page-industry-news-tech-innovations__cta-text {
    font-size: 0.9em;
  }

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

  .page-industry-news-tech-innovations__btn--cta {
    width: 100%;
    max-width: 250px;
  }
}