        :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;
        }

        /* .container {
            max-width: 1240px;
        } */

        /* =========================
       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));
        }






























        

        /* =========================
       HERO
    ========================= */
        .hero-section {
            position: relative;
            min-height: 100vh;
            padding-top: calc(var(--navH) + 20px);
            display: flex;
            align-items: center;
            overflow: hidden;
            background:
                radial-gradient(circle at top right, rgba(109, 60, 207, .09), transparent 30%),
                radial-gradient(circle at left bottom, rgba(212, 175, 55, .08), transparent 25%),
                linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
        }

        .hero-shape {
            position: absolute;
            right: -120px;
            top: 10%;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: rgba(109, 60, 207, .10);
            filter: blur(80px);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 70px 0 80px;
            max-width: 720px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border-radius: 999px;
            background: var(--primary-soft);
            color: var(--primary-dark);
            font-size: .9rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-subline {
            color: var(--muted);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .hero-title {
            font-size: clamp(2.2rem, 5vw, 4.7rem);
            line-height: 1.04;
            font-weight: 900;
            letter-spacing: -.04em;
            margin-bottom: 20px;
        }

        .hero-title span {
            background: linear-gradient(135deg, var(--primary-dark), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text {
            color: var(--muted);
            font-size: 1.06rem;
            line-height: 1.9;
            max-width: 670px;
            margin-bottom: 28px;
        }

        .hero-points {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-bottom: 34px;
            max-width: 700px;
        }

        .hero-point {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 14px 16px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 18px;
            box-shadow: var(--shadow);
            color: var(--text);
            font-weight: 600;
            line-height: 1.6;
        }

        .hero-point i {
            color: var(--primary);
            margin-top: 2px;
            flex-shrink: 0;
        }

        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .btn-main {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 24px;
            border-radius: 999px;
            border: none;
            color: #fff;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            box-shadow: 0 14px 30px rgba(109, 60, 207, .22);
            transition: .3s ease;
        }

        .btn-main:hover {
            color: #fff;
            transform: translateY(-3px);
        }

        .btn-outline-custom {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 24px;
            border-radius: 999px;
            border: 1px solid var(--border);
            background: #fff;
            color: var(--text);
            font-weight: 700;
            transition: .3s ease;
            box-shadow: 0 10px 24px rgba(0, 0, 0, .04);
        }

        .btn-outline-custom:hover {
            transform: translateY(-3px);
            color: var(--primary-dark);
            border-color: rgba(109, 60, 207, .35);
        }

        .hero-image-wrap {
            position: relative;
            z-index: 2;
        }

        .hero-image-card {
            position: relative;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 34px;
            padding: 18px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .hero-image-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(109, 60, 207, .04), rgba(212, 175, 55, .03));
            pointer-events: none;
        }

        .hero-image {
            border-radius: 26px;
            overflow: hidden;
            min-height: 540px;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .floating-card {
            position: absolute;
            left: -28px;
            bottom: 36px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 16px 18px;
            box-shadow: var(--shadow);
            max-width: 250px;
        }

        .floating-card small {
            display: block;
            color: var(--muted);
            font-weight: 600;
            margin-bottom: 6px;
        }

        .floating-card strong {
            font-size: 1rem;
            line-height: 1.5;
            display: block;
        }

        /* =========================
       COMMON
    ========================= */
        .section-pad {
            padding: 92px 0;
        }

        .section-light {
            background: #fff;
        }

        .section-soft {
            background: var(--bg-soft);
        }

        .sec-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            background: var(--primary-soft);
            color: var(--primary-dark);
            font-weight: 700;
            font-size: .86rem;
            margin-bottom: 16px;
        }

        .sec-title {
            font-size: clamp(1.9rem, 3.8vw, 3rem);
            font-weight: 800;
            line-height: 1.14;
            letter-spacing: -.02em;
            margin-bottom: 16px;
        }

        .sec-desc {
            color: var(--muted);
            font-size: 1.03rem;
            line-height: 1.9;
            max-width: 760px;
        }

        .title-wrap {
            margin-bottom: 50px;
        }

        .content-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 28px;
            padding: 34px;
            box-shadow: var(--shadow);
            height: 100%;
        }

        .content-img {
            border-radius: 28px;
            overflow: hidden;
            min-height: 420px;
            height: 100%;
            box-shadow: var(--shadow);
        }

        .content-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .highlight-box {
            margin-top: 24px;
            background: linear-gradient(180deg, #fff, #faf6ff);
            border-left: 4px solid var(--primary);
            border-radius: 18px;
            padding: 20px 20px 20px 16px;
        }

        .highlight-box p {
            margin: 0;
            font-weight: 600;
            line-height: 1.8;
            color: var(--text);
        }

        .custom-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 12px;
        }

        .custom-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: var(--muted);
            line-height: 1.8;
            font-weight: 500;
        }

        .custom-list i {
            color: var(--primary);
            margin-top: 5px;
            flex-shrink: 0;
        }

        /* =========================
       EXPERTISE CARDS
    ========================= */
        .expertise-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 28px 24px;
            height: 100%;
            box-shadow: var(--shadow);
            transition: .35s ease;
        }

        .expertise-card:hover {
            transform: translateY(-8px);
            border-color: rgba(109, 60, 207, .26);
        }

        .expertise-icon {
            width: 64px;
            height: 64px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-soft), #fff);
            color: var(--primary-dark);
            font-size: 1.55rem;
            margin-bottom: 18px;
            box-shadow: 0 10px 24px rgba(109, 60, 207, .10);
        }

        .expertise-card h4 {
            font-size: 1.18rem;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .expertise-card p {
            margin: 0;
            color: var(--muted);
            line-height: 1.8;
        }

        /* =========================
       DISTINCT SECTION
    ========================= */
        .distinct-box {
            background: linear-gradient(135deg, #fff, #faf7ff);
            border: 1px solid var(--border);
            border-radius: 32px;
            padding: 42px 34px;
            box-shadow: var(--shadow);
        }

        .statement-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 22px;
            height: 100%;
            box-shadow: 0 12px 28px rgba(0, 0, 0, .04);
        }

        .statement-card strong {
            display: block;
            font-size: 1rem;
            margin-bottom: 8px;
            color: var(--text);
        }

        .statement-card p {
            margin: 0;
            color: var(--muted);
            line-height: 1.8;
        }

        /* =========================
       MANIFESTO
    ========================= */
        .manifesto-section {
            position: relative;
            background:
                radial-gradient(circle at top right, rgba(109, 60, 207, .10), transparent 24%),
                linear-gradient(135deg, #1a1329, #21153b 60%, #29184a 100%);
            color: #fff;
            overflow: hidden;
        }

        .manifesto-card {
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .10);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 38px 30px;
        }

        .manifesto-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .10);
            color: #fff;
            font-weight: 700;
            font-size: .86rem;
            margin-bottom: 16px;
        }

        .manifesto-title {
            font-size: clamp(1.9rem, 3.8vw, 3rem);
            font-weight: 800;
            line-height: 1.14;
            margin-bottom: 18px;
        }

        .manifesto-list {
            display: grid;
            gap: 14px;
            margin-top: 20px;
        }

        .manifesto-list .item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: rgba(255, 255, 255, .86);
            line-height: 1.8;
            font-weight: 500;
        }

        .manifesto-list i {
            color: var(--gold);
            margin-top: 5px;
            flex-shrink: 0;
        }

        /* =========================
       MISSION / VISION
    ========================= */
        .mini-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 30px 24px;
            height: 100%;
            box-shadow: var(--shadow);
        }

        .mini-card h4 {
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 14px;
        }

        .mini-card p {
            color: var(--muted);
            line-height: 1.9;
            margin: 0;
        }

        /* =========================
       TAGLINE STRIP
    ========================= */
        .tagline-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 16px;
        }

        .tagline-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 20px 18px;
            box-shadow: var(--shadow);
            text-align: center;
            font-weight: 700;
            color: var(--text);
            line-height: 1.6;
            height: 100%;
        }

        /* =========================
       CTA
    ========================= */
        .cta-band {
            background: linear-gradient(135deg, #f8f4ff, #ffffff);
            border: 1px solid var(--border);
            border-radius: 32px;
            padding: 40px 34px;
            box-shadow: var(--shadow);
        }

        .cta-band h3 {
            font-size: clamp(1.7rem, 3vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 12px;
        }

        .cta-band p {
            color: var(--muted);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        /* =========================
       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;
  }
}







        /* =========================
       REVEAL
    ========================= */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all .8s ease;
            will-change: transform, opacity;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* =========================
       RESPONSIVE
    ========================= */
        @media (max-width:1199.98px) {
            .desktop-nav {
                gap: 18px;
            }

            .desktop-actions {
                margin-left: 16px;
                gap: 8px;
            }

            .top-pill {
                font-size: .8rem;
                padding: 8px 12px;
            }

            .toggle-btn {
                padding: 8px 11px;
                font-size: .79rem;
            }
        }

        @media (max-width:991.98px) {
            :root {
                --navH: 78px;
            }

            .hero-section {
                min-height: auto;
            }

            .hero-content {
                padding: 56px 0 42px;
            }

            .hero-image {
                min-height: 420px;
            }

            .floating-card {
                left: 14px;
                bottom: 14px;
                max-width: 220px;
            }

            .section-pad {
                padding: 76px 0;
            }

            .content-img {
                min-height: 320px;
                margin-top: 20px;
            }

            .tagline-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width:767.98px) {
            .brand-logo {
                width: 46px;
                height: 46px;
                font-size: 1.08rem;
            }

            .brand-text strong {
                font-size: .92rem;
            }

            .brand-text span {
                font-size: .72rem;
            }

            .hero-title {
                font-size: 2.35rem;
            }

            .hero-text {
                font-size: 1rem;
            }

            .hero-points {
                grid-template-columns: 1fr;
            }

            .hero-btns {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-main,
            .btn-outline-custom {
                width: 100%;
            }

            .hero-image {
                min-height: 360px;
            }

            .floating-card {
                position: static;
                margin-top: 14px;
                max-width: 100%;
            }

            .section-pad {
                padding: 64px 0;
            }

            .content-card,
            .distinct-box,
            .manifesto-card,
            .cta-band {
                padding: 24px 20px;
            }

            .expertise-card,
            .mini-card,
            .statement-card {
                padding: 24px 20px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input,
            .newsletter-form button {
                width: 100%;
            }

            .toggle-group {
                width: 100%;
                justify-content: space-between;
            }

            .switch-toggle {
                flex: 1;
                justify-content: space-between;
            }

            .toggle-btn {
                flex: 1;
                text-align: center;
            }

            .footer {
                padding: 64px 0 24px;
            }
        }

        @media (max-width:575.98px) {
            .tagline-grid {
                grid-template-columns: 1fr;
            }
        }

        .distinct-image {
            position: relative;
        }

        .distinct-image img {
            width: 100%;
            border-radius: 22px;
            object-fit: cover;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
            transition: transform .4s ease;
        }

        .distinct-image img:hover {
            transform: scale(1.03);
        }

        .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;
            }
        }