/* Enhanced styling for products-solutions page */
.modern-section {
  background: #151515;/*linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;*/
  border-radius: 10px !important;
  padding: 40px !important;
  margin-bottom: 50px !important;
 /* box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1) !important;*/
box-shadow: 0 0 10px 0 rgba(253, 252, 252, 0.466);
  border: 1px solid rgba(255, 215, 0, 0.2) !important;
  position: relative !important;
  overflow: hidden !important;
}

.modern-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ff6b35, #ffd700);
  animation: shimmer 3s ease-in-out infinite;
}

  @keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }

  .section-number {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
    font-size: 24px;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
  }

  @keyframes pulse-glow {
    0%, 100% { transform: scale(1); box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5); }
  }

  .modern-heading {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  }

  .modern-heading h2 {
    background: linear-gradient(135deg, #ffd700, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  }

  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-left: 1px solid #ffd700;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
  }

  .feature-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
  }

  /*.feature-item::before {
    content: '✦';
    position: absolute;
    left: 20px;
    top: 20px;
    color: #ffd700;
    font-size: 20px;
    animation: twinkle 2s ease-in-out infinite;
  }*/

  @keyframes twinkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
  }

  .feature-text {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.7;
    margin-left: 20px;
  }

  .feature-text a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted #ffd700;
    transition: all 0.3s ease;
  }

  .feature-text a:hover {
    color: #ffed4e;
    border-bottom: 1px solid #ffed4e;
  }

  .industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
  }

  .industry-card {
    background: #222222;/*linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);*/
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .industry-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
  }

  .industry-card:hover::before {
    animation: shine 0.6s ease-in-out;
  }

  @keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
  }

  .industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
  }

  .industry-title {
    color: #ffd700;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }

  .industry-title::before {
    content: '◆';
    margin-right: 10px;
    font-size: 20px;
  }

  .industry-text {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
  }

  .enhanced-service-container {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
  }

  .enhanced-service-container .box {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .enhanced-service-container .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
  }

  .enhanced-service-container .box:hover::before {
    left: 100%;
  }

  .enhanced-service-container .box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
  }

  .enhanced-service-container .box .detail-box h5 {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    margin-bottom: 20px;
  }


.main-intro {
    background: #181818;/*rgba(255, 215, 0, 0.03);*/
    border-radius: 20px;
    padding: 12px; /* height of the first section */
    text-align: center;
    margin-bottom: 20px;
   /* border: 1px solid rgba(255, 215, 0, 0.2);*/
/*box-shadow: 0 0 5px 0 rgba(253, 252, 252, 0.466);*/
}

  .main-intro p {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .intro-description {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 0;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .modern-section {
      padding: 25px;
      margin-bottom: 30px;
    }
    
    .modern-heading {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .section-number {
      margin-bottom: 15px;
      margin-right: 0;
    }
    
    .industry-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }

.product-link,
.product-link:hover,
.product-link:visited,
.product-link:active,
.product-link:focus {
    color: #FFD700 !important;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
}

.product-link:hover {
    border-bottom: 1px solid #FFD700;
}