/* =========================================================
           GLOBAL VARIABLES
        ========================================================= */
:root {
    --blue: #0878c9;
    --blue-dark: #04538f;
    --soft: #eaf6ff;
    --navy: #071521;
    --black: #03080c;
    --text: #273642;
    --muted: #6d7c87;
    --white: #ffffff;
    --light: #f6f9fc;
    --border: #e5edf3;
    --shadow: 0 18px 50px rgba(7, 21, 33, 0.10);
    --transition: 0.3s ease;
}
/* =========================================================
           RESET
        ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
button, input, select, textarea {
    font-family: inherit;
}
button {
    cursor: pointer;
}
.container {
    width: min(1250px, 92%);
    margin: 0 auto;
}
.section {
    padding: 60px 0;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-label::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--blue);
}
h1, h2, h3, h4 {
    font-family: "Manrope", "Inter", sans-serif;
    line-height: 1.15;
    color: var(--navy);
}
h2, h3 {
    font-size: 25px;
    letter-spacing: 0px;
}
p {
    color: var(--black);
}
/* =========================================================
           BUTTONS
        ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 9px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(8, 120, 201, 0.25);
}
.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--navy);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
/* =========================================================
           TOP BAR
        ========================================================= */
.topbar {
    background: var(--black);
    color: #dce8ef;
    font-size: 12px;
}
.topbar-inner {
    min-height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.top-items {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.top-items span {
    display: flex;
    align-items: center;
    gap: 7px;
}
.top-items i {
    color: #43aaf1;
}
.top-items a:hover {
    color: #43aaf1;
}
/* =========================================================
           HEADER / NAVIGATION
        ========================================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgb(0 0 0);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.logo {
    display: none !important;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 260px;
}
.footerlogo {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 260px;
}
.logo-mark {
    width: 207px;
    border-radius: 8px;
    overflow: hidden;
    background: #02080c;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-mark img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.logo-copy strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: var(--navy);
}
.logo-copy span {
    display: block;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.4px;
    color: var(--blue);
    margin-top: 2px;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-link, .drop-btn {
    padding: 10px 13px;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    border: 0;
    background: transparent;
}
.nav-link:hover, .drop-btn:hover {
    color: var(--blue);
}
/* =========================================================
           DROPDOWN
        ========================================================= */
.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 48px;
    left: 0;
    width: 320px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
}
.dropdown:hover .dropdown-menu, .dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: flex;
    gap: 11px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}
.dropdown-menu a i {
    width: 18px;
    color: var(--blue);
    margin-top: 3px;
}
.dropdown-menu a:hover {
    background: var(--soft);
    color: var(--blue);
}
.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 23px;
    color: var(--white);
}
/* =========================================================
           HERO
        ========================================================= */
.hero {
    position: relative;
    background: #031018;
    color: var(--white);
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(3, 16, 24, 0.98), rgba(3, 16, 24, 0.82) 45%, rgba(3, 16, 24, 0.28) );
    z-index: 1;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 55px;
    align-items: center;
}
.hero-content {
    padding: 60px 0;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #8dd5ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-kicker::before {
    content: "";
    width: 32px;
    height: 2px;
    background: #35a9eb;
}
.hero h1 {
    font-size: clamp(43px, 5.2vw, 60px);
    letter-spacing: -3px;
    color: var(--white);
}
.hero h1 span {
    color: #41b2f4;
}
.hero-desc {
    max-width: 630px;
    margin: 24px 0 30px;
    color: #c5d4de;
    font-size: 16px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-points {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 34px;
}
.hero-points span {
    font-size: 12px;
    color: #d9e7ee;
    display: flex;
    align-items: center;
    gap: 7px;
}
.hero-points i {
    color: #4eb8f5;
}
.hero-card-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-card {
    width: min(440px, 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    transform: rotate(2deg);
}
.hero-card img {
    height: 390px;
    width: 100%;
    object-fit: cover;
    border-radius: 17px;
}
.floating-card {
    position: absolute;
    left: -25px;
    bottom: 25px;
    background: var(--white);
    color: var(--navy);
    padding: 17px 19px;
    border-radius: 13px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    display: none;
    align-items: center;
    gap: 12px;
}
.floating-icon {
    width: 43px;
    height: 43px;
    border-radius: 10px;
    background: var(--soft);
    color: var(--blue);
    display: grid;
    place-items: center;
}
.floating-card strong {
    display: block;
    font-size: 13px;
}
.floating-card small {
    color: var(--muted);
    font-size: 10px;
}
/* =========================================================
           TRUST
        ========================================================= */
.trust {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.trust-item {
    padding: 25px 22px;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 13px;
}
.trust-item:last-child {
    border-right: 0;
}
.trust-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: var(--soft);
    color: var(--blue);
    display: grid;
    place-items: center;
}
.trust-item strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
    text-transform: uppercase;
}
.trust-item span {
    font-size: 10px;
    color: #50697b;
}
/* =========================================================
           ABOUT
        ========================================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 45px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    height: 530px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow);
}
.about-badge {
    position: absolute;
    right: -22px;
    bottom: 30px;
    background: var(--navy);
    color: var(--white);
    border-radius: 14px;
    display: none;
    padding: 18px 22px;
    box-shadow: var(--shadow);
}
.about-badge strong {
    display: block;
    font-size: 24px;
    color: var(--white);
}
.about-badge span {
    font-size: 10px;
    color: #a9c0cd;
}
.about-copy h2, .about-copy h3 {
    margin-bottom: 10px;
}
.about-copy > p {
    margin-bottom: 18px;
}
.about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-top: 25px;
}
.about-list div {
    display: flex;
    gap: 9px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}
.about-list i {
    margin-top: 7px;
    color: var(--blue);
}
/* =========================================================
           SERVICES
        ========================================================= */
.services {
    background: var(--light);
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 45px;
}
.section-head p {
    max-width: 500px;
    font-size: 14px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 27px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.service-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}
.service-card:hover::after {
    transform: scaleX(1);
}
.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: var(--soft);
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: 21px;
}
.service-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 15px;
}
.service-no {
    position: absolute;
    right: 18px;
    top: 17px;
    font-size: 11px;
    font-weight: 800;
    color: #c6d5df;
}
/* =========================================================
           INFO BANNER
        ========================================================= */
.info-banner {
    padding: 60px 0;
    background: linear-gradient(120deg, #071521, #0b3858);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.info-banner h2 {
    color: var(--white);
    margin-bottom: 18px;
}
.info-banner p {
    color: #bcd0dc;
    font-size: 14px;
}
.info-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}
.info-list div {
    font-size: 12px;
    color: #e6f2f8;
    display: flex;
    gap: 9px;
}
.info-list i {
    color: #47b4f3;
}
.info-photo img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0.9;
}
/* =========================================================
           CAREER
        ========================================================= */
.career {
    background: #f7fafc;
}
.career-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
    align-items: center;
}
.career-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow);
}
.career-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}
.career-card p {
    font-size: 13px;
    margin-bottom: 20px;
}
.career-points {
    display: grid;
    gap: 10px;
    margin-bottom: 25px;
}
.career p {
    margin-top: 18px;
    font-size: 15px;
}
.career-points div {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    gap: 9px;
}
.career-points i {
    color: var(--blue);
}
/* =========================================================
           CONTACT
        ========================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact-copy h2 {
    margin-bottom: 17px;
}
.contact-copy > p {
    font-size: 13px;
    margin-bottom: 25px;
}
.contact-list {
    display: grid;
    gap: 16px;
}
.contact-item {
    display: flex;
    gap: 13px;
}
.contact-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    background: var(--soft);
    color: var(--blue);
    display: grid;
    place-items: center;
    border-radius: 10px;
}
.contact-item strong {
    display: block;
    font-size: 18px;
    color: var(--navy);
}
.contact-item span {
    display: block;
    font-size: 15px;
    color: var(--black);
}
.contact-item a:hover {
    color: var(--blue);
}
/* =========================================================
   GRS CONTACT MAP LINK
========================================================= */
.contact-location-item {
    align-items: flex-start;
}
.contact-map-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    text-decoration: none !important;
    cursor: pointer;
    transition: all .25s ease;
}
.contact-map-icon:hover {
    transform: translateY(-3px) scale(1.05);
}
.contact-item-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.contact-item-content > strong {
    display: block;
}
.contact-item-content > span {
    display: block;
    line-height: 1.6;
}
.contact-map-link {
    display: none !important;
}
.contact-map-link, .contact-directions-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 6px;
    width: fit-content;
    font-size: 13px;
    font-weight: 700;
    color: #0788d1 !important;
    text-decoration: none !important;
    transition: all .25s ease;
}
.contact-map-link:hover {
    color: #005f9e !important;
    gap: 10px;
}
.contact-map-link i {
    font-size: 13px;
}
.contact-map-link i:last-child {
    font-size: 10px;
}
@media (max-width: 767px) {
    .contact-location-item {
        align-items: flex-start;
    }
    .contact-map-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }
    .contact-item-content {
        max-width: calc(100% - 55px);
    }
}
/* =========================================================
           FORM
        ========================================================= */
.form {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    background: #fbfdff;
    box-shadow: 0 15px 40px rgba(7, 21, 33, 0.06);
}
.form h3 {
    font-size: 23px;
    margin-bottom: 20px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.field.full {
    grid-column: 1 / -1;
}
.field label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #465862;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 6px;
}
.field input, .field select, .field textarea {
    width: 100%;
    border: 1px solid #dce6ec;
    border-radius: 9px;
    background: var(--white);
    padding: 12px 13px;
    outline: none;
    font: inherit;
    font-size: 12px;
    color: var(--text);
    transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(8, 120, 201, 0.08);
}
.field textarea {
    height: 125px;
    resize: vertical;
}
.form .btn {
    margin-top: 18px;
    width: 100%;
}
/* =========================================================
           FOOTER
        ========================================================= */
.footer {
    background: #000000;
    color: #aebfc8;
    padding: 65px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.9fr;
    gap: 55px;
    padding-bottom: 50px;
}
.footer .logo {
    min-width: auto;
}
.footer .logo-mark {
    width: 120px;
    height: 45px;
    color: var(--blue);
    font-weight: 900;
    font-size: 18px;
}
.footer .logo-mark img {
    height: 100%;
    object-fit: contain;
    display: block !important;
}
.footer .logo-copy strong {
    color: var(--white);
}
.footer h4 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 18px;
}
.footer-about {
    font-size: 13px;
    max-width: 350px;
    margin-top: 18px;
    color: #8499a5;
}
.footer-links {
    display: grid;
    gap: 8px;
}
.footer-links a {
    font-size: 13px;
    color: #91a5af;
    transition: var(--transition);
}
.footer-links a:hover {
    color: #43b1f3;
}
.footer-contact {
    display: grid;
    gap: 10px;
}
.footer-contact div {
    font-size: 13px;
    display: flex;
    gap: 9px;
}
.footer-contact i {
    color: #43b1f3;
    margin-top: 4px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    font-size: 12px;
    color: #70848f;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
/* =========================================================
           SCROLL REVEAL
        ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
/* =========================================================
           FORM MESSAGE
        ========================================================= */
.form-message {
    display: none;
    margin-top: 15px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 12px;
    background: #eaf6ff;
    color: var(--blue-dark);
}
.form-message.show {
    display: block;
}
/* =========================================================
           TABLET
        ========================================================= */
@media (max-width: 980px) {
    .nav {
        height: 82px;
    }
    .nav-menu {
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;
        background: var(--white);
        border-top: 1px solid var(--border);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 4%;
        box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-link, .drop-btn {
        width: 100%;
        text-align: left;
        padding: 10px 8px;
    }
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 5px 15px;
    }
    .dropdown.open .dropdown-menu {
        display: block;
    }
    .nav-cta {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero-grid, .about-grid, .info-grid, .career-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        min-height: auto;
    }
    .hero-content {
        padding: 90px 0 40px;
    }
    .hero-card-wrap {
        padding: 0 0 80px;
    }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    .trust-item {
        border-bottom: 1px solid var(--border);
    }
    .trust-item:nth-child(2) {
        border-right: 0;
    }
    .about-image {
        max-width: 650px;
    }
    .info-photo {
        order: -1;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* =========================================================
           MOBILE
        ========================================================= */
@media (max-width: 650px) {
    .section {
        padding: 40px 0;
    }
    .topbar-inner {
        padding: 7px 0;
    }
    .topbar-inner > div:last-child {
        display: none;
    }
    .top-items {
        gap: 12px;
    }
    .nav {
        height: 72px;
    }
    .nav-menu {
        top: 72px;
    }
    .logo {
        min-width: auto;
    }
    .logo-mark {
        width: 165px;
    }
    .hero h1 {
        letter-spacing: -2px;
    }
    .hero-card img {
        height: 300px;
    }
    .floating-card {
        left: 5px;
        bottom: 25px;
        max-width: calc(100% - 10px);
    }
    .trust-grid, .services-grid, .about-list, .info-list, .form-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .trust-item {
        border-right: 0;
    }
    .section-head {
        display: block;
    }
    .section-head p {
        margin-top: 15px;
    }
    .field.full {
        grid-column: auto;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .about-badge {
        right: 10px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-points {
        gap: 12px;
    }
}
/* =========================================================
           SMALL MOBILE
        ========================================================= */
@media (max-width: 420px) {
    .logo-mark {
        width: 145px;
    }
    .hero-content {
        padding-top: 70px;
    }
    .hero h1 {
        font-size: 40px;
    }
    .hero-desc {
        font-size: 14px;
    }
    .floating-card {
        padding: 13px;
    }
    .floating-card strong {
        font-size: 11px;
    }
    .floating-card small {
        font-size: 9px;
    }
}
/* =========================================================
           REDUCED MOTION
        ========================================================= */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* WordPress dynamic menu compatibility */
.nav-menu > .grs-primary-menu, .nav-menu > .grs-primary-menu ul {
    list-style: none;
    margin: 0;
    padding: 10px;
}
.nav-menu > .grs-primary-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-menu > .grs-primary-menu > li {
    margin: 0;
    padding: 0;
}
.nav-menu > .grs-primary-menu a {
    text-decoration: none;
}
.footer-links .grs-footer-menu, .footer-links .grs-footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links .grs-footer-menu > li {
    margin: 0 0 10px;
}
.footer-links .grs-footer-menu a {
    text-decoration: none;
}
.custom-logo-link {
    display: block;
}
.custom-logo {
    max-height: 72px;
    width: auto;
}
@media (max-width: 980px) {
    .nav-menu > .grs-primary-menu {
        flex-direction:column;
        align-items: flex-start;
        gap: 18px;
        width: 100%;
    }
}
/* WPBakery homepage integration */
.wpb-content-wrapper > .vc_row:first-child, .wpb-content-wrapper > .vc_row {
    margin-left: 0;
    margin-right: 0;
}
.wpb-content-wrapper > .vc_row > .wpb_column > .vc_column-inner {
    padding-left: 0;
    padding-right: 0;
}
.wpb-content-wrapper .vc_row {
    width: 100%;
}
.wpb-content-wrapper .wpb_wrapper > section {
    width: 100%;
}
.service-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-weight: 700;
    text-decoration: none
}
.service-explore i {
    font-size: 12px;
    transition: transform .2s ease
}
.service-explore:hover i {
    transform: translateX(4px)
}
.service-single {
    padding-top: 50px;
    padding-bottom: 50px;
}
.service-single h1 {
    margin: 15px 0 25px;
    font-size: clamp(34px,5vw,60px)
}
.service-single-content {
    font-size: 18px;
    line-height: 1.8
}
.service-single-content p {
    margin-bottom: 18px
}
/* =========================================================
   GRS PROFESSIONAL HEADER / WORDPRESS MENU
   ========================================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 9999;
    /* background: rgba(255,255,255,.98); */
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(7,35,58,.06);
}
.nav {
    min-height: 88px;
    /* position: relative; */
}
.logo {
    flex: 0 0 auto;
    min-width: 205px;
}
.logo .custom-logo-link, .logo .custom-logo-link img, .logo-mark img {
    display: block;
}
.logo .custom-logo {
    width: auto;
    max-width: 210px;
    max-height: 68px;
    object-fit: contain;
}
.logo-mark img {
    width: auto;
    max-width: 210px;
    max-height: 68px;
    object-fit: contain;
}
.nav-menu {
    /* margin-left: auto; */
    display: flex;
    align-items: center;
}
.grs-primary-menu, .grs-primary-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.grs-primary-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}
.grs-primary-menu > li {
    position: relative;
    margin: 0;
}
.grs-primary-menu > li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 48px;
    padding: 8px 5px;
    color: #ffffff;
    font: 700 15px/1 Inter, Arial, sans-serif;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 8px;
    transition: color .22s ease, background .22s ease;
}
.grs-primary-menu > li > a:hover, .grs-primary-menu > li.current-menu-item > a, .grs-primary-menu > li.current-menu-ancestor > a, .grs-primary-menu > li.current-menu-parent > a {
    color: #087dc1;
    /* background: #eef8fd; */
}
.grs-primary-menu > li.menu-item-has-children > a .grs-menu-arrow, .grs-primary-menu > li.menu-item-has-children > a > i:not(.fa-solid) {
    font-size: 11px;
    transition: transform .22s ease;
}
.grs-primary-menu > li.menu-item-has-children:hover > a .grs-menu-arrow, .grs-primary-menu > li.menu-item-has-children:focus-within > a .grs-menu-arrow {
    transform: rotate(180deg);
}
.grs-primary-menu .sub-menu {
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    width: 350px;
    padding: 10px;
    background: #fff;
    border: 1px solid #e3ebf2;
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(5,39,68,.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 10000;
}
.grs-primary-menu .sub-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 15%;
    width: 13px;
    height: 13px;
    background: #fff;
    border-left: 1px solid #e3ebf2;
    border-top: 1px solid #e3ebf2;
    transform: translateX(-50%) rotate(45deg);
}
.grs-primary-menu > li:hover > .sub-menu, .grs-primary-menu > li:focus-within > .sub-menu, .grs-primary-menu > li.menu-item-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
.grs-primary-menu .sub-menu > li {
    margin: 0;
}
.grs-primary-menu .sub-menu > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #273b4e;
    font: 600 13px/1.35 Inter, Arial, sans-serif;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}
.grs-primary-menu .sub-menu > li > a i {
    width: 20px;
    flex: 0 0 20px;
    text-align: center;
    color: #0785ce;
    font-size: 14px;
}
.grs-primary-menu .sub-menu > li > a span {
    flex: 1;
}
.grs-primary-menu .sub-menu > li > a:hover, .grs-primary-menu .sub-menu > li.current-menu-item > a {
    color: #087dc1;
    background: #edf8fd;
    transform: translateX(2px);
}
.grs-primary-menu .sub-menu > li.current-menu-item > a {
    font-weight: 800;
}
.topbar-inner {
    min-height: 40px;
}
.top-contact-items {
    gap: 22px;
}
.top-item {
    white-space: nowrap;
}
.top-item i {
    color: #49b6ef;
}
.nav-cta {
    flex: 0 0 auto;
    margin-left: 12px;
    min-height: 48px;
    padding-left: 22px;
    padding-right: 22px;
    border-radius: 9px;
    box-shadow: 0 10px 24px rgba(11,79,138,.18);
}
.menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 9px;
    align-items: center;
    justify-content: center;
    /* background: #eef8fd; */
}
.menu-toggle:hover {
    background: #dff2fc;
    color: #087dc1;
}
@media (max-width: 1100px) {
    .nav {
        gap: 15px;
    }
    .logo {
        min-width: 180px;
    }
    .logo .custom-logo, .logo-mark img {
        max-width: 180px;
    }
    .grs-primary-menu {
        gap: 0;
    }
    .grs-primary-menu > li > a {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 13px;
    }
    .nav-cta {
        padding-left: 16px;
        padding-right: 16px;
        font-size: 13px;
    }
}
@media (max-width: 980px) {
    .header {
        position: sticky;
    }
    .nav {
        min-height: 76px;
    }
    .logo {
        min-width: 0;
    }
    .logo .custom-logo, .logo-mark img {
        max-width: 175px;
        max-height: 58px;
    }
    .nav-cta {
        display: none;
    }
    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        align-items: stretch;
        margin: 0;
        padding: 12px;
        background: #fff;
        border-top: 1px solid #e5edf3;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 22px 50px rgba(6,35,59,.15);
        max-height: calc(100vh - 76px);
        overflow-y: auto;
    }
    .nav-menu.active {
        display: block;
    }
    .grs-primary-menu {
        display: block;
        width: 100%;
    }
    .grs-primary-menu > li {
        width: 100%;
    }
    .grs-primary-menu > li > a {
        color: black;
        width: 100%;
        justify-content: space-between;
        min-height: 18px;
        padding: 3px 14px;
        border-radius: 9px;
    }
    .grs-primary-menu .sub-menu {
        position: static;
        width: auto;
        margin: 2px 8px 8px;
        padding: 7px;
        border-radius: 11px;
        box-shadow: none;
        border: 1px solid #e4edf3;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        display: none;
    }
    .grs-primary-menu .sub-menu::before {
        display: none;
    }
    .grs-primary-menu > li.menu-item-open > .sub-menu {
        display: block;
    }
    .grs-primary-menu .sub-menu > li > a {
        min-height: 43px;
    }
    .topbar-inner {
        min-height: 38px;
    }
}
@media (max-width: 640px) {
    .topbar {
        display: none;
    }
    .nav {
        min-height: 70px;
    }
    .logo .custom-logo, .logo-mark img {
        max-width: 155px;
        max-height: 52px;
    }
    .nav-menu {
        max-height: calc(100vh - 70px);
    }
}
/* =========================================================
   GRS SERVICE CARD - FULL CARD CLICK + HOVER PREVIEW
========================================================= */
.service-card-clickable {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.service-card-clickable:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
}
/* Keep all card content above preview */
.service-card-clickable > * {
    /* position: relative; */
    z-index: 2;
}
/* Explore link */
.service-card-clickable .service-explore {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
}
/* =========================================================
   HOVER PREVIEW
========================================================= */
.service-card-clickable .service-hover-preview {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid #dce8f1;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    /* display: flex; */
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    z-index: 20;
    pointer-events: none;
}
.service-card-clickable:hover .service-hover-preview, .service-card-clickable:focus .service-hover-preview {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.service-preview-label {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #0788d1;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.service-preview-label i {
    color: #0788d1;
}
.service-hover-preview strong {
    display: block;
    color: #071d34;
    font-size: 15px;
    line-height: 1.3;
}
.service-hover-preview p {
    margin: 0;
    color: #60758a;
    font-size: 13px;
    line-height: 1.5;
}
.service-hover-preview span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 4px;
    color: #0788d1;
    font-size: 12px;
    font-weight: 700;
}
/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
    .service-card-clickable {
        transform: none !important;
    }
    .service-card-clickable .service-hover-preview {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 18px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        pointer-events: none;
    }
}
/* =========================================================
   GRS PROFESSIONAL INNER PAGES
========================================================= */
.grs-page {
    background: #fff;
}
/* =========================================================
   INNER HERO
========================================================= */
.grs-inner-hero {
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    background: linear-gradient( 120deg, #071d34 0%, #0a3457 55%, #087fc0 100% );
    color: #fff;
}
.grs-inner-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -120px;
    top: -180px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}
.grs-inner-hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: 70px;
    bottom: -190px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
}
.grs-inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(7,29,52,.35), transparent );
    pointer-events: none;
}
.grs-inner-hero-container {
    position: relative;
    z-index: 3;
}
.grs-inner-hero-content {
    max-width: 900px;
    padding: 55px 0;
}
/* =========================================================
   BREADCRUMB
========================================================= */
.grs-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
    margin-bottom: 25px;
    font-size: 13px;
}
.grs-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    transition: color .25s ease;
}
.grs-breadcrumb a:hover {
    color: #fff;
}
.grs-breadcrumb a i {
    font-size: 12px;
}
.grs-breadcrumb-separator {
    color: rgba(255,255,255,.45);
    font-size: 9px;
}
.grs-breadcrumb-current {
    color: rgba(255,255,255,.62);
}
/* =========================================================
   PAGE HEADING
========================================================= */
.grs-page-heading {
    display: flex;
    align-items: center;
    gap: 18px;
}
.grs-heading-line {
    display: block;
    width: 5px;
    min-width: 5px;
    height: 62px;
    border-radius: 5px;
    background: #35b8f4;
}
.grs-page-title {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1px;
}
.grs-page-intro {
    max-width: 720px;
    margin: 20px 0 0 23px;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.7;
}
/* =========================================================
   PAGE CONTENT
========================================================= */
.grs-page-article {
    padding: 0px 0;
}
.grs-page-content-wrapper {
    max-width: 1180px;
    margin: 0 auto;
}
.grs-page-content {
    width: 100%;
}
/*
 * WPBakery rows often already have their own container.
 * Prevent unnecessary restrictions.
 */
.grs-page-content .vc_row {
    position: relative;
}
.grs-page-content p {
    line-height: 1.8;
}
.grs-page-content img {
    /* max-width: 100%; */
    /* height: auto; */
}
/* =========================================================
   FEATURED IMAGE
========================================================= */
.grs-page-featured-image {
    margin-bottom: 45px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(7,29,52,.10);
}
.grs-page-featured-image img {
    display: block;
    width: 100%;
    height: auto;
}
/* =========================================================
   PAGE PAGINATION
========================================================= */
.grs-page-pagination {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #e7edf2;
}
.grs-pagination-title {
    margin-right: 8px;
    font-weight: 700;
    color: #071d34;
}
.grs-page-pagination a, .grs-page-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    background: #f3f7fa;
    color: #071d34;
    text-decoration: none;
}
/* =========================================================
   BOTTOM CTA
========================================================= */
.grs-page-bottom-cta {
    padding: 0 0 75px;
}
.grs-page-cta-inner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 42px 48px;
    border-radius: 20px;
    background: linear-gradient( 120deg, #071d34, #0a3a5f );
    box-shadow: 0 20px 55px rgba(7,29,52,.16);
}
.grs-page-cta-inner::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -70px;
    top: -100px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
}
.grs-page-cta-content {
    position: relative;
    z-index: 2;
}
.grs-page-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #35b8f4;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
}
.grs-page-cta-content h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.2;
}
.grs-page-cta-content p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}
.grs-page-cta-action {
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
}
.grs-page-cta-action .btn {
    white-space: nowrap;
}
/* =========================================================
   EMPTY PAGE
========================================================= */
.grs-empty-page {
    padding: 100px 0;
}
.grs-empty-page-inner {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}
.grs-empty-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #eef7fc;
    color: #0788d1;
    font-size: 30px;
}
.grs-empty-page-inner h1 {
    margin: 0 0 12px;
    color: #071d34;
    font-size: 38px;
}
.grs-empty-page-inner p {
    margin: 0 0 28px;
    color: #65788a;
}
/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991px) {
    .grs-inner-hero {
        min-height: 280px;
    }
    .grs-page-article {
        padding: 55px 0;
    }
    .grs-page-cta-inner {
        padding: 35px;
    }
}
@media (max-width: 767px) {
    .grs-inner-hero {
        min-height: 250px;
    }
    .grs-inner-hero-content {
        padding: 42px 0;
    }
    .grs-breadcrumb {
        margin-bottom: 20px;
    }
    .grs-page-heading {
        gap: 13px;
    }
    .grs-heading-line {
        width: 4px;
        min-width: 4px;
        height: 48px;
    }
    .grs-page-title {
        font-size: 34px;
        letter-spacing: -.5px;
    }
    .grs-page-intro {
        margin-left: 17px;
        font-size: 14px;
    }
    .grs-page-article {
        padding: 45px 0;
    }
    .grs-page-bottom-cta {
        padding-bottom: 50px;
    }
    .grs-page-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
    }
    .grs-page-cta-action {
        width: 100%;
    }
    .grs-page-cta-action .btn {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .grs-inner-hero {
        min-height: 155px;
    }
    .grs-inner-hero-content {
        padding: 35px 0;
    }
    .grs-breadcrumb {
        font-size: 12px;
    }
    .grs-page-title {
        font-size: 30px;
    }
    .grs-page-article {
        padding: 0px 0;
    }
    .about-image img {
        height: 210px;
    }
    .about-grid {
        gap: 25px;
    }
}
/* =========================================================
   GRS SERVICES ARCHIVE PAGE
========================================================= */
.grs-services-archive {
    background: #fff
}
.grs-archive-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg,#061d32 0%,#0a3a5d 58%,#087fbd 100%);
    color: #fff
}
.grs-archive-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(6,29,50,.18),transparent 70%);
    pointer-events: none
}
.grs-archive-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 0 30px;
}
.grs-archive-hero .grs-breadcrumb {
    margin-bottom: 28px
}
.grs-archive-hero .grs-breadcrumb a {
    color: rgba(255,255,255,.84)
}
.grs-archive-hero .grs-breadcrumb a:hover {
    color: #fff
}
.grs-archive-hero .grs-breadcrumb>span {
    color: rgba(255,255,255,.62)
}
.grs-archive-hero .grs-breadcrumb-separator {
    color: rgba(255,255,255,.42)
}
.grs-archive-kicker {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 15px;
    color: #58baf3;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase
}
.grs-archive-kicker span {
    width: 34px;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: #58baf3
}
.grs-archive-hero h1 {
    max-width: 850px;
    margin: 0;
    color: #fff;
    font-size: clamp(38px,2vw,64px);
    line-height: 1.08;
    letter-spacing: -.8px
}
.grs-archive-hero h1 strong {
    display: block;
    color: #58baf3;
    font-weight: 800
}
.grs-archive-hero p {
    max-width: 700px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.75
}
.grs-archive-hero-shape {
    position: absolute;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    pointer-events: none
}
.grs-archive-shape-one {
    width: 500px;
    height: 500px;
    right: -180px;
    top: -230px
}
.grs-archive-shape-two {
    width: 300px;
    height: 300px;
    right: 80px;
    bottom: -220px
}
.grs-archive-services {
    padding: 58px 0 55px;
    background: #f7fafc
}
.grs-archive-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 45px;
    margin-bottom: 42px
}
.grs-archive-intro>div {
    max-width: 700px
}
.grs-archive-intro>p {
    max-width: 470px;
    margin: 0;
    color: #60758a;
    font-size: 14px;
    line-height: 1.75
}
.grs-archive-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #0788d1;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase
}
.grs-archive-intro h2 {
    margin: 0;
    color: #071d34;
    font-size: clamp(30px,4vw,44px);
    line-height: 1.12
}
.grs-archive-service-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 20px
}
.grs-archive-service-card {
    min-height: 330px;
    padding: 30px;
    background: #fff;
    border: 1px solid #dfe8ef;
    box-shadow: 0 8px 28px rgba(7,29,52,.035)
}
.grs-archive-service-card:hover {
    border-color: #c9e1ef;
    box-shadow: 0 22px 55px rgba(7,29,52,.11)
}
.grs-archive-service-card .service-no {
    color: #d5e5ef;
    font-size: 32px
}
.grs-archive-service-card .service-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    border-radius: 13px;
    background: #e7f5fc;
    color: #0788d1;
    font-size: 21px
}
.grs-archive-service-card h3 {
    margin-bottom: 13px;
    color: #071d34;
    font-size: 20px;
    line-height: 1.25
}
.grs-archive-service-card>p {
    min-height: 66px;
    color: #60758a;
    font-size: 13px;
    line-height: 1.7
}
.grs-archive-service-card .service-explore {
    margin-top: 17px;
    color: #071d34;
    font-size: 14px;
    font-weight: 800
}
.grs-archive-service-card .service-explore i {
    color: #0788d1;
    transition: transform .25s ease
}
.grs-archive-service-card:hover .service-explore i {
    transform: translateX(4px)
}
.grs-archive-service-card .service-hover-preview {
    border: 1px solid #dce8f1;
    background: rgba(255,255,255,.98)
}
.grs-services-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 48px
}
.grs-services-pagination a,.grs-services-pagination span {
    min-width: 42px;
    height: 42px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #dce7ee;
    border-radius: 9px;
    background: #fff;
    color: #071d34;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .2s ease
}
.grs-services-pagination a:hover {
    border-color: #0788d1;
    color: #0788d1;
    transform: translateY(-2px)
}
.grs-services-pagination .current {
    border-color: #0788d1;
    background: #0788d1;
    color: #fff
}
.grs-services-empty {
    max-width: 650px;
    margin: 0 auto;
    padding: 75px 25px;
    text-align: center
}
.grs-services-empty-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e9f6fc;
    color: #0788d1;
    font-size: 28px
}
.grs-services-empty h2 {
    margin-bottom: 12px
}
.grs-services-empty p {
    margin-bottom: 25px;
    color: #60758a
}
.grs-services-cta {
    padding: 0 0 90px;
    background: #f7fafc
}
.grs-services-cta-inner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 42px 48px;
    border-radius: 20px;
    background: linear-gradient(120deg,#071d34,#0a3a5d);
    box-shadow: 0 20px 55px rgba(7,29,52,.15)
}
.grs-services-cta-inner:after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -90px;
    top: -120px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%
}
.grs-services-cta-content {
    position: relative;
    z-index: 2;
    max-width: 780px
}
.grs-services-cta-content>span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #58baf3;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase
}
.grs-services-cta-content h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(25px,3vw,36px)
}
.grs-services-cta-content p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.72);
    line-height: 1.7
}
.grs-services-cta-button {
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
    white-space: nowrap
}
@media(max-width: 980px) {
    .grs-archive-service-grid {
        grid-template-columns:repeat(2,minmax(0,1fr))
    }
    .grs-archive-intro {
        align-items: start;
        flex-direction: column;
        gap: 14px
    }
    .grs-services-cta-inner {
        padding: 35px
    }
}
@media(max-width: 640px) {
    .grs-archive-hero-content {
        padding:48px 0 58px
    }
    .grs-archive-hero h1 {
        font-size: 34px
    }
    .grs-archive-hero p {
        font-size: 14px
    }
    .grs-archive-services {
        padding: 65px 0 70px
    }
    .grs-archive-service-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }
    .grs-archive-service-card {
        min-height: 0;
        padding: 26px
    }
    .grs-archive-service-card>p {
        min-height: 0
    }
    .grs-services-cta {
        padding-bottom: 65px
    }
    .grs-services-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px
    }
    .grs-services-cta-button {
        width: 100%
    }
}
/* =========================================================
   GRS ABOUT - COMMON BUSINESS CHALLENGES
========================================================= */

.grs-about-challenges {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(10, 70, 110, .10);
}

.grs-challenges-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.grs-challenges-heading .section-label {
    justify-content: center;
}

.grs-challenges-heading h2 {
    margin: 12px 0 15px;
    font-size: clamp(34px, 2vw, 52px);
    line-height: 1.08;
}

.grs-challenges-heading p {
    max-width: 700px;
    margin: auto;
    color: #61788d;
    font-size: 17px;
    line-height: 1.7;
}


/* Grid */

.grs-challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* Card */

.grs-challenge-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dce8f0;
    border-radius: 20px;
    padding: 35px 30px 38px;
    min-height: 300px;

    box-shadow:
        0 12px 35px rgba(5, 55, 90, .06);

    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        box-shadow .45s ease,
        border-color .45s ease;
}

.grs-challenge-card:hover {
    transform: translateY(-10px);

    border-color: #078bd8;

    box-shadow:
        0 25px 55px rgba(5, 55, 90, .12);
}


/* Number */

.grs-challenge-number {
    position: absolute;
    top: 25px;
    right: 28px;

    font-size: 13px;
    font-weight: 700;

    color: #b8d6e7;
}


/* Icon */

.grs-challenge-icon {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #e8f6fd;
    color: #078bd8;

    font-size: 27px;

    margin-bottom: 28px;

    transition:
        transform .4s ease,
        background .4s ease;
}

.grs-challenge-card:hover
.grs-challenge-icon {
    transform:
        translateY(-5px)
        scale(1.06);

    background: #078bd8;
    color: #fff;
}


/* Title */

.grs-challenge-card h3 {
    margin: 0 0 14px;

    font-size: 21px;
    line-height: 1.35;

    color: #061a2d;
}


/* Description */

.grs-challenge-card p {
    margin: 0;

    color: #61788d;

    font-size: 15px;
    line-height: 1.7;
}


/* Bottom line */

.grs-challenge-line {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 4px;

    background: #078bd8;

    transition:
        width .45s ease;
}

.grs-challenge-card:hover
.grs-challenge-line {
    width: 100%;
}


/* Decorative circle */

.grs-challenge-card::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: -60px;
    bottom: -60px;

    border-radius: 50%;

    border: 1px solid rgba(7,139,216,.08);

    transition:
        transform .5s ease;
}

.grs-challenge-card:hover::after {
    transform: scale(1.35);
}


/* Tablet */

@media (max-width: 991px) {

    .grs-challenges-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* Mobile */

@media (max-width: 767px) {

    .grs-about-challenges {
        margin-top: 70px;
        padding-top: 60px;
    }

    .grs-challenges-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .grs-challenge-card {
        min-height: auto;
        padding: 28px 24px 32px;
    }

    .grs-challenges-heading {
        margin-bottom: 35px;
    }

    .grs-challenges-heading h2 {
        font-size: 34px;
    }

}
.grs-challenge-admin-item {
    background: #f8f9fa;
    border: 1px solid #dcdcde;
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: 35px 1fr auto;
    gap: 15px;
    align-items: start;
}

.grs-admin-drag {
    cursor: move;
    font-size: 20px;
    color: #777;
    padding-top: 8px;
}

.grs-admin-challenge-fields label {
    display: block;
    font-weight: 600;
    margin: 8px 0 5px;
}

.grs-admin-challenge-fields input,
.grs-admin-challenge-fields textarea {
    width: 100%;
}

.grs-sortable-placeholder {
    height: 120px;
    background: #eef6ff;
    border: 2px dashed #1683d8;
    border-radius: 10px;
    margin-bottom: 15px;
}
.home .grs-about-challenges{
	display:none !important;
}