/* ==================== Global ==================== */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  background: #fff;
}

section {
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

h1, h2, h3 {
  font-weight: 600;
  margin: 0 0 15px 0;
}

/* ==================== Buttons ==================== */
.btn {
  background: #d62828;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  font-weight: 500;
}

.btn:hover {
  background: #f77f00;
}

/* ==================== HERO SECTION ==================== */
.state-hero {
  background: url('https://upload.wikimedia.org/wikipedia/commons/b/b4/Jana_and_Nella_in_an_Intimate_Moment.jpg')
    center/cover no-repeat;
  height: 85vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.state-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.state-hero .content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 15px;
}

.state-hero h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.state-hero p {
  font-size: 1.1rem;
  margin-bottom: 22px;
}

/* ==================== INFO BLOCKS ==================== */
.info-block h1,
.info-block h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #003049;
}

.info-block p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.8;
  font-size: 1rem;
}

/* ==================== STATS ==================== */
.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.stat {
  background: #fff;
  border: 1px solid #ddd;
  padding: 25px;
  border-radius: 10px;
  width: 200px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.stat h3 {
  color: #d62828;
  font-size: 2rem;
  margin-bottom: 5px;
}

/* ==================== INDUSTRY ==================== */
.bg-light {
  background: #f8f9fa;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.industry {
  background: #fff;
  padding: 22px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.industry h3 {
  color: #f77f00;
  margin-bottom: 10px;
}

/* ==================== TOP CITIES ==================== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.city-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.city-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.city-card h3 {
  color: #d62828;
  margin: 15px;
}

.city-card p {
  margin: 0 15px 18px;
  line-height: 1.6;
}

/* ==================== DUAL BLOCKS ==================== */
.dual-section {
  background: #fff;
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.dual-block {
  background: #f8f9fa;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.dual-block h2 {
  color: #003049;
  margin-bottom: 15px;
}

.dual-block p {
  line-height: 1.8;
  color: #333;
  text-align: justify;
  font-size: 0.98rem;
}

/* ==================== CTA ==================== */
.cta-section {
  background: linear-gradient(135deg, #003049, #1d3557);
  text-align: center;
  color: #fff;
  padding: 70px 20px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
  .state-hero h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 50px 15px;
  }

  .state-hero {
    height: 70vh;
    padding: 20px;
  }

  .state-hero h2 {
    font-size: 1.8rem;
  }

  .state-hero p {
    font-size: 1rem;
  }

  .dual-grid {
    grid-template-columns: 1fr;
  }

  h1, h2 {
    font-size: 1.8rem;
  }

  .stats {
    gap: 20px;
  }

  .stat {
    width: 160px;
  }
}

@media (max-width: 480px) {
  .state-hero h2 {
    font-size: 1.6rem;
  }

  .city-card img {
    height: 150px;
  }

  .dual-block {
    padding: 20px;
  }
}
