* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
}
body { font-family: 'Segoe UI', Arial, Helvetica, sans-serif; background: #f8f9fa; line-height: 1.6; }

ul li i{padding-right: 0px;}

/* header nav links start */
.site-nav {
    background: #ffffff;
    border-bottom: 1px solid #e2e6ea;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img {
    height: auto;
    padding: 12px 0;
    transition: transform 0.3s ease;
}
.nav-logo img:hover {
    transform: scale(1.05);
}
/* Hamburger */
.nav-toggle {
    display: none;
    font-size: 28px;
    color: #2c3e50;
    padding: 15px;
    cursor: pointer;
}
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
}
.nav-item {
    position: relative;
}
.nav-link1 {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2c3e50;
    text-decoration: none;
    padding: 40px 18px 26px;
    font-weight: 600;
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.nav-link1:hover {
    color: #007bff;
    background: rgba(0,123,255,0.05);
}
.nav-item.has-dropdown > .nav-link1::after {
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    margin-left: 6px;
    transition: transform 0.3s ease;
    line-height: 1;
}
.nav-item:hover > .nav-link1::after,
.nav-item.open > .nav-link1::after {
    transform: rotate(180deg);
    color: #007bff;
}
/* Unified Dropdown Base – with overlap fix */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
    border: 1px solid #e2e6ea;
    margin-top: -3px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(8px);
    transition: 
        opacity    0.18s ease,
        transform  0.18s ease,
        visibility 0s linear 0.18s;
    transition-delay: 0s, 0s, 0.12s;
}
/* Open states */
.nav-item:hover > .dropdown,
.nav-item.open > .dropdown,
.nav-item:focus-within > .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}
.dropdown::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #007bff;
}
/* Submenu Styling (shared) */
.submenu ul,
.more-dropdown ul {
    list-style: none;
    padding: 16px 0;
    margin: 0;
}
.submenu li a,
.more-dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: #34495e;
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 14.5px;
    white-space: nowrap;
}
.submenu li a i,
.more-dropdown li a i {
    color: #007bff;
    width: 20px;
    text-align: center;
    font-size: 15px;
}
.submenu li a:hover,
.more-dropdown li a:hover {
    background: rgba(0,123,255,0.08);
    color: #007bff;
    padding-left: 32px;
}
/* MORE-specific overrides */
.more-dropdown {
    width: 330px;
    max-height: 75vh;
    overflow-y: auto;
    padding: 20px;
}
.more-dropdown::-webkit-scrollbar {
    width: 6px;
}
.more-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.more-dropdown::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 10px;
}
.more-section {
    margin-bottom: 24px;
}
.more-section:last-child {
    margin-bottom: 0;
}
.more-section > a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #2c3e50;
    font-size: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
    margin-bottom: 12px;
}
.more-section > a i {
    color: #007bff;
    font-size: 18px;
}
/* Buttons */
.btn-submit {
    background: linear-gradient(135deg, #007bff, #0056b3) !important;
    color: white !important;
    padding: 10px 28px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
    transition: all 0.3s ease !important;
    text-transform: none;
    margin-top: 10px;
}
.btn-submit:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,123,255,0.4) !important;
}

/* Responsive - Mobile */
@media (max-width: 992px) {
    .nav-toggle { display: block; }
    .nav-menu {
        display: none !important;
        flex-direction: column;
        width: 100%;
        background: white;
        border-top: 1px solid #eee;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        z-index: 9999;
        max-height: 80vh;
        overflow-y: auto;
    }
    .nav-menu.active { display: flex !important; }
    .nav-link1 {
        padding: 18px 25px;
        border-bottom: 1px solid #eee;
    }
    .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin-top: 0;
        width: 100%;
        display: none !important;
    }
    .nav-item.open > .dropdown { display: block !important; }
    .dropdown::before { display: none; }
    .more-dropdown {
        width: 100%;
        max-height: none;
        overflow-y: visible;
        padding: 0 0 20px 0;
    }

    /* Reset desktop-only fixes in mobile */
    .nav-item.has-dropdown {
        padding-bottom: 0;
    }
    .nav-link1 {
        padding: 18px 25px;
    }
}
/* header nav links end */

/* home page banner start */
.jbres-hero3{
  padding: 22px 0;
  background: linear-gradient(135deg, #0b1220 0%, #111c34 55%, #0b1220 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}
.jbres-hero3::before{
  content:"";
  position:absolute; inset:-1px;
  background:
    radial-gradient(720px 280px at 12% 18%, rgba(56,189,248,.18), transparent 60%),
    radial-gradient(680px 280px at 82% 8%, rgba(168,85,247,.16), transparent 62%),
    radial-gradient(680px 280px at 70% 92%, rgba(16,185,129,.14), transparent 60%);
  pointer-events:none;
}
.jbres-hero3__container{ position:relative; z-index:2; }
.jbres-hero3__grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 16px;
  align-items: start;
}
/* LEFT */
.jbres-hero3__headline{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.jbres-hero3__tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
}
.jbres-hero3__title{
  margin: 0 0 10px;
  color:#fff;
  font-weight: 980;
  letter-spacing: -.35px;
  line-height: 1.12;
  font-size: clamp(22px, 2.6vw, 36px);
}
.jbres-hero3__abbr{
  display:inline-block;
  margin-left: 8px;
  font-size: .72em;
  font-weight: 950;
  opacity: .78;
}
.jbres-hero3__lead{
  margin: 0 0 12px;
  color: rgba(255,255,255,.84);
  font-weight: 650;
  line-height: 1.75;
  font-size: 14.7px;
}
/* Bullets */
.jbres-hero3__bullets{
  display:grid;
  gap: 8px;
  margin: 0 0 14px;
}
.jbres-hero3__bullet{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(255,255,255,.84);
  font-weight: 750;
  font-size: 13.5px;
}
.jbres-hero3__bicon{
  width: 20px; height: 20px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(56,189,248,.18);
  border: 1px solid rgba(56,189,248,.22);
  color:#fff;
  flex: 0 0 auto;
}
/* Actions */
.jbres-hero3__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.jbres-hero3__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 950;
  font-size: 14px;
  text-decoration:none !important;
  border: 1px solid rgba(255,255,255,.16);
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.jbres-hero3__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(0,0,0,.25);
}
.jbres-hero3__btn--primary{
  color:#0b1220 !important;
  background: linear-gradient(135deg, #ffffff 0%, #dbeafe 55%, #ffffff 100%);
}
.jbres-hero3__btn--secondary{
  color:#fff !important;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
}
.jbres-hero3__btn--ghost{
  color:#fff !important;
  background: transparent;
  border-style: dashed;
  border-color: rgba(255,255,255,.30);
}
.jbres-hero3__meta{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items:center;
  color: rgba(255,255,255,.74);
  font-weight: 750;
  font-size: 13px;
}
.jbres-hero3__sep{ opacity:.55; }

/* RIGHT (single compact card) */
.jbres-hero3__right{ align-self: start; }

.jbres-hero3__oneCard{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.20);
  backdrop-filter: blur(10px);
}
/* Top bar */
.jbres-hero3__oneTop{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.jbres-hero3__oneTitle{
  font-weight: 980;
  color:#fff;
  font-size: 14px;
}
.jbres-hero3__oneBadge{
  display:inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  color:#fff;
  background: rgba(56,189,248,.16);
  border: 1px solid rgba(56,189,248,.22);
}
/* Grid of facts */
.jbres-hero3__oneGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.jbres-hero3__oneItem{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 10px;
}
.jbres-hero3__oneItem .k{
  font-size: 12px;
  font-weight: 850;
  color: rgba(255,255,255,.70);
}
.jbres-hero3__oneItem .v{
  margin-top: 4px;
  font-size: 13.8px;
  font-weight: 980;
  color:#fff;
  line-height: 1.2;
}
.jbres-hero3__oneItem a{
  color:#fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* Accent for Published Articles */
.jbres-hero3__oneItem--accent{
  background: rgba(14,165,233,.12);
  border-color: rgba(14,165,233,.22);
}
/* Footer strip */
.jbres-hero3__oneFoot{
  margin-top: 10px;
  display:flex;
  flex-wrap: wrap;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.jbres-hero3__footChip{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255,255,255,.92);
  background: rgba(16,185,129,.14);
  border: 1px solid rgba(16,185,129,.22);
}
.jbres-hero3__footLink{
  color: rgba(255,255,255,.92);
  font-weight: 900;
  font-size: 12.5px;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,.35);
}
/* Responsive */
@media (max-width: 992px){
  .jbres-hero3{ padding: 20px 0; }
  .jbres-hero3__grid{ grid-template-columns: 1fr; }
}
@media (max-width: 575px){
  .jbres-hero3__btn{ width: 100%; }
  .jbres-hero3__oneGrid{ grid-template-columns: 1fr; }
}

/* home page banner end */


.jbr-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--jbr-primary);
    border-radius: 2px;
}
.article-btn-primary:hover,
.btn-outline-primary:hover,
.btn-primary:hover {
    color: #fff !important;
}
.jbres-ft2 a:hover{
  opacity: 0.82;
  color: #06121f !important;
}


@media (max-width: 480px) {

    .mega-search-form {
        flex-direction: column;
        gap: 10px;
    }

    .mega-search-button {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }

    .mega-search-input {
        width: 100%;
    }

}