.radiosec-section {
    position: relative;
    background-color: #1A237E; 
  
  /* Create a subtle radial gradient for depth and abstract texture */
    background-image: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.02), /* Very faint white line (2% opacity) */
    transparent 1px,           /* Line thickness */
    transparent 30px           /* Spacing between lines */
  );
  
  background-size: cover;
  background-color: #1A237E; /* Fallback/Base Color */
}

.radiosec-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Padding wrapper */
.radiosec-padding {
    padding: 7rem 0;
}

/* Title & tagline (kept separate fonts/weights) */
.radiosec-title h4 {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 1rem;
    font-style: normal;
}

.radiosec-title h2 {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 2rem;
}

.radiosec-title h2 b {
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    color: #ffffff;
    font-style: normal;
}