


            :root {
            --primary: #6d3ccf;
            --primary-dark: #4f24a7;
            --primary-soft: #f3edff;
            --gold: #d4af37;
            --gold-soft: #f7ecd0;
            --text: #161616;
            --muted: #6f6b78;
            --white: #ffffff;
            --bg: #fcfbfe;
            --bg-soft: #f8f6fc;
            --border: #e8e1f2;
            --shadow: 0 16px 40px rgba(70, 40, 140, .10);
            --radius: 24px;
            --navH: 86px;
        }

    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
            height: auto;
        }

        a {
            text-decoration: none;
        }
    /* ===== GLOBAL ===== */

  
        /* =========================
       NAVBAR
    ========================= */
        .dm-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, .92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(109, 60, 207, .10);
            transition: .3s ease;
        }

        .dm-navbar.scrolled {
            box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
        }

        .navbar-inner {
            min-height: var(--navH);
        }

        .brand-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .brand-logo {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            box-shadow: 0 10px 22px rgba(109, 60, 207, .18);
            flex-shrink: 0;
        }

        .brand-text {
            line-height: 1.04;
        }

        .brand-text strong {
            display: block;
            font-size: 1rem;
            font-weight: 800;
            color: var(--text);
        }

        .brand-text span {
            display: block;
            font-size: .78rem;
            color: var(--muted);
            font-weight: 500;
        }

        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .desktop-nav .nav-link {
            color: var(--text);
            font-weight: 600;
            font-size: .95rem;
            padding: 0;
            position: relative;
        }

        .desktop-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 2px;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--primary), var(--gold));
            transition: .3s ease;
        }

        .desktop-nav .nav-link:hover::after,
        .desktop-nav .nav-link.active::after {
            width: 100%;
        }

        .desktop-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 22px;
        }

        .top-pill {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 9px 14px;
            border-radius: 999px;
            background: #fff;
            border: 1px solid var(--border);
            color: var(--text);
            font-size: .84rem;
            font-weight: 600;
            white-space: nowrap;
            box-shadow: 0 6px 14px rgba(0, 0, 0, .03);
        }

        .top-pill i {
            color: var(--primary);
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 20px;
            border: none;
            border-radius: 999px;
            color: #fff;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            box-shadow: 0 12px 26px rgba(109, 60, 207, .22);
            transition: .3s ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            color: #fff;
        }

        .mobile-toggle {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            border: 1px solid var(--border);
            background: #fff;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
        }

        /* =========================
       OFFCANVAS
    ========================= */
        .offcanvas.dm-offcanvas {
            width: 310px;
            background: #fff;
            border-right: 1px solid var(--border);
        }

        .dm-offcanvas .offcanvas-header {
            padding: 20px 20px 8px;
        }

        .dm-offcanvas .offcanvas-body {
            padding: 12px 20px 24px;
        }

        .mobile-brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 14px;
        }

        .mobile-menu-links a {
            padding: 12px 14px;
            border: 1px solid var(--border);
            border-radius: 14px;
            color: var(--text);
            font-weight: 600;
            background: #fff;
            transition: .3s ease;
        }

        .mobile-menu-links a:hover {
            background: var(--primary-soft);
            color: var(--primary-dark);
        }

        .mobile-utility {
            display: grid;
            gap: 12px;
            margin-top: 20px;
        }

        /* =========================
       TOGGLE STYLE
    ========================= */
        .toggle-group {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .toggle-label {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border: 1px solid var(--border);
            color: var(--primary);
            flex-shrink: 0;
            box-shadow: 0 6px 16px rgba(109, 60, 207, .05);
        }

        .switch-toggle {
            display: inline-flex;
            align-items: center;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 4px;
            gap: 4px;
            box-shadow: 0 8px 20px rgba(109, 60, 207, .06);
        }

        .toggle-btn {
            border: none;
            background: transparent;
            color: var(--text);
            font-size: .83rem;
            font-weight: 600;
            padding: 9px 14px;
            border-radius: 999px;
            transition: all .3s ease;
            white-space: nowrap;
        }

        .toggle-btn.active {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            box-shadow: 0 10px 22px rgba(109, 60, 207, .18);
        }

        .toggle-btn:hover {
            color: var(--primary-dark);
            background: var(--primary-soft);
        }

        .toggle-btn.active:hover {
            color: #fff;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        }

        .brand-logo-img {
            height: 72px;
            width: auto;
            object-fit: contain;
            display: block;
        }

        .mobile-brand .brand-logo-img {
            height: 58px;
            width: auto;
        }

        @media (max-width: 767.98px) {
            .brand-logo-img {
                height: 62px;
            }

            .mobile-brand .brand-logo-img {
                height: 62px;
            }
        }
        

        a{
          text-decoration: none;
        }










    



/* ============= BLOG LIST STYLES – LIGHT THEME ============= */

.ew-blog-list{
  padding-top: 3rem;
  padding-bottom: 3.5rem;
}

.ew-blog-title{
  color:#111827;
  font-weight:600;
  font-size:1.4rem;
}

.ew-blog-sub{
  color:#4b5563;
  font-size:.9rem;
}

.ew-blog-archive-link{
  font-size:.9rem;
  text-decoration:none;
  color:#3d74ff;                  /* your blue */
  font-weight:500;
}

.ew-blog-archive-link i{
  vertical-align:middle;
}

/* Card */
.ew-blog-card{
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.35);
  box-shadow: 0 14px 35px rgba(15,23,42,.08);
  display:flex;
  flex-direction:column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ew-blog-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(15,23,42,.15);
  border-color: rgba(61,116,255,.7);
}

/* Image wrapper with fixed ratio */
.ew-blog-image-wrap{
  position: relative;
  overflow:hidden;
  background:#e5e7eb;
}

.ew-blog-image{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
  transition: transform .35s ease, opacity .35s ease;
}

.ew-blog-card:hover .ew-blog-image{
  transform: scale(1.06);
  opacity:.97;
}

.ew-blog-body{
  padding: 14px 16px 16px;
}

/* Meta row */
.ew-blog-meta{
  font-size:.78rem;
  color:#6b7280;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin-bottom: 6px;
}

.ew-blog-dot{
  font-size:.6rem;
  opacity:.7;
}

/* Title & text */
.ew-blog-heading{
  font-size:1rem;
  font-weight:600;
  color:#111827;
  margin-bottom:6px;
}

.ew-blog-excerpt{
  font-size:.86rem;
  color:#4b5563;
}

/* View link */
.ew-blog-link{
  font-size:.85rem;
  font-weight:500;
  color:#3d74ff;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
}

.ew-blog-link i{
  font-size:1.1rem;
}

/* Scroll animation base */
.blog-reveal{
  opacity:0;
  transform: translateY(24px);
  transition: opacity .45s ease-out, transform .45s ease-out;
}

.blog-reveal.in-view{
  opacity:1;
  transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 991.98px){
  .ew-blog-image{
    height:200px;
  }
}

@media (max-width: 575.98px){
  .ew-blog-title{
    font-size:1.25rem;
  }
  .ew-blog-card{
    border-radius:14px;
  }
  .ew-blog-body{
    padding:12px 14px 14px;
  }
  .ew-blog-image{
    height:190px;
  }
}  















        /* =========================
       FOOTER
    ========================= */
        .footer {
            background: #121019;
            color: #fff;
            padding: 80px 0 24px;
            overflow: hidden;
        }

        .footer-brand h4 {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, .72);
            line-height: 1.8;
            max-width: 430px;
        }

        .footer-title {
            font-size: 1.03rem;
            font-weight: 800;
            margin-bottom: 18px;
            color: #fff;
        }

        .footer-card {
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 22px;
            padding: 22px;
            height: 100%;
        }

        .footer-card p,
        .footer-card a {
            color: rgba(255, 255, 255, .76);
            line-height: 1.9;
            margin: 0;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, .76);
            font-weight: 500;
        }

        .footer-links a:hover {
            color: #fff;
        }

        .social-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }

        .social-links a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .12);
            color: #fff;
            transition: .3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
            color: #fff;
        }

        .newsletter-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 14px;
        }

        .newsletter-form input {
            flex: 1;
            min-width: 220px;
            height: 50px;
            border: none;
            outline: none;
            border-radius: 14px;
            padding: 0 16px;
            background: #fff;
        }

        .newsletter-form button {
            height: 50px;
            border: none;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            padding: 0 20px;
            font-weight: 700;
        }

        .footer-bottom {
            margin-top: 36px;
            padding-top: 18px;
            border-top: 1px solid rgba(255, 255, 255, .08);
            text-align: center;
            color: rgba(255, 255, 255, .62);
            font-size: .94rem;
        }

        .footer-logo-link{
  display:inline-block;
  margin-bottom:16px;
}

.footer-logo-img{
  max-height:82px;
  width:auto;
  display:block;
  object-fit:contain;
}

@media (max-width: 767.98px){
  .footer-logo-img{
    max-height:62px;
  }
}