    /* @font-face {
        font-family: "Atmospheric";
        src: url("/themes/shriram/fonts/aAtmospheric.ttf") format("truetype");
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    } */

    @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

    :root {
        --navy: #0a1a30;
        --navy-deep: #061222;
        --gold: #c39a5b;
        --gold-soft: #caa363;
        --blue: #1a82c4;
        --magenta: #e2098a;
        --band: #1379a9;
        --footer: #1379a9;
        --ink: #1f2a37;
        --muted: #6b7785;
        --card-radius: 14px;
        --maxw: 1200px;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box
    }

    html {
        scroll-behavior: smooth
    }

    body {
        /* font-family: "Poppins", system-ui, sans-serif; */
        color: var(--ink);
        background: #fff;
        line-height: 1.5;
        overflow-x: hidden
    }

    img {
        display: block;
        max-width: 100%
    }

    a {
        text-decoration: none;
        color: inherit
    }

    .wrap {
        width: 100%;
        max-width: var(--maxw);
        margin: 0 auto;
        padding: 0 24px
    }

    /* ============ HEADER ============ */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 50;
        background: #fff;
        border-bottom: 1px solid #eef0f2
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 74px
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px
    }

    .logo svg {
        flex: none
    }

    .logo-text {
        line-height: 1
    }

    .logo-text .brand {
        font-weight: 700;
        font-size: 20px;
        color: #0e63b3;
        letter-spacing: .2px
    }

    .logo-text .brand span {
        color: #3f5872
    }

    .logo-text .tag {
        font-size: 9px;
        color: #7b8aa0;
        font-style: italic;
        margin-top: 2px
    }

    .nav {
        display: flex;
        align-items: center;
        gap: 30px
    }

    .nav a.navlink {
        font-size: 13px;
        font-weight: 500;
        letter-spacing: .4px;
        color: #374151
    }

    .nav a.navlink:hover {
        color: var(--blue)
    }

    .search {
        display: flex;
        align-items: center;
        border: 1px solid #d7dce2;
        border-radius: 6px;
        padding: 6px 10px;
        gap: 8px;
        width: 150px
    }

    .search input {
        border: 0;
        outline: 0;
        font-size: 12px;
        width: 100%;
        font-family: inherit;
        color: #374151
    }

    .search svg {
        flex: none;
        color: #9aa4b0
    }

    .burger {
        background: none;
        border: 0;
        cursor: pointer;
        color: #1f2a37;
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 4px
    }

    .burger span {
        width: 24px;
        height: 2px;
        background: currentColor;
        border-radius: 2px
    }

    /* ============ HERO ============ */
    .hero {
        position: relative;
        background: var(--navy-deep) url("/themes/shriram/images/hero-bg-image.webp") top center/cover no-repeat;
        color: #fff;
        padding: 70px 0 80px
    }

    .hero-logo {
        width: auto;
        margin: 0 auto 22px;
        display: block
    }

    .hero-intro {
        max-width: 580px
    }

    .hero-head {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: left
    }

    .hero h1 {
        font-size: 46px;
        font-weight: 500;
        line-height: 1.18;
        max-width: 560px;
        text-align: center;
    }

    .hero .pill-outline {
        margin-top: 26px;
        display: inline-block;
        border: 1px solid rgba(255, 255, 255, .55);
        border-radius: 30px;
        padding: 11px 24px;
        font-size: 14px;
        font-weight: 400;
        color: #eaf0f6
    }

    .divider-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        margin: 64px auto 38px;
        max-width: 760px
    }

    .divider-title .line {
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold))
    }

    .divider-title .line.r {
        background: linear-gradient(90deg, var(--gold), transparent)
    }

    .divider-title h2 {
        font-size: 26px;
        font-weight: 600;
        white-space: nowrap
    }

    .divider-title h2 .g {
        color: var(--gold)
    }

    /* Advantage carousel */
    .adv-carousel {
        display: flex;
        align-items: center;
        gap: 18px;
        justify-content: center
    }

    .nav-arrow {
        /* flex: none;
      width: 42px;
      height: 42px;
      border-radius: 50%; */
        border: none;
        background: transparent;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        /* transition: .2s */
    }

    .nav-arrow img {
        width: 35px;
        opacity: .85
    }

    .nav-arrow.next img {
        transform: scaleX(-1)
    }

    .nav-arrow:hover {
        background: transparent;
    }

    .adv-swiper {
        flex: 1;
        max-width: 960px;
        overflow: hidden;
        padding-bottom: 4px
    }

    .adv-card {
        background: #fff;
        border-radius: var(--card-radius);
        padding: 34px 26px 30px;
        text-align: center;
        color: var(--ink);
        min-height: 215px;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto
    }

    .adv-card img.ico {
        width: 62px;
        height: 62px;
        margin-bottom: 18px
    }

    .adv-card h3 {
        font-size: 14px;
        font-weight: 700;
        letter-spacing: .4px;
        text-transform: uppercase;
        color: #1c2b3a;
        margin-bottom: 14px;
        line-height: 1.3
    }

    .adv-card p {
        font-size: 12.5px;
        color: #6a7888;
        line-height: 1.55
    }

    /* ============ APP SECTION ============ */
    .app {
        position: relative;
        background: #f1e7d8 url("/themes/shriram/synergy-assets/background-1.webp") center/cover no-repeat;
        padding: 66px 0
    }

    .app-grid {
        display: grid;
        grid-template-columns: 1fr .9fr;
        gap: 30px;
        align-items: center
    }

    .app .kicker {
        font-family: "Orbitron", sans-serif;
        color: var(--blue);
        font-weight: 700;
        font-size: 18px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .app .title {
        font-family: "Orbitron", sans-serif;
        color: var(--magenta);
        font-weight: 600;
        font-size: 35px;
        line-height: 1;
        letter-spacing: .5px;
        margin: 6px 0 14px
    }

    .app .sub {
        font-size: 13px;
        color: #3a4654;
        margin-bottom: 20px
    }

    .exp-btn {
        display: inline-block;
        font-family: "Orbitron", sans-serif;
        background: linear-gradient(180deg, #ffffff 0%, #e7f0f8 100%);
        border: 1px solid #dbe6ef;
        border-radius: 30px;
        padding: 12px 30px;
        font-size: 13px;
        font-weight: 700;
        color: var(--blue);
        letter-spacing: 1px;
        box-shadow: 0 6px 15px rgba(20, 90, 140, .18), inset 0 1px 0 #ffffff
    }

    .store-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        margin: 26px 0 18px;
        flex-wrap: wrap
    }

    .qr {
        width: 74px;
        height: 74px;
        /* background: #fff; */
        padding: 5px;
        /* border: 1px solid #e3dccd */
    }

    .qr img {
        width: 100%;
        height: 100%
    }

    .store-badge {
        height: 48px;
        border-radius: 7px;
        background: #000;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0 20px;
        border: 1px solid #000;
        min-width: 160px
    }

    .store-badge svg {
        flex: none
    }

    .store-badge>span {
        display: flex;
        flex-direction: column;
        justify-content: center
    }

    .store-badge .b-small {
        font-size: 9px;
        line-height: 1.25;
        opacity: .9
    }

    .store-badge .b-big {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.15
    }

    .app .compat {
        font-size: 13px;
        color: black;
        /* max-width: 430px; */
        line-height: 1.6;
        text-align: center;
        margin-top: 25px;
    }

    .app .compat a {
        color: var(--blue)
    }

    .tap-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        /* max-width: 520px; */
        margin: 30px 0 22px
    }

    .tap-title .line {
        flex: 1;
        height: 1px;
        background: var(--gold)
    }

    .tap-title h3 {
        font-size: 20px;
        font-weight: 600;
        color: #2a3a49;
        white-space: nowrap;
        margin-bottom: 15px;
    }

    .app-icons {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px 14px;
        /* max-width: 520px; */
    }

    .app-icon {
        text-align: center
    }

    .app-icon img {
        width: 52px;
        height: 52px;
        margin: 0 auto 10px
    }

    .app-icon span {
        display: block;
        font-size: 11px;
        font-weight: 600;
        color: #3a4654;
        text-transform: uppercase;
        letter-spacing: .3px;
        line-height: 1.35
    }

    .bug-note {
        font-size: 11.5px;
        color: black;
        margin-top: 24px
    }

    .bug-note a {
        color: var(--gold-soft)
    }

    .phone {
        justify-self: center
    }

    .phone img {
        width: 100%;
        max-width: 430px
    }

    @media(min-width:993px) {
        .app {
            position: relative;
            overflow: hidden
        }

        .phone {
            min-height: 560px
        }

        .phone img {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: auto;
            max-width: none;
            height: clamp(490px, 46vw, 640px)
        }
    }

    /* ============ REGISTER BAND ============ */
    .band {
        background: var(--band);
        color: #fff;
        text-align: center;
        padding: 20px 0;
    }

    .band .reg-btn {
        display: inline-block;
        background: #fff;
        color: #15455f;
        border-radius: 30px;
        padding: 7px 20px;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: .5px;
        margin-bottom: 14px
    }

    .band p {
        font-size: 18px;
        color: #eaf4f9;
        font-weight: lighter;
    }

    .band .note {
        font-size: 13px;
        font-style: italic;
        color: #c3c3c3;
        margin-top: 6px;
    }

    /* ============ RECENT MEET ============ */
    .meet {
        padding: 0px 0 30px;
        text-align: center
    }

    .meet-swiper {
        overflow: hidden;
        padding: 8px 4px 10px
    }

    .meet-card {
        background: #fff;
        border: 1px solid #ececec;
        border-radius: 12px;
        padding: 14px 14px 22px;
        box-shadow: 0 6px 22px rgba(0, 0, 0, .05);
        height: auto
    }

    .meet-thumb {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        aspect-ratio: 1/1;
        background: #e9edf1
    }

    .meet-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .eye-link {
        position: absolute;
        right: 10px;
        bottom: 10px;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        box-shadow: 0 3px 8px rgba(0, 0, 0, .25)
    }

    .meet .divider-title h2 {
        font-weight: 400;
        color: #3d3d3d
    }

    .meet-card h4 {
        font-size: 15px;
        font-weight: 400;
        color: #3d3d3d;
        margin-top: 16px;
        line-height: 1.4
    }

    .view-all {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--band);
        color: #fff;
        border-radius: 30px;
        padding: 11px 26px;
        font-size: 13px;
        font-weight: 600;
        margin-top: 34px
    }

    .view-all svg {
        flex: none
    }

    /* ============ FOOTER ============ */
    .footer {
        background: var(--footer);
        color: #eaf4f9;
        padding: 48px 0 0
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 30px;
        padding-bottom: 40px
    }

    .footer h5 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #fff
    }

    .footer-links {
        display: flex;
        gap: 60px
    }

    .footer-links ul {
        list-style: none
    }

    .footer-links li {
        margin-bottom: 13px
    }

    .footer-links a {
        font-size: 13px;
        color: #dbeaf3
    }

    .footer-links a:hover {
        color: #fff;
        text-decoration: underline
    }

    .cities li {
        margin-bottom: 13px;
        font-size: 13px;
        color: #dbeaf3
    }

    .connect-col {
        position: relative
    }

    .socials {
        display: flex;
        gap: 12px
    }

    .socials a {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, .5);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: .2s
    }

    .socials a:hover {
        background: #fff;
        color: var(--footer)
    }

    .gptw {
        position: absolute;
        right: 0;
        top: -6px;
        width: 96px
    }

    .gptw img {
        width: 100%;
        border-radius: 4px
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, .18);
        padding: 18px 0;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px
    }

    .footer-bottom .legal {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        font-size: 11.5px;
        color: #cfe6f1
    }

    .footer-bottom .legal span {
        opacity: .5
    }

    .footer-bottom .copy {
        font-size: 11.5px;
        color: #cfe6f1
    }

    .app-content {
        text-align: center;
    }

    #registerCustomerModal .modal-dialog {
        max-width: none !important;
        width: 50%;
    }

    #terms-condition-popup.modal.show {
        overflow-y: auto;

    }

    /* New design changes */

    .band .wrap.custom-wrap .reg-btn {
        display: inline-block;
        background: #fff;
        color: #15455f;
        border-radius: 30px;
        padding: 5px 20px;
        font-size: 13px;
        font-weight: 600;
        /* letter-spacing: .5px; */
        margin-bottom: 0px;
    }

    .band .wrap.custom-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .band .wrap.custom-wrap p {
        font-size: 16px;
        color: #eaf4f9;
        font-weight: lighter;
        width: 50%;
    }

    .wrap.custom-wrap .register_customer_button {
        width: 50%;
        margin: auto;
        /* display: block; */
    }

    .band .wrap.custom-wrap .note {
        font-size: 12px;
        font-style: italic;
        color: #c3c3c3;
        margin-top: 6px;
        display: block;
        width: 100%;
    }

    /* ============ RESPONSIVE ============ */
    @media(max-width:992px) {
        .hero h1 {
            font-size: 38px
        }

        .app-grid {
            grid-template-columns: 1fr;
            gap: 46px
        }

        .phone {
            order: 1
        }

        .app-icons {
            max-width: 560px
        }

        .tap-title {
            align-items: center;
            text-align: center
        }

        .tap-title .line {
            align-self: center
        }

        #registerCustomerModal .modal-dialog {
            max-width: none !important;
            width: 100%;
        }
    }

    @media(max-width:768px) {
        .band .wrap.custom-wrap {
            flex-wrap: wrap;
        }

        .wrap.custom-wrap .register_customer_button {
            width: 100%;
            margin: 25px auto;
        }

        .band .wrap.custom-wrap p {
            font-size: 14px;
            width: 100%;
        }

        .band p {
            font-size: 14px;
        }

        .hero .pill-outline {
            text-align: center;
        }

        .nav .navlink,
        .search {
            display: none
        }

        .hero {
            padding: 50px 0 60px
        }

        .hero h1 {
            font-size: 30px
        }

        .divider-title h2 {
            font-size: 20px
        }

        .divider-title {
            gap: 10px;
            margin-top: 48px
        }

        .nav-arrow {
            display: none
        }

        .app .title {
            font-size: 32px;
            line-height: 1.25
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 34px
        }

        .gptw {
            position: static;
            margin-top: 18px
        }

        .footer-links {
            gap: 34px
        }

        .qr {
            display: none;
            opacity: 0;
            visibility: hidden;
        }

        .refer-friends {
            margin-top: 0;
            margin-bottom: 25px;
        }

        .adv-carousel {
            flex-wrap: wrap;
            gap: 14px
        }

        .adv-swiper {
            order: -1;
            flex: 1 1 100%;
            max-width: 100%
        }

        .nav-arrow {
            display: flex
        }
    }

    @media(max-width:560px) {
        .wrap {
            padding: 0 18px
        }

        .hero h1 {
            font-size: 26px
        }

        .app-icons {
            grid-template-columns: repeat(2, 1fr);
            gap: 26px 10px
        }

        .footer-grid {
            grid-template-columns: 1fr
        }

        .footer-links {
            gap: 50px
        }

        .footer-bottom {
            flex-direction: column
        }

        .store-row {
            justify-content: center
        }
    }