/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
  font-size: 32px;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #27ae60;
  margin: 10px auto;
  border-radius: 2px;
}

h2 i {
  margin-right: 10px;
  color: #27ae60;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1519046904884-53103b34b206');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  margin-top: 70px;
}

.hero-data {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1553877522-43269d4ea984');
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* ===== DATA CONTAINER ===== */
.data-container {
  background-color: #fff;
  padding-bottom: 60px;
}

.data-section {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 40px;
  margin-bottom: 40px;
}

.data-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.data-chart {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.data-table {
  flex: 1;
  min-width: 300px;
  overflow-x: auto;
}

.data-table table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.data-table th {
  background-color: #27ae60;
  color: white;
  text-align: left;
  padding: 15px;
}

.data-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

.data-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.data-table tr:hover {
  background-color: #f1f1f1;
}

/* ===== INDICATOR CARDS ===== */
.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.indicator-card {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.indicator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.indicator-icon {
  font-size: 40px;
  color: #27ae60;
  margin-bottom: 15px;
}

.indicator-value {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin: 10px 0;
}

.indicator-desc {
  color: #666;
  font-size: 14px;
}

/* ===== INFRASTRUCTURE SECTION ===== */
.infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.infra-item {
  display: flex;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.infra-icon {
  font-size: 30px;
  color: #27ae60;
  margin-right: 15px;
  min-width: 40px;
}

.infra-content h3 {
  margin-bottom: 10px;
  color: #2c3e50;
}

.infra-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

/* ===== UPDATE SECTION ===== */
.update-section {
  text-align: center;
}

.update-card {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  border-radius: 10px;
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.update-card i {
  font-size: 50px;
  margin-bottom: 20px;
}

.update-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.update-card p {
  margin-bottom: 5px;
  font-size: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 30px;
}

.footer-about {
  flex: 1;
  min-width: 300px;
}

.footer-about h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-about p {
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #34495e;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.social-links a:hover {
  background: #27ae60;
}

.footer-links {
  flex: 0 0 200px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #27ae60;
}

.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-contact i {
  margin-right: 10px;
  margin-top: 5px;
  color: #27ae60;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  background: #1a252f;
  font-size: 14px;
}

.footer-bottom p {
  margin: 5px 0;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
  }
  
  .nav-links.show {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  .nav-links li a {
    display: block;
    padding: 15px;
  }
  
  .data-content {
    flex-direction: column;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 15px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .data-section {
    padding: 25px 15px;
  }
  
  .indicator-value {
    font-size: 30px;
  }
}