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

.page-industry-news-tech-trends {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0f1a2e; /* Slightly lighter dark blue for overall page background */
  line-height: 1.6;
}

.page-industry-news-tech-trends__hero {
  background: linear-gradient(135deg, #1A2A4A 0%, #0f1a2e 100%); /* Main color to slightly darker blue */
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

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

.page-industry-news-tech-trends__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-industry-news-tech-trends__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  font-weight: bold;
  line-height: 1.2;
}

.page-industry-news-tech-trends__hero-title .highlight {
  color: #ffffff; /* White for '13wim' in title */
}

.page-industry-news-tech-trends__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #c0c0c0;
}

.page-industry-news-tech-trends__hero-image-wrapper {
  position: relative;
  z-index: 1;
  max-width: 600px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-industry-news-tech-trends__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-industry-news-tech-trends__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #1A2A4A; /* Main color for sections */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-industry-news-tech-trends__section--alt {
  background-color: #0f1a2e; /* Darker background for alternating sections */
}

.page-industry-news-tech-trends__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for section titles */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-industry-news-tech-trends__subsection-title {
  font-size: 1.8em;
  color: #ffffff; /* White for sub-section titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-industry-news-tech-trends__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
  text-align: justify;
}

.page-industry-news-tech-trends__paragraph .keyword {
  color: #FFD700;
  font-weight: bold;
}

.page-industry-news-tech-trends__image-row {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.page-industry-news-tech-trends__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

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

.page-industry-news-tech-trends__cta-section {
  background-color: #1A2A4A; /* Main color */
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-industry-news-tech-trends__cta-title {
  font-size: 3em;
  color: #FFD700; /* Accent color */
  margin-bottom: 20px;
}

.page-industry-news-tech-trends__cta-title .highlight {
  color: #ffffff;
}

.page-industry-news-tech-trends__cta-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #c0c0c0;
}

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

.page-industry-news-tech-trends__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news-tech-trends__cta-button--primary {
  background-color: #FFD700; /* Accent color */
  color: #1A2A4A; /* Dark text for accent button */
}

.page-industry-news-tech-trends__cta-button--primary:hover {
  background-color: #e6c200; /* Slightly darker accent on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-industry-news-tech-trends__cta-button--secondary {
  background-color: #3a4e7a; /* Darker blue for secondary button */
  color: #ffffff; /* White text for secondary button */
  border: 2px solid #FFD700; /* Accent border */
}

.page-industry-news-tech-trends__cta-button--secondary:hover {
  background-color: #4a6090; /* Lighter dark blue on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-industry-news-tech-trends__hero-title {
    font-size: 2.8em;
  }
  .page-industry-news-tech-trends__hero-subtitle {
    font-size: 1.1em;
  }
  .page-industry-news-tech-trends__section-title {
    font-size: 2em;
  }
  .page-industry-news-tech-trends__subsection-title {
    font-size: 1.5em;
  }
  .page-industry-news-tech-trends__paragraph {
    font-size: 1em;
  }
  .page-industry-news-tech-trends__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-industry-news-tech-trends__hero {
    flex-direction: column;
    padding: 60px 15px;
  }
  .page-industry-news-tech-trends__hero-title {
    font-size: 2.2em;
  }
  .page-industry-news-tech-trends__hero-subtitle {
    font-size: 1em;
  }
  .page-industry-news-tech-trends__section {
    padding: 40px 15px;
  }
  .page-industry-news-tech-trends__section-title {
    font-size: 1.8em;
  }
  .page-industry-news-tech-trends__subsection-title {
    font-size: 1.3em;
  }
  .page-industry-news-tech-trends__cta-title {
    font-size: 2em;
  }
  .page-industry-news-tech-trends__cta-text {
    font-size: 1em;
  }
  .page-industry-news-tech-trends__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-industry-news-tech-trends__cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-industry-news-tech-trends__hero-title {
    font-size: 1.8em;
  }
  .page-industry-news-tech-trends__section-title {
    font-size: 1.5em;
  }
  .page-industry-news-tech-trends__subsection-title {
    font-size: 1.1em;
  }
  .page-industry-news-tech-trends__cta-title {
    font-size: 1.8em;
  }
}