
        :root {
            --pri: #1b17ff;
            --acc: #000;
            --acc2: #5855ff;
            --sn: #F8FAFC;
            --bd: #E2E8F0;
            --tx: #64748B;
            --dk: #1E293B;
            --wh: #FFF;
            --se: "DM Serif Display", Georgia, serif;
            --sa: "Outfit", system-ui, sans-serif;
            --mo: "JetBrains Mono", monospace
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: var(--sa);
            color: var(--dk);
            background: var(--sn);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased
        }

        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(11, 17, 32, .97);
            backdrop-filter: blur(12px);
            padding: .7rem 2.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(27, 23, 255, .08)
        }

        .nl {
            display: flex;
            gap: 1.8rem;
            align-items: center
        }

        .nl a {
            font-size: .8rem;
            color: rgba(255, 255, 255, .55);
            text-decoration: none;
            font-weight: 500
        }

        .nl a:hover {
            color: var(--acc)
        }

        .nc {
            background: var(--acc) !important;
            color: var(--wh) !important;
            padding: .45rem 1.2rem !important;
            border-radius: 4px;
            font-weight: 700 !important
        }

        .blog-hero {
            background: #1B17FF;
            padding: 7rem 2.5rem 3rem;
            text-align: center
        }

        .blog-hero .cat {
            font-family: var(--mo);
            font-size: .65rem;
            color: #000;
            letter-spacing: .15em;
            text-transform: uppercase;
            margin-bottom: 1rem
        }

        .blog-hero h1 {
            font-family: var(--se);
            font-size: 2.4rem;
            color: var(--wh);
            max-width: 800px;
            margin: 0 auto 1rem;
            line-height: 1.2;
            letter-spacing: -.02em
        }

        .blog-hero .ml {
            font-size: .82rem;
            color: #fff
        }

        .blog-hero .ml span {
            margin: 0 .5rem
        }

        .bb {
            max-width: 760px;
            margin: 0 auto;
            padding: 3rem 2rem 4rem
        }

        .bs2 {
            margin-bottom: 2.5rem
        }

        .bs2 h2 {
            font-family: var(--se);
            font-size: 1.4rem;
            color: var(--pri);
            margin-bottom: .8rem
        }

        .bs2 p {
            font-size: .92rem;
            color: var(--dk);
            line-height: 1.8
        }

        .pc2 {
            background: #1B17FF;
            border-radius: 14px;
            padding: 2.5rem;
            margin: 3rem 0
        }

        .pc2 h3 {
            font-family: var(--se);
            font-size: 1.2rem;
            color: var(--wh);
            margin-bottom: .5rem
        }

        .pc2>p {
            font-size: .82rem;
            color: #fff;
            margin-bottom: 1.2rem
        }

        .pl2 {
            display: flex;
            flex-direction: column;
            gap: .4rem;
            margin-bottom: 1.2rem
        }

        .pi2 {
            display: flex;
            align-items: center;
            gap: .7rem;
            font-size: .82rem;
            color:#fff
        }

        .pn2 {
            width: 24px;
            height: 24px;
            background: #fff;
            border: 1px solid #1B17FF;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--se);
            font-size: .8rem;
            color: #1B17FF;
            flex-shrink: 0
        }

        .pb2 {
            display: inline-block;
            background: #fff;
            color: #1B17FF;
            padding: .6rem 1.8rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: .85rem;
            text-decoration: none
        }

        .bc2 {
            background: var(--wh);
            border: 1px solid var(--bd);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            margin-top: 2rem
        }

        .bc2 h3 {
            font-family: var(--se);
            font-size: 1.1rem;
            color: var(--pri);
            margin-bottom: .4rem
        }

        .bc2 p {
            font-size: .82rem;
            color: var(--tx);
            margin-bottom: 1rem
        }

        .bc2 a {
            display: inline-block;
            background: var(--acc);
            color: var(--wh);
            padding: .6rem 1.8rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: .82rem;
            text-decoration: none
        }

       

       

        @media(max-width:768px) {
            nav {
                padding: .5rem 1rem
            }

            .nl {
                display: none
            }

            .blog-hero {
                padding: 5rem 1.2rem 2rem
            }

            .blog-hero h1 {
                font-size: 1.7rem
            }

            .bb {
                padding: 1.5rem 1.2rem
            }
        }

                  /* ===== NAV ===== */
nav {
    background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all .4s cubic-bezier(.16, 1, .3, 1)
}

nav.scrolled {
  background: rgba(248, 247, 244, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--mist);
  padding: .75rem 0
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -.02em
}

.nav-logo span {
  color: var(--lime);
  font-style: italic
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center
}

.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  color: var(--stone);
  text-decoration: none;
  transition: color .2s;
  letter-spacing: .01em
}

.nav-links a:hover {
  color: var(--forest)
}

.nav-cta {
  background: var(--forest);
  color: var(--snow) !important;
  padding: .55rem 1.25rem;
  border-radius: 100px;
  font-size: .75rem !important;
  font-weight: 600 !important;
  transition: all .3s !important
}

.nav-cta:hover {
  background: var(--ink);
  transform: translateY(-1px)
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 150%;
  left: 0;
  background: #fff;
  padding: 1rem;
  border-radius: 14px;
  width: 600px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 99;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #000;
  border: 1px solid transparent;
  transition: 0.3s;
}

.dropdown-menu a i {
  font-size: 14px;
}

.dropdown-menu a:hover {
  border: 1px solid #1B17FF;
  background: #f8f9ff;
}

/* ===== HAMBURGER TOGGLE ===== */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* ===== CUSTOM LINK ARROW ===== */
.custom-link {
  position: relative;
  transition: all 0.3s ease;
  padding-right: 25px;
}

.custom-link::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.custom-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ===== TABLET / MOBILE NAV ===== */
@media (max-width: 991px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 18px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    padding: 0 20px;
  }

  .nav-links.active {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 10px;
    display: none;
    max-height: 60vh !important;
    overflow-y: auto;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .dropdown-menu a {
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .nav-logo {
    width: 90px;
  }
}

/* ===== MOBILE DROPDOWN COLUMN FIX ===== */
@media (max-width: 767px) {

  #nav .dropdown-menu .row > div {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  #nav .dropdown-menu .dropdown-item {
    display: block;
    width: 100%;
  }

  #nav .dropdown-menu {
    width: auto !important;
  }
}

.nav-cta {
    background: #1B17FF;
    color: #fff !important;
    padding: .55rem 1.25rem;
    border-radius: 100px;
    font-size: .75rem !important;
    font-weight: 600 !important;
    transition: all .3s !important;
}

.nav-cta:hover {
    background: #1B17FF;
    color: #fff !important;
    padding: .55rem 1.25rem;
    border-radius: 100px;
    font-size: .75rem !important;
    font-weight: 600 !important;
    transition: all .3s !important;
}