.elementor-7906 .elementor-element.elementor-element-cc6b9b6{--display:flex;}/* Start custom CSS for html, class: .elementor-element-b6859f5 */.disaster-hero {
  position: relative;
  background-image: url('https://www.netmonservices.com/wp-content/uploads/2025/05/disaster-preparedness-survey.jpg'); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 20px;
  overflow: hidden;
}

.disaster-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 26, 51, 0.6); /* Netmon blue dark overlay */
  z-index: 1;
}

.disaster-hero .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease forwards;
}

.disaster-hero h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.disaster-hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f0f4f8;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: bold;
  background-color: #0072c6; /* Netmon Blue lighter */
  color: #ffffff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background-color: #ffffff;
  color: #003366;
  text-decoration: none;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .disaster-hero h1 {
    font-size: 2rem;
  }

  .disaster-hero p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 24px;
  }
}







.cta-button {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: bold;
  background-color: #ffffff; /* White background */
  color: #1f2f45; /* Dark Netmon text */
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background-color: #003366; /* Netmon Blue */
  color: #ffffff; /* White text */
  text-decoration: none;
}/* End custom CSS */