/* style/industry-news-tech-innovations.css */
.page-industry-news-tech-innovations {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

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

/* Hero Section */
.page-industry-news-tech-innovations__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a4a6b 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold text for contrast */
  position: relative;
  overflow: hidden;
}

.page-industry-news-tech-innovations__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-tech-innovations__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e5dfd3;
}

/* General Section Styling */
.page-industry-news-tech-innovations__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-industry-news-tech-innovations__section:last-of-type {
  border-bottom: none;
}

.page-industry-news-tech-innovations__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-industry-news-tech-innovations__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-industry-news-tech-innovations__introduction p,
.page-industry-news-tech-innovations__ai-bigdata p,
.page-industry-news-tech-innovations__blockchain p,
.page-industry-news-tech-innovations__future p {
  font-size: 1.1em;
  color: #e5dfd3;
  margin-bottom: 20px;
  text-align: justify;
}

/* Images */
.page-industry-news-tech-innovations__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.page-industry-news-tech-innovations__image--fullwidth {
  width: 100%;
}

.page-industry-news-tech-innovations__image--large {
  max-width: 80%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Call to Action Buttons */
.page-industry-news-tech-innovations__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #1A202C; /* Dark text */
  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;
  border: 2px solid #FFD700;
  cursor: pointer;
}

.page-industry-news-tech-innovations__cta-button:hover {
  background-color: #e5c100; /* Darker gold */
  transform: translateY(-3px);
}

.page-industry-news-tech-innovations__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-industry-news-tech-innovations__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-industry-news-tech-innovations__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-industry-news-tech-innovations__cta-button--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-industry-news-tech-innovations__cta-button--outline:hover {
  background-color: #FFD700;
  color: #1A202C;
}

/* Grid Layouts */
.page-industry-news-tech-innovations__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.page-industry-news-tech-innovations__grid-item {
  background-color: #2a3340; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news-tech-innovations__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-industry-news-tech-innovations__list li {
  background-color: #3d495c; /* Even lighter dark blue for list items */
  margin-bottom: 10px;
  padding: 10px 15px;
  border-left: 3px solid #FFD700;
  border-radius: 4px;
  font-size: 1em;
  color: #e5dfd3;
}

.page-industry-news-tech-innovations__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-industry-news-tech-innovations__feature-item {
  background-color: #2a3340;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-industry-news-tech-innovations__feature-item:hover {
  transform: translateY(-8px);
}

.page-industry-news-tech-innovations__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-industry-news-tech-innovations__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-industry-news-tech-innovations__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-industry-news-tech-innovations__benefit-item {
  background-color: #2a3340;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-industry-news-tech-innovations__benefit-item h4 {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-industry-news-tech-innovations__benefit-item p {
  font-size: 0.95em;
  color: #e5dfd3;
}

.page-industry-news-tech-innovations__cta-final {
  background-color: #121720;
  text-align: center;
  padding: 80px 0;
}

.page-industry-news-tech-innovations__cta-final-content {
  max-width: 900px;
}

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

  .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,
  .page-industry-news-tech-innovations__feature-grid,
  .page-industry-news-tech-innovations__benefits-grid {
    grid-template-columns: 1fr;
  }

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

  .page-industry-news-tech-innovations__cta-button {
    width: 80%;
    margin: 0 auto;
  }

  .page-industry-news-tech-innovations__image--large {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-industry-news-tech-innovations__hero-title {
    font-size: 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__cta-button {
    font-size: 1em;
    padding: 12px 20px;
  }
}