body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
}

/* Navbar */
.navbar {
    font-size: 14px;
    padding: 0.6rem 0;
    background: linear-gradient(90deg, #f6d365, #fda085);
}

.navbar-nav .nav-link {
    padding: 0.6rem 1rem;
    font-weight: 500;
    color: #fff !important;
}

.navbar-brand img {
    max-height: 70px;
}

.navbar .btn {
    font-size: 13px;
    padding: 6px 15px;
    border-radius:0 !important;
}

/* Hero Section */
.hero img {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    max-width: 700px;
}

.hero-text h6 {
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-text h1 {
    font-weight: 700;
    font-size: 2.3rem;
    margin-top: 10px;
}

/* Sections */
.section-padding {
    padding: 70px 0;
}

.bg-light-gray {
    background: #f9f9f9;
}

.icon-box {
    font-size: 40px;
    color: #f39c12;
    margin-bottom: 15px;
}

/* Trial Section */
.trial-box {
    background: linear-gradient(120deg, #a1c4fd, #c2e9fb);
    color: #222;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.trial-box .btn {
    margin: 5px;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.trial-box .btn:hover {
    transform: translateY(-2px);
}

/* Blog Items */
.blog-item {
    transition: all 0.3s ease;
}

.blog-item img {
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.blog-item:hover {
    transform: translateY(-4px);
}

/* Footer */
.footer {
    background: #282E3F;
    color: #eee;
    padding: 50px 0 20px;
    font-size: 14px;
}

.footer h6 {
    font-weight: 600;
    color: white;
}

.footer a {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fff;
}

/* login */

/* Navbar */
.navbar {
    background: #fff;
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 500;
}

/* Registration form container */
.register-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #a1c4fd, #c2e9fb);
}

.register-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    width: 100%;
}

.register-card h4 {
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.form-control {
    border-radius: 25px;
}

.btn-primary {
    background: linear-gradient(90deg, #667eea, #764ba2);
    border: none;
    transition: 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Additional styles for pricing */
.pricing-section {
    background: linear-gradient(120deg, #fdfbfb, #ebedee);
    padding: 60px 0;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-price {
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
}

.discount {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 500;
}

.popular {
    border: 2px solid #667eea;
}
.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875em;
}

.is-invalid {
    border-color: #dc3545;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

/* General Section Styling */
.section-padding {
    padding: 60px 0;
}

/* Card-style box */
.info-box {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.info-box:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

/* Icon styling */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #1d3557;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #fff;
}

/* Titles */
.info-box h4 {
    font-weight: 700;
    font-size: 22px;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Description Text */
.info-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

/* Light gray background option */
.bg-light-gray {
    background: #f8f9fa;
}

/* Image inside second section */
.info-box img {
    border-radius: 10px;
    margin-top: 25px;
    max-height:300px;
    width:100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 767px) {
    .info-box {
        padding: 30px 20px;
    }
    
    .rs-body{
        padding:16px 10px !important;
    }
    
    .ldb-body{
        padding:24px 10px !important;
    }
    
    .ldb-item{
        flex-direction:column;
        min-height:175px;
    }
    
    .hero-text {
    position: absolute !important;
    top: 50% !important;
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    color: white !important;
    text-align: center !important;
    width: 100% !important;
}
    .icon-box {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    .info-box h4 {
        font-size: 20px;
    }
    .hero img{
        height:263px;
    }
    .hero-text h1{
        font-size:20px !important;
    }
    .hero-buttons{
        display:flex !important;
        gap:5px;
        justify-content:center;
    }
    .btn-outline-light{
        font-size:11px !important;
    }
    .btn-primary{
         padding:4px !important;
         font-size:13px !important;
    }
   #hero-title1{
       font-size:12px !important;
   }
}

/* Dark background for the section */
.bg-light-gray {
    background: #ffffff !important; /* deep dark */
}

/* Blog Card */
.blog-item {
    background: #1a1d24;
    border: 1px solid #2a2d34;
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.blog-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    transform: translateY(-4px);
    border-color: #3b3f48;
}

/* Featured Image */
.blog-item img {
    border-radius: 12px;
    margin-bottom: 15px;
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.88);
}

.blog-item img:hover {
    filter: brightness(1);
}

/* Title */
.blog-item h5 {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Excerpt */
.blog-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #b8b8b8;
    margin-bottom: 12px;
}

/* Date */
.blog-item small {
    font-size: 13px;
    color: #8f98a7 !important;
}

/* Read More Button */
.blog-item .btn-outline-primary {
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    border-color: #3f72ff;
    color: #3f72ff;
}

.blog-item .btn-outline-primary:hover {
    background: #3f72ff;
    color: #ffffff;
}

/* Section Heading */
.section-padding h4 {
    color: #000;
    font-weight: 700;
}

.section-padding h4 i {
    color: #3f72ff; /* law-blue accent */
}

/* Responsive */
@media (max-width: 767px) {
    .blog-item {
        padding: 18px;
    }
    .blog-item img {
        height: 160px;
    }
    .section-padding{
        padding:30px 0 !important;
    }
    .navbar{
        padding:0 18px !important;
    }
}

#titlee{
    color:#000;
}

.blog-section{
    background:#000 !important;
}

.blog-title{
    color:#fff !important;
}
.bg-darkk{
    background:#fff !important;
}

.btn-outline-light{
    color:#000 !important;
    border-color:#000 !important;
}

/* Offcanvas Menu Styles */
.mobile-offcanvas {
  width: 260px;
  background: #000;
  color: white;
  position: fixed;
  top: 0;
  left: -260px;
  height: 100%;
  z-index: 9999;
  transition: left 0.3s ease-in-out;
  padding-top: 20px;
}

.mobile-offcanvas.open {
  left: 0;
}

/* Overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  display: none;
}

#overlay.active {
  display: block;
}

.mobile-header {
  border-bottom: 1px solid #333;
}

.navbar-dark .navbar-toggler-icon {
    background-image: none !important;
}

.navbar-toggler-icon {
    background-image: none !important;
}
/* Custom Hamburger */
.custom-toggler .navbar-toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #000;
    position: relative;
    display: inline-block;
}

.custom-toggler .navbar-toggler-icon::before,
.custom-toggler .navbar-toggler-icon::after {
    content: "";
    width: 30px;
    height: 2px;
    background-color: #000;
    position: absolute;
    left: 0;
}

.custom-toggler .navbar-toggler-icon::before {
    top: -8px;
}

.custom-toggler .navbar-toggler-icon::after {
    top: 8px;
}

.subscribe{
    color:#fff !important;
    border-color:#fff !important;
}

.btn-outline-light:hover {
    background:#000;
    color:#fff !important;
}
.login{
    background:grey !important;
    color:#fff !important;
}

.readmore{
    color:#fff !important;
    border-color:#fff !important;
}

:root {
  --navy:    #0d1b2e;
  --gold:    #b8972a;
  --gold-lt: #d4af4a;
  --cream:   #f7f2e9;
  --cream-dk:#ede5d0;
  --muted:   #6b5c3e;
}
 
body {
  margin: 0;
}
 
/* -----------------------------------------------
   SHARED UTILITIES
----------------------------------------------- */
.slj-overline {
  font-family: 'EB Garamond', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
 
.slj-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 18px 0 20px;
}
 
/* -----------------------------------------------
   HERO SECTION
----------------------------------------------- */
.slj-hero {
  background: var(--navy);
  padding: 60px 0 52px;
  position: relative;
  overflow: hidden;
}
 
.slj-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
 
.slj-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 20px;
}
 
.slj-hero-title em {
  color: var(--gold-lt);
  font-style: italic;
}
 
.slj-hero-text {
  font-family: 'EB Garamond', serif;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  margin: 0;
  max-width: 520px;
}
 
.slj-hero-text strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
 
/* -----------------------------------------------
   SEAL
----------------------------------------------- */
.slj-seal {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  box-shadow:
    0 0 0 8px rgba(184, 151, 42, 0.08),
    0 0 0 16px rgba(184, 151, 42, 0.04);
}
 
.slj-seal::before {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 1px dashed rgba(184, 151, 42, 0.35);
}
 
.slj-seal-est {
  font-family: 'EB Garamond', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(184, 151, 42, 0.65);
  text-transform: uppercase;
}
 
.slj-seal-year {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
 
/* -----------------------------------------------
   FEATURES SECTION
----------------------------------------------- */
.slj-featuress {
  background: var(--navy);
  padding: 60px 0 68px;
}

.slj-features{
    padding: 60px 0 68px; 
}
 
.slj-section-head {
  margin-bottom: 44px;
}
 
.slj-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0 6px;
}
 
/* Divider */
.slj-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
 
.slj-divider-line {
  flex: 1;
  height: 1px;
  background: var(--cream-dk);
}
 
.slj-divider-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
 
/* -----------------------------------------------
   CARDS
----------------------------------------------- */
.slj-card {
  background: var(--cream);
  border: 1px solid rgba(184, 151, 42, 0.18);
  border-top: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
 
/* Card number watermark */
.slj-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(184, 151, 42, 0.18);
  position: absolute;
  top: 10px;
  right: 14px;
  line-height: 1;
  user-select: none;
  z-index: 2;
}
 
/* Placeholder image area */
.slj-card-img {
  width: 100%;
  /*height: 160px;*/
  background: linear-gradient(135deg, #1a2e47 0%, #0d1b2e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
 
.slj-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 18px,
    rgba(184, 151, 42, 0.04) 18px,
    rgba(184, 151, 42, 0.04) 20px
  );
}
 
.slj-card-img svg {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}
 
/* When you swap in a real <img>, it fills the area cleanly */
.slj-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
.slj-card-img-label {
  font-family: 'EB Garamond', serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
 
/* Card text body */
.slj-card-body {
  padding: 22px 20px 24px;
  flex: 1;
}
 
.slj-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  padding-right: 28px;
  line-height: 1.35;
}
 
.slj-card-text {
  font-family: 'EB Garamond', serif;
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
}
 
/* -----------------------------------------------
   RESPONSIVE
----------------------------------------------- */
@media (max-width: 767px) {
  .slj-hero-title {
    font-size: 1.75rem;
  }
 
  .slj-section-title {
    font-size: 1.6rem;
  }
}
 .slj-subscribe {
  background: var(--navy);
  padding: 64px 0 72px;
  position: relative;
}
 
.slj-subscribe::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
 
/* -----------------------------------------------
   HEADING
----------------------------------------------- */
.slj-subscribe-heading {
  margin-bottom: 48px;
}
 
.slj-subscribe-icon {
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
 
.slj-subscribe-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px;
}
 
/* Divider */
.slj-divider {
  display: flex;
  align-items: center;
  gap: 10px;
}
 
.slj-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(184, 151, 42, 0.3);
}
 
.slj-divider-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
 
/* -----------------------------------------------
   GRID CARDS
----------------------------------------------- */
.slj-sub-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(184, 151, 42, 0.18);
  border-top: 3px solid var(--gold);
  padding: 11px 12px 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.25s, transform 0.25s;
}
 
.slj-sub-card:hover {
  background: rgba(184, 151, 42, 0.07);
  transform: translateY(-4px);
}
 
/* Icon circle */
.slj-sub-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(184, 151, 42, 0.35);
  background: rgba(184, 151, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
 
.slj-sub-icon i {
  font-size: 1.2rem;
  color: var(--gold);
}
 
/* Card title */
.slj-sub-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin: 0 0 12px;
}
 
/* Card text */
.slj-sub-card-text {
  font-family: 'EB Garamond', serif;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.72;
  margin: 0;
}
 
/* -----------------------------------------------
   RESPONSIVE
----------------------------------------------- */
@media (max-width: 767px) {
  .slj-subscribe-title {
    font-size: 1.6rem;
  }
 
  .slj-sub-card {
    padding: 24px 18px;
  }
}
 .slj-editorial {
  background: var(--cream);
  padding: 68px 0 76px;
  position: relative;
}
 
.slj-editorial::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
 
/* -----------------------------------------------
   HEADING
----------------------------------------------- */
.slj-ed-heading {
  margin-bottom: 52px;
}
 
.slj-ed-icon {
  font-size: 2.4rem;
  color: var(--navy);
  display: block;
  margin-bottom: 12px;
}
 
.slj-overline {
  font-family: 'EB Garamond', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
 
.slj-ed-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 18px;
  line-height: 1.2;
}
 
/* Divider */
.slj-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
 
.slj-divider-line {
  flex: 1;
  height: 1px;
  background: var(--cream-dk);
}
 
.slj-divider-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
 
.slj-ed-intro {
  font-family: 'EB Garamond', serif;
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
 
/* -----------------------------------------------
   PERSON CARDS
----------------------------------------------- */
.slj-person-card {
  background: #ffffff;
  border: 1px solid rgba(184, 151, 42, 0.2);
  border-top: 3px solid var(--gold);
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}
 
.slj-person-card:hover {
  box-shadow: 0 10px 36px rgba(13, 27, 46, 0.1);
  transform: translateY(-4px);
}
 
/* Founder variant — navy bg */
.slj-person-card--founder {
  background: var(--navy);
  border-top-color: var(--gold);
}
 
/* Avatar circle */
.slj-person-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(184, 151, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  flex-shrink: 0;
}
 
.slj-person-avatar::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px dashed rgba(184, 151, 42, 0.3);
}
 
.slj-person-avatar i {
  font-size: 1.6rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
 
.slj-person-avatar--founder {
  background: rgba(184, 151, 42, 0.12);
  border-color: var(--gold-lt);
}
 
/* Body */
.slj-person-body {
  width: 100%;
}
 
.slj-person-role {
  font-family: 'EB Garamond', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
 
.slj-person-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
  line-height: 1.3;
}
 
.slj-person-card--founder .slj-person-name {
  color: #ffffff;
}
 
.slj-person-designation {
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  font-style: italic;
}
 
.slj-person-card--founder .slj-person-designation {
  color: rgba(255, 255, 255, 0.55);
}
 
.slj-person-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto;
}
 
.slj-person-desc {
  font-family: 'EB Garamond', serif;
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
 
.slj-person-card--founder .slj-person-desc {
  color: rgba(255, 255, 255, 0.58);
}
 
/* -----------------------------------------------
   RESPONSIVE
----------------------------------------------- */
@media (max-width: 767px) {
  .slj-ed-title {
    font-size: 1.6rem;
  }
 
  .slj-person-card {
    padding: 28px 20px 24px;
  }
}

.ldb-wrap {
      background: var(--navy);
      border-radius: 16px;
      overflow: hidden;
      border:1px solid rgba(184, 151, 42, 0.18);
      width: 100%;
    }
 
    /* ── Header ── */
    .ldb-header {
      /*background: var(--cream);*/
      border-bottom: 1px solid var(--cream-dk);
      padding: 28px 32px 22px;
    }
 
    .ldb-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
 
    .ldb-icon-wrap svg {
      width: 24px;
      height: 24px;
    }
 
    .ldb-eyebrow {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin: 0 0 4px;
    }
 
    .ldb-title {
      font-size: 20px;
      font-weight: 500;
      color: var(--cream);
      margin: 0;
      line-height: 1.2;
    }
 
    /* ── Body grid ── */
    .ldb-body {
      padding: 24px 32px;
      /*background: var(--cream);*/
    }
 
    .ldb-item {
      background: rgba(255, 255, 255, 0.03);
      /*border: 1px solid var(--cream-dk);*/
      border-radius: 10px;
      padding: 18px 20px;
      transition: border-color 0.2s;
    }
 
    .ldb-item:hover {
      border-color: var(--gold);
    }
 
    .ldb-dot {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
 
    .ldb-dot svg {
      width: 18px;
      height: 18px;
    }
 
    .ldb-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin: 0 0 5px;
    }
 
    .ldb-value {
      font-size: 14px;
      color: var(--cream);
      margin: 0;
      line-height: 1.5;
      font-weight: 500;
    }
 
    /* ── Footer ── */
    .ldb-footer {
      margin: 0 32px;
      padding: 16px 0 24px;
      border-top: 1px solid var(--cream-dk);
    }
 
    .ldb-pulse {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      animation: pulse 2s ease-in-out infinite;
    }
 
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.4; transform: scale(0.7); }
    }
 
    .ldb-footer-text {
      font-size: 13px;
      color: var(--muted);
      margin: 0;
    }
 
    .ldb-footer-text strong {
      color: var(--navy);
      font-weight: 500;
    }
    
      .rs-wrap { background: var(--cream);  overflow: hidden; border: 1px solid var(--cream-dk); width: 100%; }
    .rs-header { background: var(--navy); padding: 28px 32px 24px; }
    .rs-eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
    .rs-eyebrow-icon { width: 30px; height: 30px; border-radius: 7px; background: rgba(212,175,74,0.15); border: 1px solid rgba(212,175,74,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .rs-eyebrow-icon svg { width: 15px; height: 15px; }
    .rs-eyebrow-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-lt); margin: 0; }
    .rs-headline { font-size: 22px; font-weight: 500; color: #fff; margin: 0 0 6px; line-height: 1.2; }
    .rs-sub { font-size: 13px; color: rgba(247,242,233,0.55); margin: 0; }
    .rs-body { padding: 28px 32px; background: var(--cream); }
    .rs-search-box { background: #fff; border: 1.5px solid var(--cream-dk); border-radius: 12px; display: flex; align-items: center; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
    .rs-search-box:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,151,42,0.12); }
    .rs-search-inner { flex: 1; display: flex; align-items: center; gap: 12px; padding: 14px 18px; }
    .rs-search-icon { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.4; }
    .rs-search-text { font-size: 15px; display: flex; align-items: center; white-space: nowrap; overflow: hidden; }
    .rs-static { color: var(--muted); font-weight: 400; flex-shrink: 0; }
    .rs-dynamic { font-weight: 500; color: var(--navy); min-width: 2px; }
    .rs-cursor { display: inline-block; width: 2px; height: 16px; background: var(--gold); margin-left: 1px; vertical-align: middle; animation: blink 1s step-end infinite; }
    @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
    .rs-btn { background: var(--navy); color: #fff; border: none; padding: 0 24px; font-size: 14px; font-weight: 500; cursor: pointer; min-height: 52px; flex-shrink: 0; letter-spacing: 0.02em; transition: background 0.2s; }
    .rs-btn:hover { background: #1a2f4a; }
    .rs-btn:active { background: #0a1522; }
    .rs-hints { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
    .rs-hint { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--cream-dk); border-radius: 20px; padding: 6px 13px; font-size: 12px; font-weight: 500; color: var(--navy); cursor: pointer; transition: border-color 0.2s, background 0.2s; }
    .rs-hint:hover, .rs-hint.active { border-color: var(--gold); background: #fffdf8; }
    .rs-hint-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; display: inline-block; }
    .rs-divider { margin: 0 32px; border: none; border-top: 1px solid var(--cream-dk); }
    .rs-footer { margin: 0 32px; padding: 14px 0 22px; display: flex; align-items: center; gap: 8px; }
    .rs-footer svg { width: 14px; height: 14px; flex-shrink: 0; }
    .rs-footer-text { font-size: 12px; color: var(--muted); margin: 0; font-style: italic; }
    
    .slj-search{
        background:var(--cream);
        padding:70px 0;
    }
    
    /* Dropdown container */
.navbar .dropdown-menu {
  border-radius: 10px;
  border: none;
  padding: 8px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-top: 10px;
  min-width: 260px;
}

/* Dropdown items */
.navbar .dropdown-item {
  font-size: 14px;
  padding: 10px 18px;
  color: #333;
  transition: all 0.3s ease;
}

/* Hover effect */
.navbar .dropdown-item:hover {
  background-color: #f5f7fa;
  color: #0d6efd;
  padding-left: 22px;
}

/* Active/focus state */
.navbar .dropdown-item:focus {
  background-color: #eef3ff;
  color: #0d6efd;
}

/* Dropdown arrow spacing */
.navbar .nav-link.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Parent toggle (Articles row) */
#mobileArticlesToggle {
  font-size: 15px;
  /*padding: 10px 5px;*/
  text-decoration: none;
  transition: 0.3s;
}

#mobileArticlesToggle:hover {
  color: #0d6efd;
}

/* Submenu container */
.mobile-submenu {
  display: none;
  border-left: 2px solid rgba(255,255,255,0.1);
  margin-left: 10px;
  padding-left: 10px;
}

/* Show when active */
.mobile-submenu.active {
  display: block;
  animation: slideDown 0.3s ease;
}

/* Submenu links */
.mobile-submenu li a {
  font-size: 14px;
  padding: 8px 0;
  display: block;
  color: #ccc;
  transition: all 0.3s ease;
}

/* Hover effect */
.mobile-submenu li a:hover {
  color: #fff;
  padding-left: 6px;
}

/* Arrow (+) styling */
#arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Rotate arrow when open */
#arrow.rotate {
  transform: rotate(45deg);
}

/* Smooth dropdown animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slj-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 50px 0 20px;
  font-size: 14px;
}

/* Columns */
.slj-footer-col {
  margin-bottom: 20px;
}

/* Titles */
.slj-footer-title {
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Text */
.slj-footer-text {
  color: var(--cream-dk);
  line-height: 1.6;
}

/* Links */
.slj-footer-links li {
  margin-bottom: 8px;
}

.slj-footer-links a {
  color: var(--cream-dk);
  text-decoration: none;
  transition: 0.3s;
}

.slj-footer-links a:hover {
  color: var(--gold-lt);
  padding-left: 5px;
}

/* Contact icons */
.slj-footer i {
  margin-right: 8px;
  color: var(--gold);
}

/* Divider */
.slj-footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 20px 0;
}

/* Bottom section */
.slj-footer-bottom p {
  margin: 5px 0;
  color: var(--cream-dk);
}

/* Developer credit */
.slj-dev a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.slj-dev a:hover {
  color: var(--gold-lt);
}

@media (min-width: 992px) { /* lg breakpoint */
  .col-lg-2-5 {
    flex: 0 0 20.833333% !important;
    max-width: 20.833333% !important;
  }
}
@media (min-width: 992px) {


  .slj-subscribe .row {
    flex-wrap: nowrap; /* forces single line */
  }
}