* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0a0a0a;
  color: white;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 85px;

  padding: 0 8%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(10, 10, 10, 0.95);

  backdrop-filter: blur(10px);

  z-index: 1000;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  font-size: 32px;
  font-weight: 800;

  color: #f59e0b;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;

  color: white;

  font-weight: 500;

  transition: 0.3s;
}

.nav-links a:hover {
  color: #f59e0b;
}

.search-box {
  display: flex;

  align-items: center;

  background: #161616;

  border-radius: 50px;

  overflow: hidden;
}

.search-box input {
  border: none;

  outline: none;

  background: transparent;

  color: white;

  padding: 12px 18px;

  width: 220px;
}

.search-box button {
  border: none;

  background: #f59e0b;

  color: white;

  padding: 12px 18px;

  cursor: pointer;
}

/* =========================
   HERO
========================= */

.industry-hero {
  margin-top: 85px;

  min-height: 70vh;

  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.85)),
    url("Kingsbury_Automation-in-the-automotive-industry.jpg");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;

  padding: 100px 8%;
}

.hero-content {
  max-width: 800px;
}

.hero-tag {
  display: inline-block;

  background: #f59e0b;

  padding: 12px 24px;

  border-radius: 50px;

  margin-bottom: 25px;

  font-weight: 600;
}

.hero-content h1 {
  font-size: 68px;

  line-height: 1.1;

  margin-bottom: 25px;
}

.hero-content p {
  font-size: 20px;

  color: #d1d5db;

  line-height: 1.8;
}

/* =========================
   SECTION TITLE
========================= */

.section-title {
  text-align: center;

  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;

  margin-bottom: 10px;
}

.section-title p {
  color: #94a3b8;
}

/* =========================
   FEATURED
========================= */

.featured-industry {
  padding: 100px 8%;

  display: grid;

  grid-template-columns: 1.2fr 1fr;

  gap: 40px;

  align-items: center;
}

.featured-image img {
  width: 100%;

  height: 500px;

  object-fit: cover;

  border-radius: 30px;
}

.featured-content {
  background: #111827;

  padding: 40px;

  border-radius: 30px;
}

.featured-content span {
  color: #f59e0b;

  font-weight: 700;
}

.featured-content h2 {
  font-size: 42px;

  margin: 20px 0;
}

.featured-content p {
  color: #cbd5e1;

  line-height: 1.8;

  margin-bottom: 25px;
}

.featured-content a {
  text-decoration: none;

  color: #f59e0b;

  font-weight: 700;
}

/* =========================
   NEWS GRID
========================= */

.industry-news {
  padding: 0 8% 100px;
}

.news-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;
}

.news-card {
  background: #111827;

  border-radius: 25px;

  overflow: hidden;

  transition: 0.4s;
}

.news-card:hover {
  transform: translateY(-10px);
}

.news-card img {
  width: 100%;

  height: 250px;

  object-fit: cover;
}

.card-content {
  padding: 25px;
}

.card-content span {
  color: #f59e0b;

  font-size: 13px;

  font-weight: 700;
}

.card-content h3 {
  margin: 15px 0;

  line-height: 1.5;
}

.card-content p {
  color: #cbd5e1;

  line-height: 1.8;

  margin-bottom: 20px;
}

.card-content a {
  color: #f59e0b;

  text-decoration: none;

  font-weight: 700;
}

/* =========================
   MARKET ANALYSIS
========================= */

.market-section {
  padding: 100px 8%;

  background: #0d1117;
}

.market-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 30px;
}

.market-card {
  background: #111827;

  padding: 35px;

  border-radius: 25px;

  transition: 0.3s;
}

.market-card:hover {
  transform: translateY(-10px);
}

.market-card h3 {
  color: #f59e0b;

  margin-bottom: 15px;
}

.market-card p {
  color: #cbd5e1;

  line-height: 1.8;
}

/* =========================
   BRANDS
========================= */

.brands-section {
  padding: 100px 8%;
}

.brand-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 25px;
}

.brand-card {
  background: #111827;

  padding: 40px;

  border-radius: 25px;

  text-align: center;

  font-weight: 700;

  transition: 0.3s;
}

.brand-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}

/* =========================
   STATS
========================= */

.stats-section {
  padding: 100px 8%;

  background: #0d1117;
}

.stats-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 25px;
}

.stat-card {
  background: #111827;

  padding: 40px;

  border-radius: 25px;

  text-align: center;
}

.stat-card h3 {
  font-size: 48px;

  color: #f59e0b;

  margin-bottom: 10px;
}

.stat-card p {
  color: #94a3b8;
}

/* =========================
   NEWSLETTER
========================= */

.newsletter {
  padding: 100px 8%;

  text-align: center;
}

.newsletter h2 {
  font-size: 42px;

  margin-bottom: 15px;
}

.newsletter p {
  color: #94a3b8;

  margin-bottom: 30px;
}

.newsletter form {
  display: flex;

  justify-content: center;

  gap: 15px;

  flex-wrap: wrap;
}

.newsletter input {
  width: 450px;

  max-width: 100%;

  padding: 18px;

  border-radius: 15px;

  border: none;

  outline: none;
}

.newsletter button {
  border: none;

  background: #f59e0b;

  color: white;

  padding: 18px 35px;

  border-radius: 15px;

  cursor: pointer;

  font-weight: 700;
}

/* =========================
   FOOTER
========================= */

footer {
  background: #050505;

  padding: 80px 8% 30px;
}

.footer-content {
  text-align: center;
}

.footer-content h2 {
  color: #f59e0b;

  margin-bottom: 15px;
}

.footer-content p {
  color: #94a3b8;
}

.footer-links {
  display: flex;

  justify-content: center;

  gap: 30px;

  flex-wrap: wrap;

  margin: 40px 0;
}

.footer-links a {
  text-decoration: none;

  color: #cbd5e1;
}

.footer-links a:hover {
  color: #f59e0b;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  margin-top: 40px;

  padding-top: 25px;

  text-align: center;

  color: #64748b;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {
  .featured-industry {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .search-box {
    display: none;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .featured-content h2 {
    font-size: 30px;
  }
}
