/*
Theme Name: NexPlay Media Custom Theme
Theme URI: #
Author: NPM
Author URI: #
Description: Custom professional WordPress theme.
Version: 1.0
Text Domain: our-custom-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {

    --mint: #3ECFB2;
    --mint-pale: #E8FBF7;
    --blue: #4BBFE8;
    --ink: #0D1F1C;
    --ink-soft: #2A3E3A;
    --muted: #6B8A85;
    --border: rgba(62, 207, 178, 0.2);
    --white: #FAFFFE;
    --gradient: linear-gradient(135deg, #3ECFB2 0%, #4BBFE8 100%);
    --gradient-soft: linear-gradient(135deg, #E8FBF7 0%, #EAF7FD 100%);


    --site-bg: #ffffff;
    --site-text: var(--ink);
    --header-bg: #fff;
    --header-text: var(--ink-soft);
    --bg-color-2: #e8f9f9;
    --bg-color-2-text: var(--ink);
    --site-headings: var(--ink);
    ;
    --primary-color: var(--mint);
    --primary-color-hover: #000;
    --button-bg-color: var(--mint);
    --button-text-color: #fff;
    --button-bg-color-hover: #000;
    --button-text-color-hover: #fff;
    --footer-bg: #0D1F1C;
    --footer-text: #697372;
    --container-width: 1746px;
    --primary-font: "Plus Jakarta Sans", sans-serif;
    --wpforms-label-color: var(--site-text);
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: normal;
    font-family: var(--primary-font);
    color: var(--site-text);
    background: var(--site-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px;
    letter-spacing: 0;
    padding: 0;
    text-transform: inherit;
    font-weight: bold;
}

h1 {
    font-size: 2.3rem;
    line-height: normal;
    margin-top: 0;
    font-weight: 900;
}

h2 {
    font-size: 1.8rem;
    line-height: normal;
    font-weight: 800;
}

h3 {
    font-size: 1.5rem;
    line-height: normal;
    font-weight: 800;
}

h4 {
    font-size: 1.2rem;
    line-height: normal;
}

h5 {
    font-size: 18px;
    line-height: normal;
}

h6 {
    font-size: 16px;
    line-height: normal;
}

p {
    margin: 0 0 16px;
    padding: 0;
}

p:empty {
    margin: 0;
}

ol,
ul {
    box-sizing: border-box;
    padding-left: 30px;
    margin-top: 24px;
    margin-bottom: 24px;
}

ol li {
    list-style: decimal;
}

ul li {
    list-style: disc;
}

li {
    margin-bottom: 8px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: var(--primary-color-hover);
}

strong,
b {
    font-weight: bold;
}

img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    display: block;
    margin: auto;
}

.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.container-small {
    max-width: 1100px;
}

div.su-note {
    border: none !important;
}

div.su-note-inner {
    background-color: var(--bg-color-2) !important;
    color: var(--bg-color-2-text) !important;
    border-color: transparent !important;
    border-color: rgb(255 255 255 / 10%) !important;
    border-radius: 12px !important;
    --site-headings: var(--bg-color-2-text);
}

.body-content {
    font-size: 18px;
    line-height: 30px;
    padding: 0;
}

.body-content .wp-block-image {
    margin-bottom: 16px;
}

.body-content table,
.body-content .wp-block-table table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
    table-layout: inherit;
}

.body-content .wp-block-table thead {
    border: none;
}

.body-content td,
.body-content th {
    border: 1px solid var(--site-text);
    padding: 8px;
    font-size: 16px;
    line-height: 26px;
    color: var(--site-text);
    text-align: left;
}

.body-content th {
    font-weight: bold;
}

div.su-table table {
    border: none !important;
}

div.su-table table th,
div.su-table table td {
    background: transparent !important;
    padding: 8px !important;
    border: 1px solid var(--site-text) !important;
    color: var(--site-text) !important;
    text-align: left !important;
    font-size: 16px;
    line-height: 26px
}

div.su-table-alternate table tr:nth-child(even) td {
    background: transparent !important;
}

.body-content dl {
    margin: 20px 0;
    padding: 0;
    font-family: Arial, sans-serif;
    border: 1px solid #000;
    border-radius: 5px;
    background-color: var(--site-bg);
    color: #000;
    font-size: 16px;
}

.body-content dt {
    font-weight: bold;
    margin: 10px 0 5px;
    padding: 10px;
    background-color: var(--site-bg);
    border-bottom: 1px solid #000;
    color: #000;
}

.body-content dd {
    margin: 0 0 10px 20px;
    padding: 10px;
    border-left: 2px solid #000;
    background-color: #e8e4e4;
    color: #000;
}

.body-content blockquote {
    padding: 80px 40px;
    background: var(--bg-color-2);
    color: var(--bg-color-2-text);
    position: relative;
    margin: 24px auto;
    font-style: italic;
    quotes: "“" "”" "‘" "’";
    text-align: inherit;
    border-radius: 24px;
}

.body-content blockquote::before,
.body-content blockquote::after {
    position: absolute;
    font-size: 6em;
    color: var(--mint);
    font-family: sans-serif;
    line-height: 1;
    z-index: 1;
}

.body-content blockquote::before {
    content: open-quote;
    top: 20px;
    left: 20px;
}

.body-content blockquote::after {
    content: close-quote;
    bottom: -30px;
    right: 30px;
}

.body-content blockquote h4,
.body-content blockquote h5,
.body-content blockquote h6 {
    line-height: 1.5;
}

.body-content blockquote p {
    display: inline;
    position: relative;
    z-index: 2;
}

a.su-button {
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: var(--button-bg-color) !important;
    color: var(--button-text-color) !important;
    border: none !important;
    outline: none !important;
    opacity: 1;
}

a.su-button span {
    font-size: 16px !important;
    padding: 10px 20px !important;
    line-height: 26px !important;
    color: var(--button-text-color) !important;
    border: none;
    outline: none;
}

a.su-button:hover {
    background-color: var(--button-bg-color-hover) !important;
    color: var(--button-text-color-hover) !important;
    opacity: 1;
}

.btn,
a.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--button-bg-color);
    color: var(--button-text-color);
    border-radius: 5px;
    font-size: 16px;
    line-height: 26px;
    text-decoration: none;
    border: none;
    outline: none;
}

.btn:hover,
a.btn:hover {
    background-color: var(--button-bg-color-hover);
    color: var(--button-text-color-hover);
}

hr,
hr.wp-block-separator {
    border-top: 1px solid;
    margin: 24px 0;
    border-color: #cbc9c9;
}

main.site-main {
    padding: 60px 0;
}

.sec-pad {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* HEADER START */
.site-header {
    background: var(--header-bg);
    color: var(--header-text);
    padding: 1.2rem 0;
    z-index: 999;
    transition: all 0.35s ease;
    width: 100%;
    background: rgba(250, 255, 254, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

body.admin-bar .site-header {
    top: var(--wp-admin--admin-bar--height);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-branding {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    width: 100%;
}

.header-branding-title {
    margin: 0;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.03em;
    word-break: break-all;
}

.header-branding-title a {
    text-decoration: none;
    color: var(--ink);
    outline: none;
}

.header-branding-title span {
    color: var(--mint);
    margin-left: 0.35rem;
    display: inline-block;
}

.header-branding-favicon,
.header-branding-favicon a {
    line-height: 0;
}

.header-branding-favicon img {
    width: 30px;
    min-width: 30px;
    max-width: 100%;
    height: auto;
}

.header-branding-tagline {
    font-size: 0.75rem;
    line-height: 1rem;
    color: var(--ink);
    font-weight: normal;
}

ul.nav-menu-new.wp-menu {
    padding: 0 0 0 15px;
    margin: 0;
    float: inherit;
    background: inherit;
}

ul.nav-menu-new .menu-item-has-children>a::after {
    content: "\f078";
    font-family: "FontAwesome";
    margin-left: 5px;
    position: absolute;
    top: 0px;
    right: -14px;
    font-size: 10px;
}

/* Hide arrow for nested submenu items */
ul.nav-menu-new .sub-menu .menu-item-has-children>a::after {
    display: block;
    right: -10px;
}

span>.fa-angle-down {
    display: none;
}

.navigationcl {
    position: relative;
    left: auto;
    padding-top: 0;
    display: inline-block;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.header-rightbar {
    min-width: max-content;
    margin-left: auto;
}

.nav-menu-new a {
    display: block;
    position: relative;
    margin: 0;
    height: auto;
    line-height: 22px;
    color: var(--header-text);
    overflow: visible;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.sub-menu li a {
    line-height: 24px;
    margin: 0;
    color: #000;
}

.sub-menu li a:hover {
    color: var(--primary-color);
}

nav.navigationcl li {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 4px 1.25rem;
}

nav.navigationcl li.menu-item-has-children {
    padding-right: 16px;
}

nav.navigationcl .sub-menu li.menu-item-has-children {
    padding-right: 26px;
}

nav.navigationcl .nav-menu-new>li:last-child {
    margin-right: 0;
}

nav.navigationcl .nav-menu-new>li:last-child .sub-menu {
    left: auto;
    right: -10px;
}

nav.navigationcl .nav-menu-new>li:last-child .sub-menu .sub-menu {
    left: -100%;
    right: auto;
}

nav.navigationcl .sub-menu li {
    margin-left: 0;
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.nav-select {
    display: inline-block;
    visibility: visible;
    width: 100%;
    text-align: right;
}

.with-header-button .nav-select {
    text-align: center;
}

nav.navigationcl li.menu-item-has-children:hover>a,
nav.navigationcl li.menu-item-has-children:hover>a:after {
    color: var(--primary-color);
}

nav.navigationcl li.current-menu-item>a,
nav.navigationcl li.current-menu-item>a:after,
.nav-menu-new a:hover,
.nav-menu-new a:focus {
    color: var(--primary-color);
}

.navbar-togglecl {
    display: none;
}

.sub-menu {
    display: none;
    position: absolute;
    left: 0;
    background: #fff;
    width: 180px;
    text-align: left;
    padding: 6px 0;
    margin: 6px 0 0;
    box-shadow: 0 0 6px #ddd;
    top: 24px;
    word-break: break-word;
    z-index: 999;
}

.sub-menu li {
    width: 100%;
}

.sub-menu .sub-menu {
    left: auto;
    right: 100%;
    top: -10px;
}

.nav-select .sub-menu>li>.sub-menu {
    display: none;
    position: absolute;
}

/* HEADER END */


/*BEFORE FOOTER START*/
.rank-cta-web {
    background: var(--ink);
    padding: 5rem 0;
    text-align: center;
}

.rank-cta-web .rank-cta-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: white;
    margin-bottom: 1rem;
}

.rank-cta-web .rank-cta-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rank-cta-content,
.rank-cta-content p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1rem;
    font-weight: 300;
}

.rank-cta-content p:last-child {
    margin-bottom: 0;
}

.rank-cta-content p a {
    color: var(--primary-color);
    font-weight: 500;
}

/*BEFORE FOOTER END*/

/* FOOTER START */
footer.site-footer {
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.8rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.site-footer-inr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

a.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.05rem;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.footer-logo-icon {
    line-height: 0;
}

.footer-logo-icon img {
    min-width: 26px;
    max-width: 26px;
    height: auto;
    object-fit: contain;
}

.footer-logo-text span {
    color: var(--mint);
    margin-left: 0.35rem;
    display: inline-block;
}

.footer-menu ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem 2rem;
    list-style: none;
}

.footer-menu li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-menu li a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.38);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-menu li a:hover {
    color: var(--mint);
}

.footer-copyright p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.22);
    margin: 0;
}

/* FOOTER END */

.page-content-outer {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.page-content-outer .page-content {
    width: 100%;
}

/* CONTACT FORM START*/
.wpcf7-form {
    width: 100%;
    margin: 0 auto;
    font-family: var(--primary-font);
}
.wpcf7-form .wpcf7-form-control-wrap {
    margin-bottom: 16px;
    display: block;
    width: 100%;
}
.wpcf7-form label {
    font-weight: bold;
    font-size: 16px;
}
.wpcf7-form input,
.wpcf7-form textarea {
    margin: 8px 0 0;
    border-radius: 12px;
    padding: 12px 16px;
    width: 100%;
    background: transparent;
    color: var(--site-text);
    outline: none;
    font-size: 16px;
    line-height: 28px;
    font-family: var(--primary-font);
    border: 1px solid #eee7dc;
}
.wpcf7-form textarea {
    height: 150px;
}

.wpcf7-form input[type="submit"] {
    width: 100%;
    background: var(--button-bg-color);
    color: var(--button-text-color);
    font-size: 17px;
    border: none;
    font-family: var(--primary-font);
    margin: 0;
    font-weight: bold;
}

.wpcf7-form input[type="submit"]:hover {
    background: var(--button-bg-color-hover);
    color: var(--button-text-color-hover);
}

.wpcf7-form input::-webkit-input-placeholder,
.wpcf7-form textarea::-webkit-input-placeholder,
.wpcf7-form input::-moz-placeholder,
.wpcf7-form input:-ms-input-placeholder,
.wpcf7-form input::placeholder {
    color: #817B73;
    opacity: 1;
}
.wpcf7-form p {
    margin: 0;
}
form.wpcf7-form .wpcf7-response-output {
    margin: 10px 0 0;
}
/* CONTACT FORM END*/

/* DEFAULT PAGE/POST START*/
.disclosure-cont {
    background: var(--bg-color-2);
    padding: 10px;
    font-size: 14px;
    margin: 0 0 16px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 22px;
    color: var(--bg-color-2-text);
    --site-headings: var(--bg-color-2-text);
}

.disclosure-cont p {
    font-size: 14px;
    line-height: 22px;
    color: var(--bg-color-2-text);
    margin: 0 0 10px;
}

.disclosure-cont p:last-child {
    margin-bottom: 0;
}

.disclosure-cont a {
    color: var(--bg-color-2-text);
    text-decoration: underline;
}

.disclosure-cont a:hover {
    color: var(--primary-color);
}

.page-content-outer {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.page-content-outer .page-content {
    width: 100%;
}

.page-content .su-note {
    font-style: italic;
    font-size: 14px;
    line-height: 28px;
}

.campaign-compact-table__wrapper {
    margin-bottom: 0;
}

.campaign-list-item_key-features ul,
.campaign-compact-table__offer-key-features ul,
.campaign-shortcode-table ul {
    padding-left: 0;
}

.campaign-list-item_key-features ul li,
.campaign-compact-table__offer-key-features li {
    list-style: none;
    margin-bottom: 0;
}

a.campaign-list-item_logo img,
td.campaign-compact-table__offer-logo img {
    height: auto;
}

a.campaign-list-item_cta-btn,
.campaign-compact-table__offer-cta-button a {
    color: #fff;
    text-decoration: none;
}

.campaign-shortcode-table .slick-arrow {
    display: none;
}

a.campaign-list-item_logo.bm-with-counter:before,
.numbered .campaign-compact-table__offer-logo:before {
    box-sizing: border-box;
}

section.ms_faq.ms_card {
    border: 1px solid #dcdcdc;
    padding: 12px 32px 12px 16px;
    background: var(--site-bg);
    margin-bottom: 10px;
}

div.man_faq_sec .accordionButton:after {
    right: 12px;
}

.body-top-content {
    text-align: center;
}

.body-top-content .new_modifyDetails {
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
    border: none;
    padding: 0;
}

.body-top-content .new_custom_top_author {
    flex-direction: column;
    justify-content: center;
}

.body-top-content .new_name_author_out {
    justify-content: center;
    font-weight: bold;
}

/* DEFAULT PAGE/POST END*/

/*AUTHOR PAGE START*/
.new-custom-profile-tab-content {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #fff;
    padding: 24px;
    border: 1px solid #e9e9e9;
}

.new-custom-header-profile-details h2 {
    font-size: 30px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: capitalize;
}

.new-custom-profile-header-container {
    display: flex;
    align-items: center;
    gap: 12px;
    word-break: break-all;
    flex-direction: column;
}

.new-custom-header-avatar-container img {
    padding: 0;
    border: 0;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 100%;
}

.new-custom-profile-fields-group.new-custom-profile-fields-group-1 {
    border: none;
    margin: 1rem 0 0;
    padding: 0;
}

.new-custom-profile-fields-group.new-custom-profile-fields-group-1 h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 28px;
}

.new-custom-author-box-wrapper {
    box-shadow: none;
    display: inline-block;
    width: 100%;
    font-size: 26px;
}

.new-custom-author-box-wrapper p {
    padding: 0;
    margin: 0 0 15px;
    font-size: 18px;
    line-height: 26px;
}

.new-custom-author-box-wrapper p:last-child {
    margin-bottom: 0;
}

.new-custom-author-f-name .new-custom-label,
.new-custom-author-description-name .new-custom-label {
    font-weight: 600 !important;
    font-size: inherit;
    line-height: inherit;
    background: transparent;
    color: inherit;
    padding: 0px;
    margin: 0 0 10px;
}

.new-custom-author-f-name {
    display: flex;
    gap: 15px;
    font-size: 20px;
}

.new-custom-author-description-name {
    margin-top: 12px;
    font-size: 20px;
}

.new_modifyDetails {
    margin-top: 16px;
    margin-bottom: 20px;
    border: 1px solid;
    padding: 12px;
    border-color: #d8d8d8;
    border-radius: 4px;
}

.new_custom_top_author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.new_author_image {
    line-height: 0;
}

.new_author_image img {
    max-width: 60px;
    height: 60px;
    border-radius: 100%;
}

.new_name_author_out {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px;
}

.new-date-author-cl {
    display: inline-block;
    color: var(--site-text);
    padding: 0;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 0;
    text-transform: capitalize;
    margin-top: 2px;
}

span.new-date-label {
    font-weight: bold;
}

span.date-status {
    width: 0.5rem;
    height: 0.5rem;
    margin-right: 4px;
    display: inline-block;
    background-color: rgba(34, 197, 94, 1);
    border-radius: 100%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/*AUTHOR PAGE END*/


/*NEW CUSTOM TEMPLATE START*/
.nm-hero-banner {
    /*height: 100vh;*/
    height: auto;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    padding:  calc(69px + 8rem) 0 8rem 0;
    position: relative;
    overflow: hidden;
}

.nm-hero-flex {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}
/*
.nm-hero-content {
    max-width: 568px;
}*/
.nm-hero-dashboard-wrap {
    position: relative;
    animation: fadeUp 0.7s 0.35s ease both;
}

h1.nm-hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.04em;
    margin-bottom: 0;
    animation: fadeUp 0.6s 0.1s ease both;
}

h1.nm-hero-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nm-hero-desc p {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 480px;
    animation: fadeUp 0.6s 0.2s ease both;
    margin:1.4rem 0 0;
}
.nm-floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 0.65rem 0.9rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.55rem;
    white-space: nowrap;
    z-index: 2;
}

.nm-floating-card.nm-floating-card-top {
    top: -16px;
    right: -16px;
    animation: fbFloat 4s ease-in-out infinite;
}

.nm-floating-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.nm-floating-info-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ink);
}

.nm-floating-info-sub-label {
    font-size: 0.62rem;
    color: var(--muted);
}

.nm-dashboard-card {
    background: white;
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(62, 207, 178, 0.16), 0 6px 24px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.nm-dashboard-head {
    background: var(--gradient);
    padding: 0.9rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

span.nm-dashboard-dots {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    display: inline-block;
}

.nm-dashboard-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-left: 0.4rem;
    letter-spacing: 0.02em;
}

.nm-dashboard-body {
    padding: 1.4rem 1.4rem 2.4rem;
}

.nm-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 90px;
    margin-bottom: 1.3rem;
}

.nm-chart-item {
    flex: 1;
    position: relative;
    border-radius: 5px 5px 0 0;
    background: var(--gradient-soft);
    border: 1px solid var(--border);
    position: relative;
}

.nm-chart-item.active-bar {
    background: var(--gradient);
    border-color: transparent;
}

.nm-chart-label {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--muted);
    white-space: nowrap;
}
.active-bar .nm-chart-label{
   color: var(--mint);
}

.nm-keyword-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

span.nm-keyword-item {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.28rem 0.65rem;
    border-radius: 100px;
    background: white;
    border: 1px solid var(--border);
    color: var(--ink-soft);
}

span.nm-keyword-item.top-keyword {
    background: var(--mint-pale);
    border-color: var(--mint);
    color: var(--mint);
}

.nm-floating-card.nm-floating-card-bottom {
    bottom: -16px;
    left: -16px;
    animation: fbFloat 4s ease-in-out infinite;
    animation-delay: -2s;
}

.nm-brand-logo-web {
    padding: 2.8rem 0;
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.nm-brand-logo-title {
    text-align: center;
}

.nm-brand-logo-title p {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--muted);
    margin-bottom: 1.4rem;
    line-height: ;
}

.nm-brand-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 3.5rem;
    flex-wrap: wrap;
}

.nm-brand-logo-item {
    font-weight: 700;
    font-size: 0.95rem;
    color: #c5d5d0;
    letter-spacing: -0.02em;
    transition: color 0.2s;
    cursor: default;
}

.nm-brand-logo-item:hover {
    color: var(--mint);
}

.nm-services-web {
    padding: 6rem 0;
    background: white;
}

.head-sub-title {
    margin-bottom: 0.9rem;
}

.head-sub-title span {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: var(--mint);
}

.head-sec .head-title {
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 0.9rem;
}

.head-content p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted);
    max-width: 500px;
}

.head-content p:last-child {
    margin-bottom: 0;
}

.nm-services-grid {
    display: grid;
    /*grid-template-columns: repeat(5, 1fr);*/
    grid-template-columns: repeat(auto-fit, minmax(264px, 1fr));
    gap: 1.4rem;
    margin-top: 3.2rem;
}

.nm-service-card {
    background: var(--gradient-soft);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}

.nm-service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.25s;
}

.nm-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(62, 207, 178, 0.14);
}

.nm-service-card:hover:before {
    opacity: 1;
}

.nm-service-icon {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 3px 14px rgba(62, 207, 178, 0.14);
    margin-bottom: 1.1rem;
}

.nm-service-card-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.nm-service-card-content p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--muted);
}

.nm-service-card-content p:last-child {
    margin-bottom: 0;
}

.growth-process-web {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.42);
}

.growth-process-web a {
    color: var(--primary-color);
}

.growth-process-web .head-sec .head-title {
    color: white;
}

.growth-process-web .head-content p {
    color: rgba(255, 255, 255, 0.45);
}

.growth-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3.2rem;
}

.growth-process-step {
    padding-left: 0.8rem;
}

.growth-process-step-number {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.9rem;
}

.growth-process-steps .growth-process-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.growth-process-step-content p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.65;
    margin: 0;
}

.client-story-box {
    max-width: 680px;
    margin-top: 2.8rem;
    border-left: 3px solid var(--mint);
    padding-left: 2rem;
}

.client-story-quote blockquote {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.75;
    font-style: italic;
    color: var(--ink-soft);
    margin: 0 0 1.4rem;
    padding: 0;
}

.client-story-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.client-story-author-image {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: white;
}

.client-story-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.client-story-author-name {
    font-weight: 600;
    font-size: 0.88rem;
}

.client-story-author-designation {
    font-size: 0.78rem;
    color: var(--muted);
}

/*NEW CUSTOM TEMPLATE END*/


/*NEWS TEMPLATE START*/
.default-banner-sec {
    margin-top: 69px;
    background: var(--gradient-soft);
    padding: 5rem 0;
}

.cols-four-outer,
.cols-three-outer,
.cols-two-outer {
    display: -ms-grid;
    display: grid;
    gap: 40px;
}

.cols-three-outer {
    grid-template-columns: repeat(3, 1fr);
}

.cols-four-outer {
    grid-template-columns: repeat(4, 1fr);
}

.common-articles {
    animation: fadeUp 0.6s 0.1s ease both;
}

.head-sec+.common-articles {
    margin-top: 40px;
}

.common-article-single {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0 0 48px;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
    background: var(--gradient-soft);
}

.common-article-image {
    line-height: 0;
}

.common-article-image img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    max-height: 240px;
    min-height: 240px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    width: 100%;
}

.common-article-cont {
    padding: 24px 16px 24px;
}

.common-article-single:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(62, 207, 178, 0.14);
}

.common-article-top-info {
    color: var(--site-text);
    margin-bottom: 8px;
}

.common-article-cont h5 {
    margin-bottom: 0;
}

.common-article-single a {
    display: block;
    height: 100%;
}

.common-article-cont h5 a {
    color: var(--site-text);
}

.common-article-cont h5 a:hover,
.common-article-single a:hover .common-article-btn,
.common-article-single a:hover h5 {
    color: var(--primary-color);
}
.common-article-cont-desc p:last-child{
    margin-bottom:0;
}
.common-article-cont-desc {
    margin-top: 16px;
    line-height: 24px;
}

.common-article-btn {
    bottom: 24px;
    color: var(--primary-color);
    position: absolute;
}

.common-article-btn .btn-link,
.common-article-btn a.button.button-simple-text {
    color: var(--primary-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: capitalize;
}

.default-banner-header .banner-header-title {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.04em;
    margin-bottom: 0;
    animation: fadeUp 0.6s 0.1s ease both;
}

.default-banner-header {
    text-align: center;
}

.banner-header-sub-title {
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s 0.1s ease both;
}
.banner-head-content{
    margin-top: 2rem;
}
.banner-head-content p {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--ink-soft);
    animation: fadeUp 0.6s 0.2s ease both;
}
.banner-head-content p:last-child{
     margin: 0;
}

.banner-header-sub-title span {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: var(--mint);
}

.common-articles-sec .load-more-wrapper {
    margin-top: 40px;
    text-align: center;
}

.load-more-wrapper .btn {
    font-size: 18px;
    line-height: 28px;
    min-width: 143px;
    text-transform: math-auto;
}

/*NEWS TEMPLATE END*/

/*SINGLE POST START*/
.head-sec.head-sec-with-btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

.head-sec.head-sec-with-btn h2 {
    margin: 0;
}

.latest-news .head-sec {
    position: relative;
    z-index: 9;
}

.head-sec.head-sec-with-btn .head-sec-btn {
    color: var(--site-text);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 4px;
    position: relative;
    text-align: center;
    text-transform: capitalize;
    text-decoration: none;
}

.head-sec.head-sec-with-btn .head-sec-btn:hover {
    color: var(--primary-color);
}

.head-sec.head-sec-with-btn .head-sec-btn:after {
    font-family: "FontAwesome";
    position: relative;
    top: 0px;
    right: 0;
    content: "\f105";
    font-size: 20px;
    margin-left: 2px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    display: inline-block;
}

.readtime {
    display: flex;
    font-style: normal;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: var(--mint);
    animation: fadeUp 0.6s 0.1s ease both;
}

.gapper-icon,
.readtime {
    align-items: center;
    justify-content: center;
}

.gapper-icon {
    background: #c8d2d2;
    display: inline-block;
    height: 28px;
    width: 1px;
}

.default-banner-sec .post-thumbnail {
    margin: 40px 0 0;
}

.default-banner-sec .post-thumbnail img {
    border-radius: 16px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    width: 100%;
}
.latest-news.single-latest-news {
    background: var(--gradient-soft);;
}
.single-latest-news .common-article-single{
    background: #fff;
}

/*SINGLE POST END*/


@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(22px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes fbFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}



@media (min-width: 992px) {
    .menu-item:hover .sub-menu {
        display: block;
    }

    .nav-select .menu__list>li:hover>.sub-menu,
    .nav-select .sub-menu>li:hover>.sub-menu {
        display: block;
    }

    nav.navigationcl ul.nav-menu-new.wp-menu>li {
        padding-top: 4px;
        padding-bottom: 4px;
        margin-bottom: 0;
        margin-top: 0;
    }

}



@media (min-width: 2400px) {
    /*
    :root {
        --container-width: 2525px;
    }*/

    /*    
html{
    font-size: 18px;
}*/
    /*
.nm-hero-dashboard-wrap {
    margin-left: auto;
    max-width: 100%;
}*/


}


@media only screen and (max-width: 1360px) and (min-width: 992px) {

    /*HEADER CSS START*/
    nav.navigationcl li {
        margin-left: 16px;
        margin-right: 16px;
    }

    .sub-menu {
        width: 135px;
    }

    /*HEADER CSS END*/
    .cols-four-outer {
        gap: 24px;
    }

    .cols-four-outer .common-article-image img {
        max-height: 180px;
        min-height: 180px;
    }

}

@media (max-width: 1360px){
    /*NEW CUSTOM TEMPLATE CSS START*/
    .growth-process-steps {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    }
    .nm-hero-banner{
        padding: calc(69px + 5rem) 0 5rem 0;;
    }
    /*NEW CUSTOM TEMPLATE CSS END*/
}


@media screen and (max-width: 991px) {
    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    .sec-pad {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .table-auto {
        overflow-x: auto;
        width: 100%;
    }

    .body-content table:not(.campaign-compact-table) {
        display: block;
        overflow: auto;
    }

    .body-content .table-auto table:not(.campaign-compact-table) {
        display: table;
    }

    .body-content table:not(.campaign-compact-table) th,
    .body-content table:not(.campaign-compact-table) td {
        white-space: nowrap;
    }

    .page-content-outer {
        flex-wrap: wrap;
    }


    /*HEADER CSS START*/
    .header-branding {
        padding-right: 70px;
    }

    ul.nav-menu-new .menu-item-has-children>a::after,
    ul.nav-menu-new .sub-menu .menu-item-has-children>a::after {
        display: none;
    }

    span.toggle-menu>.fa-angle-down {
        display: block;
    }

    .header-inner {
        padding-right: 40px;
    }

    .navigationcl {
        position: absolute;
        right: 0;
        top: 100%;
        margin-top: 1px;
        width: 100%;
        cursor: pointer;
        text-align: left;
        background: var(--header-bg);
        left: auto;
        display: none;
        padding: 10px 15px;
        z-index: 99999;
        box-shadow: 0 1px 1px #eeeeee;
    }

    .navigationcl.menu-open {
        display: block;
    }

    .navbar-togglecl {
        width: 40px;
        height: 40px;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        right: 6px;
        text-align: center;
        cursor: pointer;
        border-radius: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: transparent;
        text-align: right;
    }

    .navbar-togglecl span {
        width: 20px;
        height: 2px;
        background-color: var(--header-text);
        display: inline-block;
        position: relative;
        right: 0;
    }

    .navbar-togglecl span::before,
    .navbar-togglecl span::after {
        content: "";
        position: absolute;
        background-color: var(--header-text);
        width: 100%;
        height: 2px;
        left: 0;
        top: -7px;
    }

    .navbar-togglecl span::after {
        top: 7px;
    }

    .navbar-togglecl.active .navbar-toggle {
        background: transparent;
    }

    .navbar-togglecl.active span::before {
        top: 0;
        transform: rotate(45deg);
    }

    .navbar-togglecl.active span::after {
        top: 0;
        transform: rotate(-45deg);
    }

    nav.navigationcl li {
        position: relative;
        display: inline-block;
        padding: 0;
        margin: 7px 0;
        width: 100%;
        box-sizing: border-box;
    }

    nav.navigationcl .sub-menu li {
        padding-left: 0;
    }

    nav.navigationcl li.menu-item-has-children,
    nav.navigationcl .sub-menu li.menu-item-has-children {
        padding-right: 30px;
    }

    .nav-menu-new a {
        font-size: 15px;
        color: var(--header-text);
        height: auto;
        padding: 5px 10px;
        margin: 0;
        line-height: 36px;
        text-align: center;
    }

    .navigationcl ul {
        visibility: visible;
        position: relative;
        display: block;
        left: 0;
        top: 0;
        margin: 0 !important;
        width: 100%;
        padding: 0 !important;
    }

    .navigationcl ul li a {
        height: auto;
        width: 100%;
        overflow: visible;
        line-height: 26px;
        background-image: none;
        border-width: 0;
        text-align: left;
        padding: 0;
        margin: 0;
        color: var(--header-text);
    }

    .navigationcl li:hover>ul {
        visibility: visible;
        top: auto;
    }

    .toggle-menu {
        position: absolute;
        right: 0;
        width: 30px;
        height: 26px;
        font-size: 18px;
        transform: rotate(0deg);
        text-align: center;
        top: 0;
        cursor: pointer;
        z-index: 999;
        color: var(--header-text);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav.navigationcl li.menu-item-has-children:hover>.toggle-menu {
        color: var(--primary-color);
    }

    .navigationcl li.menu-item-has-children li .toggle-menu {
        right: -30px;
    }

    .toggle-menu.on .fa:before {
        content: "\f106";
    }

    .nav-select {
        display: inline-block;
        visibility: visible;
        width: 100%;
        text-align: left;
        margin: 0;
    }

    .sub-menu {
        display: block;
        position: relative;
        left: 0;
        background: transparent;
        width: 100%;
        text-align: left;
        padding: 0 !important;
        box-shadow: none;
        top: auto;
    }

    .navigationcl .sub-menu {
        padding-left: 15px !important;
        padding-right: 0 !important;
    }

    nav.navigationcl .nav-menu-new>li:last-child .sub-menu,
    nav.navigationcl .nav-menu-new>li:last-child .sub-menu .sub-menu {
        right: auto;
        left: 0;
    }

    .nav-menu-new a:hover,
    .nav-menu-new a:focus {
        color: var(--primary-color);
    }

    nav.navigationcl li.menu-item-has-children:hover>a,
    nav.navigationcl li.menu-item-has-children:hover>a:after {
        color: var(--primary-color);
    }

    .sub-menu .sub-menu {
        left: 0;
        right: 0;
        top: 0;
    }

    .nav-select .sub-menu>li>.sub-menu {
        display: none;
        position: relative;
    }

    .header-rightbar {
        min-width: 100%;
        margin-top: 7px;
        margin-bottom: 7px;
    }

    .header-rightbar a.btn {
        width: 100%;
        text-align: center;
    }

    /*HEADER CSS END*/

    /*NEW CUSTOM TEMPLATE CSS START*/
    .nm-hero-flex {
        grid-template-columns: 1fr;
    }

    .nm-hero-dashboard-wrap {
        display: none;
    }
    .nm-hero-banner{
        padding: calc(69px + 3rem) 0 3rem 0;
    }
    /*NEW CUSTOM TEMPLATE CSS END*/


    /*NEWS TEMPLATE CSS START*/
    .common-article-cont h5 {
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        line-height: 28px;
        margin-bottom: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;
    }

    /*NEWS TEMPLATE CSS END*/

    /*SINGLE POST START*/
    .default-banner-sec .post-thumbnail {
        margin: 24px 0 0;
    }

    .default-banner-sec .post-thumbnail img {
        height: 220px;
    }
    .readtime{
        margin-bottom: 1rem;
    }
    .banner-header-sub-title {
        margin-bottom: 1rem;
    }
    .banner-head-content {
        margin-top: 1.2rem;
    }
    /*SINGLE POST END*/

}


@media only screen and (max-width: 991px) and (min-width: 768px) {

    .cols-four-outer,
    .cols-three-outer,
    .cols-two-outer {
        gap: 24px;
    }

    .cols-four-outer {
        grid-template-columns: repeat(2, 1fr);
    }
    .cols-three-outer {
        grid-template-columns: repeat(2, 1fr);
    }

    .common-article-image img {
        max-height: 180px;
        min-height: 180px;
    }
}

/*Don't change this query*/
@media screen and (max-width: 768px) {
    .site-footer-inr {
        flex-direction: column;
        text-align: center;
    }

    .footer-menu ul {
        justify-content: center;
        flex-wrap: wrap;
    }

}

@media screen and (max-width:767px) {

    .cols-four-outer,
    .cols-three-outer,
    .cols-two-outer {
        grid-template-columns: repeat(1, 1fr);
    }

    .common-articles-sec .common-articles {
        gap: 16px;
    }

    .head-sec.head-sec-with-btn .head-sec-btn {
        color: var(--site-text);
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 28px;
        text-align: center;
        text-decoration-line: underline;
        -webkit-text-decoration-skip-ink: none;
        text-decoration-skip-ink: none;
        text-decoration-style: solid;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }

    .head-sec.head-sec-with-btn .head-sec-btn:after {
        display: none;
    }

}