/* Hero Banner — merged with nav */
.news-hero {
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #132a4e 40%, #1a3a5c 70%, #0d2240 100%);
    background-size: cover;
    background-position: center;
    padding: 0;
    overflow: hidden;
}
.news-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.82);
    z-index: 1;
}
.news-hero::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 154, 214, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 6s ease-in-out infinite;
    z-index: 2;
}
@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}
.news-hero .top_w3pvt_main {
    position: relative;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 0;
}
.news-hero .nav_w3pvt {
    position: relative;
    margin-top: 0;
    background: none;
}
.news-hero .menu {
    background: none;
}
.news-hero .business_line {
    color: rgba(255, 255, 255, 0.7) !important;
}
.news-hero .menu li a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}
.news-hero .menu li a:hover {
    color: #4fc3f7;
}
.hero-body {
    position: relative;
    z-index: 10;
    padding: 75px 60px 80px;
}
.hero-label {
    display: block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(37, 154, 214, 0.7);
    margin-top: 16px;
    font-weight: 500;
}
.hero-body h1 {
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 16px;
}
.hero-body h1 strong {
    font-weight: 700;
    background: linear-gradient(135deg, #259ad6, #4fc3f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-body > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.dot-grid {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(37, 154, 214, 0.15) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    z-index: 3;
}
.news-hero .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}
.news-hero .breadcrumb li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
}
.news-hero .breadcrumb li a:hover {
    color: #4fc3f7;
}
.news-hero .breadcrumb li.active {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}
.news-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 992px) {
    .hero-body h1 { font-size: 36px; }
    .dot-grid { display: none; }
}
@media (max-width: 768px) {
    .hero-body { padding: 60px 24px 60px; }
    .hero-body h1 { font-size: 30px; }
}
