    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Outfit', sans-serif;
        color: #1a1a1a !important;
        background-color: #fff;
        /* overflow-x: hidden; */
    }

    .header {
        position: fixed;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        z-index: 1000;
        /* border-bottom: 1px solid rgba(0, 0, 0, 0.05); */
        transition: all 0.3s ease;
        padding-top: 0.4rem;
    }

    .header.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .nav-container {
        width: 100%;
        max-width: 1400px;
        margin: auto;
        padding: 0em 1.8rem 0em 0.8rem;
        /* margin:0.2em; */
        height: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navlogo-container {
        /* max-width: 600px; */
        /* margin: auto; */
        padding: 0 2rem;
        height: 80px;
        gap: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        grid-column-gap: 5rem;
        grid-row-gap: 2rem;
    }

    #lottieHero {
        width: 250px;
        min-width: 160px;
        min-height: 48px;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

    .nav-menu {
        display: flex;
        gap: 2rem;
        align-items: center;
        list-style: none;
    }

    .nav-link {
        position: relative;
        font-size: 1.2em;
        text-decoration: none;
        color: #1a1a1a;
        font-weight: 400;
        padding: 0.5rem 0;
        transition: color 0.3s ease;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        transition: width 0.3s ease;
    }

    .nav-link:hover {
        /* color: #667eea; */
    }

    .nav-link:hover::before {
        width: 100%;
    }

    .dropdown {
        position: relative;

    }

    .dropdown-toggle {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        cursor: pointer;
    }

    .dropdown-menu {
        position: absolute;
        width: max-content;
        top: 100%;
        left: -200px;
        display: none;
        background: white;
        padding: 1rem 1rem;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        min-width: 200px;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
        z-index: 1000;
    }
    .dropdown-toggle::after{
      display: none!important
    }
    .dropdown:hover .dropdown-menu,
    .dropdown-menu:hover {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    /* Click-open dropdown (Industries) – desktop and touch */
    .dropdown.dropdown--click .dropdown-menu {
        display: none;
    }
    .dropdown.dropdown--click.open .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .dropdown.dropdown--click .dropdown-toggle .nv_dd-icon {
        transition: transform 0.3s ease;
    }
    .dropdown.dropdown--click.open .dropdown-toggle .nv_dd-icon {
        transform: rotate(180deg);
    }
    .dropdown.dropdown--click .dropdown-menu {
        left: 0;
        min-width: 240px;
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        padding: 0.5rem 0.8rem;
        color: #1a1a1a;
        text-decoration: none;
        border-radius: 10px;
        font-size: 0.88rem;
        font-weight: 500;
        transition: background 0.2s ease;
        overflow: hidden;
    }
    /* icon box */
    .dd-icon-box {
        width: 32px; height: 32px;
        border-radius: 8px;
        background: #f0f0ff;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
        transition: background 0.2s ease, transform 0.2s ease;
    }
    .dd-icon-box svg {
        width: 15px; height: 15px;
        stroke: #3f2fee;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke 0.2s ease;
    }
    /* slide-up text on hover */
    .dd-label {
        position: relative;
        overflow: hidden;
        display: inline-flex;
        flex-direction: column;
        line-height: 1;
        height: 1.1em;
    }
    .dd-label span {
        display: block;
        transition: transform 0.25s cubic-bezier(.4,0,.2,1), opacity 0.25s ease;
        white-space: nowrap;
    }
    .dd-label .dd-t { transform: translateY(0);    opacity: 1; }
    .dd-label .dd-b { position: absolute; top: 0; left: 0;
                      transform: translateY(110%); opacity: 0; color: #3f2fee; }
    .dropdown-item:hover { background: #f5f5ff; }
    .dropdown-item:hover .dd-icon-box { background: #3f2fee; transform: scale(1.08); }
    .dropdown-item:hover .dd-icon-box svg { stroke: #fff; }
    .dropdown-item:hover .dd-t { transform: translateY(-110%); opacity: 0; }
    .dropdown-item:hover .dd-b { transform: translateY(0);     opacity: 1; }

.service_drop:hover{ text-decoration: none; }
.service_drop{ color:#1A1A1A; }
    .cta-button {
        background: #3f2fee;
        color: #ffffff !important;
        padding: 0.8rem 1.8rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        font-weight: 400;
    }

    .mobile-toggle {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        border: none;
        background: transparent;
        padding: 10px;
        margin: 0;
        flex-shrink: 0;
        line-height: 0;
        -webkit-tap-highlight-color: transparent;
    }

    .hamburger-line {
        display: block;
        width: 26px;
        height: 3px;
        background: #1a1a1a;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .mobile-menu {
        position: fixed;
        top: 137px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-nav {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-nav-link {
        font-size: 1.2rem;
        color: #1a1a1a;
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        transition: color 0.3s ease;
    }

    .mobile-nav-link:hover {
        color: #667eea;
    }
    .mobile-nav-sub-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1rem;
        color: #1a1a1a;
        text-decoration: none;
        padding: 0.75rem 0;
        transition: color 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .mobile-nav-sub-link:last-child {
        border-bottom: none;
    }
    .mobile-nav-sub-link:hover {
        color: #667eea;
    }
    .mobile-nav-sub-link img.mobile-dd-icon {
        width: 22px;
        height: auto;
        flex-shrink: 0;
    }
    .mobile-industry-row {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .mobile-industry-row:last-child {
        border-bottom: none;
    }
    .mobile-industry-title {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 0.35rem;
    }
    .mobile-industry-links {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem 1rem;
        padding-left: 1.75rem;
        font-size: 0.9rem;
    }
    .mobile-industry-links a {
        color: #6b7280;
        text-decoration: none;
    }
    .mobile-industry-links a:hover {
        color: #667eea;
    }
    .mobile-dropdown-trigger {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 1.2rem;
        color: #1a1a1a;
        text-decoration: none;
        border: none;
        background: none;
        cursor: pointer;
        font-family: inherit;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        text-align: left;
    }
    .mobile-dropdown-trigger .mobile-dropdown-arrow {
        width: 14px;
        height: 14px;
        transition: transform 0.3s ease;
    }
    .mobile-dropdown-trigger.open .mobile-dropdown-arrow {
        transform: rotate(180deg);
    }
    .mobile-dropdown-trigger.open {
        outline: 2px solid #667eea;
        outline-offset: 2px;
        border-radius: 4px;
    }
    .mobile-dropdown-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }
    .mobile-dropdown-content.open {
        max-height: 380px;
    }
    .mobile-dropdown-content.mobile-dropdown-content--services.open {
        max-height: 520px;
    }
    .mobile-service-row {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .mobile-service-row:last-child {
        border-bottom: none;
    }
    .mobile-service-row a {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1rem;
        font-weight: 600;
        color: #1a1a1a;
        text-decoration: none;
    }
    .mobile-service-row a:hover {
        color: #667eea;
    }
    .mobile-service-row .mobile-dd-icon {
        width: 22px;
        height: auto;
        flex-shrink: 0;
    }
    .service_dd-banner-wrap {
    background-image: linear-gradient(170deg, #a086fb 10%, #fff 73%);
    border-radius: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 14rem;
    height: 100%;
    padding: 1.25rem;
    display: flex
;
}
.services_banner-title {
    margin-top: 1.25rem;
    margin-bottom: .5rem;
    font-weight: 600;
}
.service_banner-details {
    margin-bottom: auto;
    font-size: .75rem;
}
/* .btn_icon_wrapper{
  display: flex;
    align-items: center;
    width: 100%;
    font-size:12px;
    background-color: blue;
    color:#ffffff;
    padding:2rem;

} */
/* .btn_icon_wrapper img{
  width:100%;
} */
.nv_dd-icon {
    flex: none;
    width: .875rem;
    height: .875rem;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d
}
.service_drop:hover .nv_dd-icon{
  transform: rotate(180deg);
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
    .nav-menu, .menu_contactus {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .header {
        padding-top: 0;
    }

    .nav-container {
        height: 64px;
        padding: 0 1rem;
    }

    .navlogo-container {
        width: 100%;
        padding: 0;
        height: 64px;
        gap: 0;
        grid-column-gap: 0;
    }

    #lottieHero {
        width: 160px;
        min-width: 0;
        min-height: 40px;
    }

    .mobile-menu {
        top: 120px;
        height: calc(100vh - 120px);
    }
}

@media (max-width: 480px) {
    #lottieHero {
        width: 140px;
    }

    .mobile-menu {
        top: 112px;
        height: calc(100vh - 112px);
    }
}
@media (min-width: 992px) {
      .navlogo-container {
      grid-column-gap: 2rem !important;
      grid-row-gap: 2rem !important;
    }  
}

.tm-ticker { background:#000; color:#fff; overflow:hidden; padding:0.75rem 0; width:100%; }
.tm-ticker__track { display:inline-flex; gap:2rem; white-space:nowrap; animation:tm-ticker-scroll 28s linear infinite; }
.tm-ticker:hover .tm-ticker__track { animation-play-state:paused; }
.tm-ticker__item { font-weight:600; font-size:0.9rem; }
.tm-ticker__sep { color:#e5c76b; font-size:0.75rem; }
@keyframes tm-ticker-scroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
    .tm-ticker__track { animation:none; }
    .tm-ticker { overflow:auto; padding:0.5rem 1rem; }
}
