.elementor-30316 .elementor-element.elementor-element-2634997{--display:flex;}/* Start custom CSS for html, class: .elementor-element-9cd6dfd *//* --- 0. GLOBAL STYLES & ANIMATIONS --- */
.nws-solutions-page {
  font-family: 'Inter', sans-serif;
  background: #f9fbff;
  color: #222;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Helper class for standard content width */
.nws-solutions-page .nws-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* Animation for sections fading in */
@keyframes nws-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- 1. HERO --- */
.nws-solutions-page .nws-hero {
  background: linear-gradient(135deg, #1c4d8e 0%, #2a569c 100%);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  animation: nws-fadeInUp 0.6s ease-out;
}
.nws-solutions-page .nws-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.nws-solutions-page .nws-hero-subtitle {
  font-size: 18px;
  max-width: 800px;
  margin: auto;
}

/* --- 2. INTRO --- */
.nws-solutions-page .nws-intro {
  /* Staggered animation */
  opacity: 0;
  animation: nws-fadeInUp 0.6s ease-out 0.2s forwards;
}

/* --- 3. SOLUTIONS GRID (MODERN UI) --- */
.nws-solutions-page .nws-solutions-grid-wrapper {
  background: #f9fbff;
  padding-bottom: 60px;
}
.nws-solutions-page .nws-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding-top: 0; /* Intro already has padding-top */
}
.nws-solutions-page .nws-solution-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  padding: 30px;
  
  /* Transitions for hover */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  /* Staggered animation for each card */
  opacity: 0;
  animation: nws-fadeInUp 0.6s ease-out forwards;
}

/* Card Hover Animation */
.nws-solutions-page .nws-solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(28, 77, 142, 0.15);
}

/* Card Animation Delays */
.nws-solutions-page .nws-solution-card:nth-child(1) { animation-delay: 0.3s; }
.nws-solutions-page .nws-solution-card:nth-child(2) { animation-delay: 0.4s; }
.nws-solutions-page .nws-solution-card:nth-child(3) { animation-delay: 0.5s; }
.nws-solutions-page .nws-solution-card:nth-child(4) { animation-delay: 0.6s; }
.nws-solutions-page .nws-solution-card:nth-child(5) { animation-delay: 0.7s; }
.nws-solutions-page .nws-solution-card:nth-child(6) { animation-delay: 0.8s; }

/* Card Content Styling */
.nws-solutions-page .nws-solution-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.nws-solutions-page .nws-solution-number {
  font-size: 48px;
  font-weight: 800;
  color: #1c4d8e;
  opacity: 0.2;
  line-height: 1;
}
.nws-solutions-page .nws-solution-title {
  color: #1c4d8e;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
.nws-solutions-page .nws-solution-list {
  list-style-type: '✓ '; /* Custom checkmark bullet */
  margin: 0;
  padding-left: 25px;
  color: #333;
}
.nws-solutions-page .nws-solution-list li {
  margin-bottom: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* List Item Hover Animation */
.nws-solutions-page .nws-solution-list li:hover {
  transform: translateX(5px);
  color: #1c4d8e;
}
.nws-solutions-page .nws-solution-list li:last-child {
  margin-bottom: 0;
}

/* --- 4. WHY CHOOSE CTA --- */
.nws-solutions-page .nws-why-choose {
  background: #1c4d8e;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  
  /* Staggered animation */
  opacity: 0;
  animation: nws-fadeInUp 0.6s ease-out 0.9s forwards;
}
.nws-solutions-page .nws-why-choose-title {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}
.nws-solutions-page .nws-why-choose-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: auto;
  text-align: left;
}
.nws-solutions-page .nws-why-choose-list li {
  padding: 5px 0;
  font-size: 17px;
  transition: transform 0.3s ease;
}

/* List Item Hover Animation */
.nws-solutions-page .nws-why-choose-list li:hover {
  transform: translateX(5px);
}

.nws-solutions-page .nws-why-choose-quote {
  margin-top: 25px;
  font-style: italic;
  font-size: 18px;
  color: #f8e58c;
}

/* --- 5. RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 768px) {
  .nws-solutions-page .nws-hero-title {
    font-size: 38px !important;
  }
  .nws-solutions-page .nws-why-choose-title {
    font-size: 28px !important;
  }
  .nws-solutions-page .nws-solution-title {
    font-size: 22px;
  }
}/* End custom CSS */