body {
    margin: 0px;
}

.nesma-site-header {
    --nesma-primary: #1b3654;
    --nesma-primary-deep: #17314e;
    --nesma-accent: #36c6ff;
    --nesma-white: #ffffff;
    --nesma-body: #666666;
    --nesma-border: #e5e5e5;
    --nesma-shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.05);
    --nesma-focus: 0 0 0 3px rgba(54, 198, 255, 0.34);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--nesma-primary-deep);
    background: var(--nesma-white);
    transition: box-shadow 220ms ease, transform 220ms ease;
}

.nesma-site-header a,
.nesma-site-header button {
    font: inherit;
}

.nesma-site-header a {
    color: inherit;
    text-decoration: none;
}

.nesma-site-header button {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nesma-header-container {
    width: min(100% - 48px, 1170px);
    margin: 0 auto;
}

.nesma-topbar {
    background: var(--nesma-primary);
    color: var(--nesma-white);
}

.nesma-topbar__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nesma-topbar__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nesma-topbar__item {
    min-width: 0;
}

.nesma-topbar__link,
.nesma-topbar__text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    color: var(--nesma-white);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.1px;
    white-space: nowrap;
    transition: color 180ms ease;
}

.nesma-topbar__link:hover {
    color: var(--nesma-accent);
}

.nesma-topbar__link:focus-visible,
.nesma-logo:focus-visible,
.nesma-primary-nav__link:focus-visible,
.nesma-menu-toggle:focus-visible,
.nesma-menu-close:focus-visible {
    outline: none;
    box-shadow: var(--nesma-focus);
}

.nesma-topbar__icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    fill: none;
    stroke: var(--nesma-accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nesma-navbar {
    background: var(--nesma-white);
    border-bottom: 1px solid rgba(229, 229, 229, 0.8);
    transition: box-shadow 220ms ease, border-color 220ms ease;
}

.nesma-navbar__inner {
    min-height: 108px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    transition: min-height 220ms ease;
}

.nesma-header--scrolled .nesma-navbar {
    border-color: transparent;
    box-shadow: var(--nesma-shadow-sm);
}

.nesma-header--scrolled .nesma-navbar__inner {
    min-height: 78px;
}

.nesma-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    border-radius: 2px;
    transition: transform 220ms ease;
}

.nesma-logo:hover .nesma-logo__name {
    color: var(--nesma-primary);
}

.nesma-logo__mark {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    transition: width 220ms ease, height 220ms ease;
}

.nesma-logo__mark-accent {
    fill: var(--nesma-accent);
}

.nesma-logo__mark-shadow {
    fill: #6a7684;
    opacity: 0.9;
}

.nesma-logo__copy {
    display: grid;
    gap: 2px;
}

.nesma-logo__name {
    color: var(--nesma-primary-deep);
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 5.2px;
    transition: color 180ms ease;
}

.nesma-logo__tagline {
    color: #7a8794;
    font-size: 10px;
    line-height: 1.35;
    font-style: italic;
    letter-spacing: 0.2px;
}

.nesma-header--scrolled .nesma-logo__mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
}

.nesma-primary-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nesma-primary-nav__header {
    display: none;
}

.nesma-primary-nav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 42px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nesma-primary-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 108px;
    color: #09243f;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.1px;
    transition: color 180ms ease, min-height 220ms ease;
}

.nesma-header--scrolled .nesma-primary-nav__link {
    min-height: 78px;
}

.nesma-primary-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    height: 3px;
    background: var(--nesma-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease, bottom 220ms ease;
}

.nesma-header--scrolled .nesma-primary-nav__link::after {
    bottom: 10px;
}

.nesma-primary-nav__link:hover,
.nesma-primary-nav__link--active {
    color: var(--nesma-primary);
}

.nesma-primary-nav__link:hover::after,
.nesma-primary-nav__link--active::after {
    transform: scaleX(1);
}

.nesma-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--nesma-border);
    border-radius: 2px;
    color: var(--nesma-primary);
    transition: border-color 180ms ease, background 180ms ease;
}

.nesma-menu-toggle:hover {
    border-color: var(--nesma-accent);
    background: rgba(54, 198, 255, 0.08);
}

.nesma-menu-toggle__line {
    position: absolute;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 200ms ease, opacity 160ms ease;
}

.nesma-menu-toggle__line:nth-child(1) {
    transform: translateY(-7px);
}

.nesma-menu-toggle__line:nth-child(3) {
    transform: translateY(7px);
}

.nesma-menu-open .nesma-menu-toggle__line:nth-child(1) {
    transform: rotate(45deg);
}

.nesma-menu-open .nesma-menu-toggle__line:nth-child(2) {
    opacity: 0;
}

.nesma-menu-open .nesma-menu-toggle__line:nth-child(3) {
    transform: rotate(-45deg);
}

.nesma-nav-overlay {
    display: none;
}

html.nesma-menu-open,
body.nesma-menu-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .nesma-header-container {
        width: min(100% - 40px, 1170px);
    }

    .nesma-topbar__inner {
        justify-content: center;
    }

    .nesma-topbar__list {
        gap: 18px;
    }

    .nesma-topbar__link,
    .nesma-topbar__text {
        font-size: 12px;
    }

    .nesma-navbar__inner,
    .nesma-header--scrolled .nesma-navbar__inner {
        min-height: 82px;
    }

    .nesma-logo__mark,
    .nesma-header--scrolled .nesma-logo__mark {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .nesma-menu-toggle {
        position: relative;
        display: inline-flex;
        flex: 0 0 46px;
        z-index: 1012;
    }

    .nesma-nav-overlay {
        position: fixed;
        inset: 0;
        z-index: 1008;
        display: block;
        background: rgba(23, 49, 78, 0.55);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 220ms ease, visibility 220ms ease;
    }

    .nesma-menu-open .nesma-nav-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nesma-primary-nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1010;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: min(88vw, 380px);
        height: 100dvh;
        padding: 30px;
        margin: 0;
        overflow-y: auto;
        background: var(--nesma-white);
        box-shadow: -18px 0 45px rgba(0, 0, 0, 0.16);
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 260ms ease, visibility 260ms ease;
    }

    .nesma-menu-open .nesma-primary-nav {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .nesma-primary-nav__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding-bottom: 22px;
        margin-bottom: 10px;
        border-bottom: 1px solid var(--nesma-border);
    }

    .nesma-primary-nav__title {
        color: var(--nesma-primary-deep);
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .nesma-menu-close {
        position: relative;
        width: 42px;
        height: 42px;
        border: 1px solid var(--nesma-border);
        border-radius: 2px;
        color: var(--nesma-primary);
        transition: border-color 180ms ease, background 180ms ease;
    }

    .nesma-menu-close:hover {
        border-color: var(--nesma-accent);
        background: rgba(54, 198, 255, 0.08);
    }

    .nesma-menu-close span::before,
    .nesma-menu-close span::after {
        content: "";
        position: absolute;
        top: 20px;
        left: 11px;
        width: 20px;
        height: 2px;
        background: currentColor;
        border-radius: 2px;
    }

    .nesma-menu-close span::before {
        transform: rotate(45deg);
    }

    .nesma-menu-close span::after {
        transform: rotate(-45deg);
    }

    .nesma-primary-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nesma-primary-nav__item+.nesma-primary-nav__item {
        border-top: 1px solid var(--nesma-border);
    }

    .nesma-primary-nav__link,
    .nesma-header--scrolled .nesma-primary-nav__link {
        min-height: 58px;
        width: 100%;
        justify-content: space-between;
        font-size: 15px;
    }

    .nesma-primary-nav__link::after,
    .nesma-header--scrolled .nesma-primary-nav__link::after {
        left: 0;
        right: auto;
        bottom: 0;
        width: 42px;
        height: 2px;
        transform-origin: left;
    }
}

@media (max-width: 767px) {
    .nesma-header-container {
        width: min(100% - 32px, 1170px);
    }

    .nesma-topbar__inner {
        min-height: auto;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .nesma-topbar__list {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .nesma-topbar__link,
    .nesma-topbar__text {
        justify-content: center;
        min-height: 0;
        font-size: 11px;
        white-space: normal;
        text-align: center;
    }

    .nesma-navbar__inner,
    .nesma-header--scrolled .nesma-navbar__inner {
        min-height: 74px;
        gap: 16px;
    }

    .nesma-logo {
        gap: 10px;
    }

    .nesma-logo__mark,
    .nesma-header--scrolled .nesma-logo__mark {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .nesma-logo__name {
        font-size: 15px;
        letter-spacing: 4px;
    }

    .nesma-logo__tagline {
        font-size: 9px;
    }

    .nesma-primary-nav {
        width: min(92vw, 360px);
        padding: 24px;
    }
}

@media (max-width: 420px) {
    .nesma-header-container {
        width: min(100% - 24px, 1170px);
    }

    .nesma-logo__copy {
        display: none;
    }

    .nesma-primary-nav {
        width: 100vw;
    }
}

@media (prefers-reduced-motion: reduce) {

    .nesma-site-header,
    .nesma-site-header *,
    .nesma-site-header *::before,
    .nesma-site-header *::after {
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

/* Home page Hero Section */
.nesma-hero {
    --nesma-primary: #1b3654;
    --nesma-primary-deep: #17314e;
    --nesma-accent: #36c6ff;
    --nesma-white: #ffffff;
    --nesma-focus: 0 0 0 3px rgba(54, 198, 255, 0.34);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    font-family: "Open Sans", Arial, sans-serif;
    background: var(--nesma-primary-deep);
}

.nesma-hero__image {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.nesma-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(23, 49, 78, 0.62);
}

.nesma-hero__container {
    width: min(100% - 48px, 1170px);
    margin: 0 auto;
    padding: 96px 0;
}

.nesma-hero__content {
    width: min(100%, 680px);
    color: var(--nesma-white);
}

.nesma-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: var(--nesma-accent);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nesma-hero__eyebrow::before {
    content: "";
    width: 42px;
    height: 2px;
    background: currentColor;
}

.nesma-hero__title {
    max-width: 640px;
    margin: 0;
    color: var(--nesma-white);
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.18;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nesma-hero__description {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
}

.nesma-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.nesma-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 30px;
    border: 1px solid transparent;
    border-radius: 30px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nesma-hero__button--primary {
    color: var(--nesma-white);
    background: var(--nesma-primary);
    border-color: var(--nesma-primary);
}

.nesma-hero__button--primary:hover {
    background: var(--nesma-primary-deep);
    border-color: var(--nesma-primary-deep);
    transform: translateY(-1px);
}

.nesma-hero__button--secondary {
    color: var(--nesma-white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.76);
}

.nesma-hero__button--secondary:hover {
    color: var(--nesma-primary-deep);
    background: var(--nesma-white);
    border-color: var(--nesma-white);
    transform: translateY(-1px);
}

.nesma-hero__button:focus-visible {
    outline: none;
    box-shadow: var(--nesma-focus);
}

@media (max-width: 1199px) {
    .nesma-hero__container {
        padding: 88px 0;
    }
}

@media (max-width: 991px) {
    .nesma-hero__container {
        width: min(100% - 40px, 1170px);
        padding: 80px 0;
    }

    .nesma-hero__content {
        width: min(100%, 620px);
    }
}

@media (max-width: 767px) {
    .nesma-hero {
        align-items: flex-end;
    }

    .nesma-hero__image {
        object-position: 56% center;
    }

    .nesma-hero__overlay {
        background: rgba(23, 49, 78, 0.68);
    }

    .nesma-hero__container {
        width: min(100% - 32px, 1170px);
        padding: 74px 0;
    }

    .nesma-hero__description {
        margin-top: 20px;
    }

    .nesma-hero__actions {
        gap: 12px;
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .nesma-hero__container {
        padding: 64px 0;
    }

    .nesma-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .nesma-hero__button {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .nesma-hero__container {
        width: min(100% - 24px, 1170px);
    }

    .nesma-hero__eyebrow {
        font-size: 12px;
    }

    .nesma-hero__eyebrow::before {
        width: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .nesma-hero,
    .nesma-hero *,
    .nesma-hero *::before,
    .nesma-hero *::after {
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

/* About section css */
.nesma-about {
    --nesma-primary: #1b3654;
    --nesma-primary-deep: #17314e;
    --nesma-accent: #36c6ff;
    --nesma-white: #ffffff;
    --nesma-body: #666666;
    padding: 20px 0 0;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--nesma-body);
    background: var(--nesma-white);
}

.nesma-about__container {
    width: min(100% - 30px, 1170px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.nesma-about__accent {
    display: block;
    content: "";
    width: 45px;
    height: 2px;
    margin: 0 0 29px;
    background: var(--nesma-accent);
}

.nesma-about__title {
    margin: 0;
    color: var(--nesma-primary-deep);
    font-size: 26px;
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nesma-about__title strong {
    font-weight: 700;
}

.nesma-about__copy {
    margin-top: 31px;
}

.nesma-about__copy p {
    margin: 0;
    color: var(--nesma-body);
    font-size: 13px;
    line-height: 1.85;
    font-weight: 400;
}

.nesma-about__copy p+p {
    margin-top: 25px;
}

.nesma-about__copy strong {
    color: var(--nesma-primary-deep);
    font-weight: 700;
}

.nesma-about__media {
    margin: 0;
}

.nesma-about__media img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 1199px) {
    .nesma-about__container {
        width: min(100% - 30px, 1170px);
    }
}

@media (max-width: 991px) {
    .nesma-about {
        padding-top: 40px;
    }

    .nesma-about__container {
        width: min(100% - 40px, 1170px);
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .nesma-about__title {
        max-width: 720px;
    }

    .nesma-about__media {
        width: min(100%, 720px);
        justify-self: start;
    }
}

@media (max-width: 767px) {
    .nesma-about {
        padding-top: 36px;
    }

    .nesma-about__container {
        width: min(100% - 32px, 1170px);
        gap: 30px;
    }

    .nesma-about__title {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .nesma-about {
        padding-top: 32px;
    }

    .nesma-about__copy {
        margin-top: 24px;
    }
}

@media (max-width: 420px) {
    .nesma-about__container {
        width: min(100% - 24px, 1170px);
    }

    .nesma-about__title {
        font-size: 22px;
    }
}

/* Statistics CSS */
.nesma-statistics {
    --nesma-primary: #1b3654;
    --nesma-primary-deep: #17314e;
    --nesma-accent: #36c6ff;
    --nesma-white: #ffffff;
    --nesma-body: #666666;
    --nesma-border: #e5e5e5;
    padding: 50px 0 95px;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--nesma-body);
    background: var(--nesma-white);
}

.nesma-statistics__container {
    width: min(100% - 30px, 1170px);
    margin: 0 auto;
}

.nesma-statistics__container::before {
    content: "";
    display: block;
    width: 45px;
    height: 2px;
    margin: 0 0 29px;
    background: var(--nesma-accent);
}

.nesma-statistics__heading,
.nesma-statistics__sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nesma-statistics__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nesma-stat-card {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 22px;
    align-items: center;
    align-content: center;
    min-height: 128px;
    padding: 28px;
    text-align: left;
    background: var(--nesma-white);
    border: 1px solid var(--nesma-border);
    transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.nesma-stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background: var(--nesma-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.nesma-stat-card:hover {
    border-color: rgba(54, 198, 255, 0.65);
    background: #fcfdfe;
    transform: translateY(-2px);
}

.nesma-stat-card:hover::before {
    transform: scaleX(1);
}

.nesma-stat-card__icon {
    grid-row: 1 / span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: var(--nesma-accent);
}

.nesma-stat-card__icon svg {
    width: 54px;
    height: 54px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nesma-stat-card__number {
    grid-column: 2;
    margin: 0;
    color: var(--nesma-primary-deep);
    font-size: clamp(34px, 3.1vw, 44px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.nesma-stat-card__label {
    grid-column: 2;
    margin: 7px 0 0;
    color: var(--nesma-primary-deep);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 400;
}

@media (max-width: 991px) {
    .nesma-statistics {
        padding: 46px 0 82px;
    }

    .nesma-statistics__container {
        width: min(100% - 40px, 1170px);
    }

    .nesma-statistics__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .nesma-statistics {
        padding: 42px 0 72px;
    }

    .nesma-statistics__container {
        width: min(100% - 32px, 1170px);
    }

    .nesma-statistics__grid {
        gap: 24px;
    }

    .nesma-stat-card {
        padding: 26px;
    }
}

@media (max-width: 575px) {
    .nesma-statistics__grid {
        grid-template-columns: 1fr;
    }

    .nesma-stat-card__icon {
        width: 52px;
        height: 52px;
    }

    .nesma-stat-card__icon svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 420px) {
    .nesma-statistics__container {
        width: min(100% - 24px, 1170px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .nesma-statistics,
    .nesma-statistics *,
    .nesma-statistics *::before,
    .nesma-statistics *::after {
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

/* Service Section CSS */
.nesma-services-overview {
    --nesma-primary-deep: #17314e;
    --nesma-accent: #36c6ff;
    --nesma-white: #ffffff;
    --nesma-body: #666666;
    padding: 20px 0 57px;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--nesma-body);
    background: var(--nesma-white);
}

.nesma-services-overview__container {
    width: min(100% - 30px, 1170px);
    margin: 0 auto;
}

.nesma-services-overview__accent {
    display: block;
    width: 49px;
    height: 2px;
    margin: 0 0 38px;
    background: var(--nesma-accent);
}

.nesma-services-overview__title {
    margin: 0;
    color: var(--nesma-primary-deep);
    font-size: 34px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nesma-services-overview__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    padding: 0;
    margin: 78px 0 0;
    list-style: none;
}

.nesma-services-overview-card {
    min-width: 0;
    padding: 0 22px;
    text-align: center;
    background: var(--nesma-white);
    transition: transform 180ms ease;
}

.nesma-services-overview-card:hover {
    transform: translateY(-2px);
}

.nesma-services-overview-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 106px;
    height: 90px;
    color: var(--nesma-accent);
    transition: color 180ms ease;
}

.nesma-services-overview-card__icon svg {
    display: block;
    width: 106px;
    height: 90px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nesma-services-overview-card:hover .nesma-services-overview-card__icon {
    color: #20baf2;
}

.nesma-services-overview-card__title {
    margin: 25px 0 0;
    color: var(--nesma-primary-deep);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: 0.1px;
    text-transform: uppercase;
}

.nesma-services-overview-card__description {
    max-width: 360px;
    margin: 20px auto 0;
    color: #717982;
    font-size: 14px;
    line-height: 1.85;
    font-weight: 400;
}

@media (max-width: 991px) {
    .nesma-services-overview {
        padding: 34px 0 72px;
    }

    .nesma-services-overview__container {
        width: min(100% - 40px, 1170px);
    }

    .nesma-services-overview__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 30px;
        margin-top: 68px;
    }

    .nesma-services-overview-card {
        padding: 0 14px;
    }
}

@media (max-width: 767px) {
    .nesma-services-overview {
        padding: 32px 0 66px;
    }

    .nesma-services-overview__container {
        width: min(100% - 32px, 1170px);
    }

    .nesma-services-overview__title {
        font-size: 30px;
    }

    .nesma-services-overview__grid {
        grid-template-columns: 1fr;
        gap: 48px;
        margin-top: 58px;
    }

    .nesma-services-overview-card {
        padding: 0;
    }

    .nesma-services-overview-card__description {
        max-width: 520px;
    }
}

@media (max-width: 575px) {
    .nesma-services-overview {
        padding: 30px 0 60px;
    }

    .nesma-services-overview__accent {
        margin-bottom: 30px;
    }

    .nesma-services-overview__title {
        font-size: 26px;
    }

    .nesma-services-overview__grid {
        margin-top: 50px;
    }

    .nesma-services-overview-card__title {
        font-size: 22px;
    }

    .nesma-services-overview-card__description {
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .nesma-services-overview__container {
        width: min(100% - 24px, 1170px);
    }

    .nesma-services-overview__title {
        font-size: 24px;
    }

    .nesma-services-overview-card__icon {
        width: 96px;
        height: 82px;
    }

    .nesma-services-overview-card__icon svg {
        width: 96px;
        height: 82px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .nesma-services-overview,
    .nesma-services-overview *,
    .nesma-services-overview *::before,
    .nesma-services-overview *::after {
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

/* Call to action at Home */
.nesma-cta {
    --nesma-primary: #1b3654;
    --nesma-primary-deep: #17314e;
    --nesma-accent: #36c6ff;
    --nesma-white: #ffffff;
    --nesma-body: #666666;
    --nesma-focus: 0 0 0 3px rgba(54, 198, 255, 0.34);
    min-height: 350px;
    display: flex;
    align-items: center;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--nesma-primary-deep);
    background-color: #f7f7f7;
    background-image: url("../Images/bg-cta-2-scaled.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.nesma-cta__container {
    width: min(100% - 30px, 1170px);
    margin: 0 auto;
}

.nesma-cta__content {
    width: min(100%, 680px);
    padding: 72px 0 74px;
}

.nesma-cta__title {
    margin: 0;
    color: var(--nesma-primary-deep);
    font-size: clamp(28px, 2.65vw, 36px);
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.nesma-cta__description {
    max-width: 690px;
    margin: 26px 0 0;
    color: #2f3540;
    font-size: 14px;
    line-height: 1.85;
    font-weight: 400;
}

.nesma-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 46px;
    margin-top: 30px;
    padding: 12px 28px;
    border-radius: 30px;
    color: var(--nesma-white);
    background: var(--nesma-accent);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 180ms ease, transform 180ms ease;
}

.nesma-cta__button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 180ms ease;
}

.nesma-cta__button:hover {
    background: var(--nesma-primary);
    transform: translateY(-1px);
}

.nesma-cta__button:hover svg {
    transform: translateX(3px);
}

.nesma-cta__button:focus-visible {
    outline: none;
    box-shadow: var(--nesma-focus);
}

@media (max-width: 1199px) {
    .nesma-cta {
        min-height: 340px;
    }

    .nesma-cta__content {
        width: min(100%, 620px);
    }
}

@media (max-width: 991px) {
    .nesma-cta {
        min-height: 330px;
        background-position: 58% center;
    }

    .nesma-cta__container {
        width: min(100% - 40px, 1170px);
    }

    .nesma-cta__content {
        width: min(100%, 560px);
        padding: 64px 0;
    }
}

@media (max-width: 767px) {
    .nesma-cta {
        min-height: 360px;
        background-position: 64% center;
    }

    .nesma-cta__container {
        width: min(100% - 32px, 1170px);
    }

    .nesma-cta__content {
        width: min(100%, 520px);
        padding: 58px 0;
    }

    .nesma-cta__title {
        font-size: 27px;
    }

    .nesma-cta__description {
        max-width: 480px;
        margin-top: 22px;
    }
}

@media (max-width: 575px) {
    .nesma-cta {
        min-height: 380px;
        align-items: flex-start;
        background-position: 70% center;
    }

    .nesma-cta__content {
        padding: 46px 0 52px;
    }

    .nesma-cta__title {
        max-width: 340px;
        font-size: 24px;
    }

    .nesma-cta__description {
        max-width: 330px;
        font-size: 13px;
        line-height: 1.8;
    }

    .nesma-cta__button {
        margin-top: 26px;
    }
}

@media (max-width: 420px) {
    .nesma-cta__container {
        width: min(100% - 24px, 1170px);
    }

    .nesma-cta__title {
        font-size: 22px;
    }

    .nesma-cta__button {
        min-height: 44px;
        padding: 11px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .nesma-cta,
    .nesma-cta *,
    .nesma-cta *::before,
    .nesma-cta *::after {
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

/* Service Benifits  */
.nesma-service-benefits {
    --nesma-primary-deep: #17314e;
    --nesma-accent: #36c6ff;
    --nesma-white: #ffffff;
    --nesma-body: #666666;
    padding: 43px 0 55px;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--nesma-body);
    background: var(--nesma-white);
}

.nesma-service-benefits__heading {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nesma-service-benefits__container {
    width: min(100% - 30px, 1170px);
    margin: 0 auto;
}

.nesma-service-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nesma-service-benefit {
    min-width: 0;
    padding: 0 36px;
    text-align: center;
    background: var(--nesma-white);
    transition: transform 180ms ease;
}

.nesma-service-benefit:hover {
    transform: translateY(-2px);
}

.nesma-service-benefit__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    color: var(--nesma-accent);
    transition: color 180ms ease;
}

.nesma-service-benefit__icon svg {
    display: block;
    width: 70px;
    height: 70px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nesma-service-benefit:hover .nesma-service-benefit__icon {
    color: #20baf2;
}

.nesma-service-benefit__title {
    margin: 37px 0 0;
    color: var(--nesma-primary-deep);
    font-size: 23px;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.nesma-service-benefit__description {
    max-width: 340px;
    margin: 20px auto 0;
    color: #707982;
    font-size: 14px;
    line-height: 1.85;
    font-weight: 400;
}

@media (max-width: 991px) {
    .nesma-service-benefits {
        padding: 40px 0 58px;
    }

    .nesma-service-benefits__container {
        width: min(100% - 40px, 1170px);
    }

    .nesma-service-benefits__grid {
        gap: 24px;
    }

    .nesma-service-benefit {
        padding: 0 12px;
    }

    .nesma-service-benefit__title {
        font-size: 21px;
    }
}

@media (max-width: 767px) {
    .nesma-service-benefits {
        padding: 52px 0 58px;
    }

    .nesma-service-benefits__container {
        width: min(100% - 32px, 1170px);
    }

    .nesma-service-benefits__grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .nesma-service-benefit {
        padding: 0;
    }

    .nesma-service-benefit__title {
        margin-top: 28px;
    }

    .nesma-service-benefit__description {
        max-width: 520px;
    }
}

@media (max-width: 575px) {
    .nesma-service-benefits {
        padding: 48px 0 54px;
    }

    .nesma-service-benefit__title {
        font-size: 20px;
    }

    .nesma-service-benefit__description {
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .nesma-service-benefits__container {
        width: min(100% - 24px, 1170px);
    }

    .nesma-service-benefit__icon {
        width: 66px;
        height: 66px;
    }

    .nesma-service-benefit__icon svg {
        width: 64px;
        height: 64px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .nesma-service-benefits,
    .nesma-service-benefits *,
    .nesma-service-benefits *::before,
    .nesma-service-benefits *::after {
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

/* Form Section */
.nesma-quote {
    --nesma-primary: #1b3654;
    --nesma-primary-deep: #17314e;
    --nesma-accent: #36c6ff;
    --nesma-white: #ffffff;
    --nesma-body: #666666;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--nesma-body);
    background: var(--nesma-white);
}

.nesma-quote__container {
    width: min(100% - 30px, 1170px);
    min-height: 445px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: 70px;
    align-items: start;
    background: var(--nesma-white);
}

.nesma-quote__intro {
    padding: 54px 0 56px;
    background: var(--nesma-white);
}

.nesma-quote__panel {
    align-self: start;
    padding: 54px 40px 56px;
    color: var(--nesma-white);
    background: var(--nesma-primary-deep);
}

.nesma-quote__accent {
    display: block;
    width: 33px;
    height: 2px;
    margin: 0 0 26px;
    background: var(--nesma-accent);
}

.nesma-quote__title,
.nesma-quote__form-title {
    margin: 0;
    font-size: 23px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.nesma-quote__title {
    color: var(--nesma-primary-deep);
    font-size: 26px;
    line-height: 1.24;
}

.nesma-quote__form-title {
    color: var(--nesma-white);
    font-size: 34px;
    line-height: 1.15;
}

.nesma-quote__description {
    max-width: 440px;
    margin: 25px 0 0;
    color: #4f5963;
    font-size: 14px;
    line-height: 1.85;
    font-weight: 400;
}

.nesma-quote__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 42px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.nesma-quote-feature {
    min-width: 0;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 17px;
    align-items: center;
}

.nesma-quote-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--nesma-accent);
}

.nesma-quote-feature__icon svg {
    display: block;
    width: 46px;
    height: 46px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nesma-quote-feature__label {
    color: var(--nesma-primary-deep);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.15px;
    text-transform: uppercase;
}

.nesma-quote-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(5, 40px);
    gap: 45px 34px;
    margin-top: 32px;
}

.nesma-quote-form__control {
    width: 100%;
    min-width: 0;
    height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 0;
    color: #17314e;
    background: var(--nesma-white);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    outline: none;
    box-sizing: border-box;
}

.nesma-quote-form__control::placeholder {
    color: #8c96a0;
    opacity: 1;
}

.nesma-quote-form__control:focus-visible {
    outline: 2px solid var(--nesma-accent);
    outline-offset: 2px;
}

select.nesma-quote-form__control {
    appearance: auto;
    color: #8c96a0;
}

.nesma-quote-form__message {
    min-height: 99px;
    height: 99px;
    padding-top: 13px;
    resize: vertical;
    grid-row: span 2;
}

.nesma-quote-form__button {
    width: 100%;
    height: 41px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 22px;
    border: 2px solid var(--nesma-accent);
    border-radius: 30px;
    color: var(--nesma-white);
    background: transparent;
    font-family: inherit;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease;
}

.nesma-quote-form__button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nesma-quote-form__button:hover {
    color: var(--nesma-primary-deep);
    background: var(--nesma-accent);
}

.nesma-quote-form__button:focus-visible {
    outline: 2px solid var(--nesma-accent);
    outline-offset: 3px;
}

@media (max-width: 991px) {
    .nesma-quote__container {
        width: min(100% - 40px, 1170px);
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nesma-quote__intro,
    .nesma-quote__panel {
        padding: 48px 34px;
    }

    .nesma-quote__description {
        max-width: 520px;
    }
}

@media (max-width: 767px) {
    .nesma-quote__container {
        width: min(100% - 32px, 1170px);
    }

    .nesma-quote__features,
    .nesma-quote-form {
        grid-template-columns: 1fr;
    }

    .nesma-quote-form {
        grid-template-rows: none;
        gap: 20px;
    }

    .nesma-quote__features {
        gap: 24px;
    }

    .nesma-quote-form__message {
        grid-row: auto;
        height: 110px;
        min-height: 110px;
    }
}

@media (max-width: 575px) {

    .nesma-quote__intro,
    .nesma-quote__panel {
        padding: 42px 24px;
    }

    .nesma-quote__title,
    .nesma-quote__form-title {
        font-size: 21px;
    }

    .nesma-quote__form-title {
        font-size: 26px;
    }
}

@media (max-width: 420px) {
    .nesma-quote__container {
        width: min(100% - 24px, 1170px);
    }

    .nesma-quote__form-title {
        font-size: 24px;
    }

    .nesma-quote-form__control {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .nesma-quote,
    .nesma-quote *,
    .nesma-quote *::before,
    .nesma-quote *::after {
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

.nesma-site-footer {
    --nesma-primary: #1b3654;
    --nesma-primary-deep: #17314e;
    --nesma-accent: #36c6ff;
    --nesma-white: #ffffff;
    --nesma-muted: #b9c6d2;
    --nesma-border-soft: rgba(255, 255, 255, 0.16);
    --nesma-focus: 0 0 0 3px rgba(54, 198, 255, 0.34);
    position: relative;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--nesma-white);
    background: var(--nesma-primary);
}

.nesma-site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--nesma-accent);
}

.nesma-site-footer a {
    color: inherit;
    text-decoration: none;
}

.nesma-site-footer a:focus-visible {
    outline: none;
    box-shadow: var(--nesma-focus);
}

.nesma-footer__heading {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nesma-footer-container {
    width: min(100% - 48px, 1170px);
    margin: 0 auto;
}

.nesma-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.45fr) minmax(180px, 0.7fr);
    gap: 70px;
    padding: 72px 0 54px;
}

.nesma-footer__brand,
.nesma-footer__section {
    min-width: 0;
}

.nesma-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    border-radius: 2px;
}

.nesma-footer-logo__mark {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
}

.nesma-footer-logo__mark-accent {
    fill: var(--nesma-accent);
}

.nesma-footer-logo__mark-shadow {
    fill: #9ba8b5;
}

.nesma-footer-logo__copy {
    display: grid;
    gap: 3px;
}

.nesma-footer-logo__name {
    color: var(--nesma-white);
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 5.2px;
}

.nesma-footer-logo__tagline {
    color: var(--nesma-muted);
    font-size: 10px;
    line-height: 1.35;
    font-style: italic;
    letter-spacing: 0.2px;
}

.nesma-footer__description {
    max-width: 390px;
    margin: 28px 0 0;
    color: var(--nesma-muted);
    font-size: 15px;
    line-height: 1.8;
}

.nesma-footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 26px 0 0;
    list-style: none;
}

.nesma-footer-social__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--nesma-border-soft);
    color: var(--nesma-accent);
    background: rgba(255, 255, 255, 0.04);
}

.nesma-footer-social__icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nesma-footer__title {
    position: relative;
    margin: 0 0 28px;
    padding-top: 12px;
    color: var(--nesma-white);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nesma-footer__title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 2px;
    background: var(--nesma-accent);
}

.nesma-footer-contact {
    font-style: normal;
}

.nesma-footer-contact__list,
.nesma-footer-nav__list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.nesma-footer-contact__list {
    display: grid;
    gap: 18px;
}

.nesma-footer-contact__item {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    color: var(--nesma-muted);
    font-size: 14px;
    line-height: 1.75;
}

.nesma-footer-contact__item a {
    transition: color 180ms ease;
}

.nesma-footer-contact__item a:hover {
    color: var(--nesma-accent);
}

.nesma-footer-contact__icon {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    fill: none;
    stroke: var(--nesma-accent);
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nesma-footer-nav__list {
    display: grid;
    gap: 14px;
}

.nesma-footer-nav__list a {
    position: relative;
    display: inline-flex;
    color: var(--nesma-white);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    transition: color 180ms ease, transform 180ms ease;
}

.nesma-footer-nav__list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: var(--nesma-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.nesma-footer-nav__list a:hover {
    color: var(--nesma-accent);
    transform: translateX(2px);
}

.nesma-footer-nav__list a:hover::after {
    transform: scaleX(1);
}

.nesma-footer__bottom {
    padding: 24px 0 28px;
    border-top: 1px solid var(--nesma-border-soft);
}

.nesma-footer__bottom p {
    margin: 0;
    color: var(--nesma-white);
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .nesma-footer-container {
        width: min(100% - 40px, 1170px);
    }

    .nesma-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 52px;
        padding-top: 62px;
    }

    .nesma-footer__section:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .nesma-footer-container {
        width: min(100% - 32px, 1170px);
    }

    .nesma-footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 54px 0 44px;
    }

    .nesma-footer__section:last-child {
        grid-column: auto;
    }

    .nesma-footer__description {
        max-width: none;
    }

    .nesma-footer__bottom {
        padding-bottom: 24px;
    }
}

@media (max-width: 420px) {
    .nesma-footer-container {
        width: min(100% - 24px, 1170px);
    }

    .nesma-footer-logo__copy {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    .nesma-site-footer,
    .nesma-site-footer *,
    .nesma-site-footer *::before,
    .nesma-site-footer *::after {
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

.nesma-page-banner {
    min-height: 50vh;
}

.nesma-page-banner .nesma-hero__container {
    padding: 48px 0;
}

.nesma-page-banner__breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.88);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}

.nesma-page-banner__breadcrumb a {
    color: var(--nesma-white);
    text-decoration: none;
    transition: color 180ms ease;
}

.nesma-page-banner__breadcrumb a:hover {
    color: var(--nesma-accent);
}

.nesma-page-banner__breadcrumb a:focus-visible {
    outline: none;
    box-shadow: var(--nesma-focus);
}

.nesma-page-banner__separator {
    color: var(--nesma-accent);
}

.nesma-page-banner__current {
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1199px) {
    .nesma-page-banner .nesma-hero__container {
        padding: 44px 0;
    }
}

@media (max-width: 991px) {
    .nesma-page-banner .nesma-hero__container {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .nesma-page-banner {
        min-height: 50vh;
    }

    .nesma-page-banner .nesma-hero__container {
        padding: 37px 0;
    }

    .nesma-page-banner__breadcrumb {
        margin-top: 16px;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .nesma-page-banner .nesma-hero__container {
        padding: 32px 0;
    }
}

@media (prefers-reduced-motion: reduce) {

    .nesma-page-banner,
    .nesma-page-banner *,
    .nesma-page-banner *::before,
    .nesma-page-banner *::after {
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

/* About page Start Here */
/* About Section */
.nesma-about-company {
    --nesma-primary: #1b3654;
    --nesma-primary-deep: #17314e;
    --nesma-accent: #36c6ff;
    --nesma-white: #ffffff;
    --nesma-body: #666666;
    padding: 36px 0 0;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--nesma-body);
    background: var(--nesma-white);
}

.nesma-about-company__container {
    width: min(100% - 30px, 1170px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(260px, 4fr);
    gap: 30px;
    align-items: start;
}

.nesma-about-company__content,
.nesma-about-company__visual {
    min-width: 0;
}

.nesma-about-company__content {
    max-width: 748px;
}

.nesma-about-company__accent {
    width: 45px;
    height: 2px;
    display: block;
    margin: 0 0 38px;
    background: var(--nesma-accent);
}

.nesma-about-company__title {
    margin: 0;
    color: var(--nesma-primary-deep);
    font-size: 32px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nesma-about-company__copy {
    margin-top: 33px;
}

.nesma-about-company__copy p {
    margin: 0;
    color: var(--nesma-body);
    font-size: 14px;
    line-height: 1.84;
    font-weight: 400;
}

.nesma-about-company__accent--bottom {
    margin: 26px 0 0;
}

.nesma-about-company__visual {
    width: min(100%, 340px);
    margin: 145px 0 0;
    justify-self: center;
    background: var(--nesma-white);
}

.nesma-about-company__visual img {
    display: block;
    width: min(100%, 240px);
    height: auto;
    margin: 0 auto;
}

@media (max-width: 1199px) {
    .nesma-about-company__container {
        grid-template-columns: minmax(0, 7fr) minmax(240px, 5fr);
    }
}

@media (max-width: 991px) {
    .nesma-about-company {
        padding-top: 40px;
    }

    .nesma-about-company__container {
        width: min(100% - 40px, 1170px);
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .nesma-about-company__content {
        max-width: none;
    }

    .nesma-about-company__visual {
        width: min(100%, 280px);
        margin-top: 0;
        justify-self: center;
    }
}

@media (max-width: 767px) {
    .nesma-about-company {
        padding-top: 36px;
    }

    .nesma-about-company__container {
        width: min(100% - 32px, 1170px);
        gap: 30px;
    }

    .nesma-about-company__title {
        font-size: 28px;
    }

    .nesma-about-company__copy p {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .nesma-about-company {
        padding-top: 32px;
    }

    .nesma-about-company__accent {
        margin-bottom: 30px;
    }

    .nesma-about-company__copy {
        margin-top: 26px;
    }
}

@media (max-width: 420px) {
    .nesma-about-company__container {
        width: min(100% - 24px, 1170px);
    }

    .nesma-about-company__title {
        font-size: 24px;
    }
}

/* Our Mission */
.nesma-mission {
    --nesma-primary-deep: #17314e;
    --nesma-accent: #36c6ff;
    --nesma-white: #ffffff;
    --nesma-body: #666666;
    padding: 22px 0 87px;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--nesma-body);
    background: var(--nesma-white);
}

.nesma-mission__container {
    width: min(100% - 30px, 1170px);
    margin: 0 auto;
    padding: 0 28px;
    box-sizing: border-box;
}

.nesma-mission__title {
    margin: 0;
    color: var(--nesma-primary-deep);
    font-size: 34px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nesma-mission__columns {
    display: grid;
    grid-template-columns: minmax(0, 500px) minmax(0, 500px);
    column-gap: 70px;
    margin-top: 34px;
}

.nesma-mission__list {
    display: grid;
    gap: 17px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nesma-mission__item {
    min-width: 0;
    display: grid;
    grid-template-columns: 15px minmax(0, 1fr);
    column-gap: 15px;
    align-items: center;
    color: #7c7c7c;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

.nesma-mission__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    color: var(--nesma-accent);
}

.nesma-mission__check svg {
    display: block;
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1199px) {
    .nesma-mission__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 54px;
    }
}

@media (max-width: 991px) {
    .nesma-mission {
        padding: 40px 0 82px;
    }

    .nesma-mission__container {
        width: min(100% - 40px, 1170px);
        padding: 0;
    }

    .nesma-mission__columns {
        column-gap: 40px;
    }
}

@media (max-width: 767px) {
    .nesma-mission {
        padding: 36px 0 72px;
    }

    .nesma-mission__container {
        width: min(100% - 32px, 1170px);
    }

    .nesma-mission__title {
        font-size: 30px;
    }

    .nesma-mission__columns {
        grid-template-columns: 1fr;
        row-gap: 17px;
        margin-top: 32px;
    }
}

@media (max-width: 575px) {
    .nesma-mission {
        padding: 32px 0 66px;
    }
}

@media (max-width: 420px) {
    .nesma-mission__container {
        width: min(100% - 24px, 1170px);
    }

    .nesma-mission__title {
        font-size: 24px;
    }
}

/* Call to Action */
.nesma-about-cta {
    --nesma-accent: #36c6ff;
    --nesma-white: #ffffff;
    --nesma-focus: 0 0 0 3px rgba(54, 198, 255, 0.34);
    min-height: 159px;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--nesma-white);
    background: var(--nesma-accent);
}

.nesma-about-cta__container {
    width: min(100% - 30px, 1170px);
    min-height: 159px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nesma-about-cta__title {
    margin: 0;
    color: var(--nesma-white);
    font-size: 29px;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: -0.1px;
}

.nesma-about-cta__button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    min-width: 194px;
    min-height: 54px;
    padding: 13px 29px;
    border: 2px solid var(--nesma-white);
    border-radius: 30px;
    color: var(--nesma-white);
    background: transparent;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nesma-about-cta__button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 180ms ease;
}

.nesma-about-cta__button:hover {
    color: var(--nesma-accent);
    background: var(--nesma-white);
    transform: translateY(-1px);
}

.nesma-about-cta__button:hover svg {
    transform: translateX(3px);
}

.nesma-about-cta__button:focus-visible {
    outline: none;
    box-shadow: var(--nesma-focus);
}

@media (max-width: 1199px) {
    .nesma-about-cta__title {
        font-size: 27px;
    }
}

@media (max-width: 991px) {
    .nesma-about-cta__container {
        width: min(100% - 40px, 1170px);
        gap: 28px;
    }
}

@media (max-width: 767px) {
    .nesma-about-cta__container {
        width: min(100% - 32px, 1170px);
        min-height: 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 26px;
        padding: 42px 0;
    }

    .nesma-about-cta__title {
        font-size: 25px;
    }
}

@media (max-width: 420px) {
    .nesma-about-cta__container {
        width: min(100% - 24px, 1170px);
    }

    .nesma-about-cta__title {
        font-size: 22px;
    }

    .nesma-about-cta__button {
        min-width: 178px;
        min-height: 50px;
        padding: 11px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .nesma-about-cta,
    .nesma-about-cta *,
    .nesma-about-cta *::before,
    .nesma-about-cta *::after {
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

/* Service Page Starts */
.nesma-services {
    --nesma-primary: #1b3654;
    --nesma-primary-deep: #17314e;
    --nesma-accent: #36c6ff;
    --nesma-white: #ffffff;
    --nesma-body: #666666;
    --nesma-border: #e5e5e5;
    padding: 38px 0 92px;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--nesma-body);
    background: var(--nesma-white);
}

.nesma-services__container {
    width: min(100% - 30px, 1170px);
    margin: 0 auto;
}

.nesma-services__accent {
    display: block;
    width: 45px;
    height: 2px;
    margin: 0 0 29px;
    background: var(--nesma-accent);
}

.nesma-services__title {
    margin: 0;
    color: var(--nesma-primary-deep);
    font-size: 26px;
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nesma-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    padding: 0;
    margin: 78px 0 0;
    list-style: none;
}

.nesma-service-card {
    min-width: 0;
    padding: 0 28px;
    text-align: center;
    background: var(--nesma-white);
    transition: transform 180ms ease;
}

.nesma-service-card:hover {
    transform: translateY(-2px);
}

.nesma-service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 94px;
    color: var(--nesma-accent);
}

.nesma-service-card__icon svg {
    display: block;
    width: 86px;
    height: 86px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nesma-service-card__title {
    margin: 28px 0 0;
    color: var(--nesma-primary-deep);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.nesma-service-card__description {
    max-width: 340px;
    margin: 22px auto 0;
    color: var(--nesma-body);
    font-size: 13px;
    line-height: 1.85;
    font-weight: 400;
}

@media (max-width: 991px) {
    .nesma-services {
        padding: 34px 0 82px;
    }

    .nesma-services__container {
        width: min(100% - 40px, 1170px);
    }

    .nesma-services__grid {
        gap: 24px;
        margin-top: 64px;
    }

    .nesma-service-card {
        padding: 0 12px;
    }

    .nesma-service-card__title {
        font-size: 19px;
    }
}

@media (max-width: 767px) {
    .nesma-services {
        padding: 32px 0 72px;
    }

    .nesma-services__container {
        width: min(100% - 32px, 1170px);
    }

    .nesma-services__grid {
        grid-template-columns: 1fr;
        gap: 46px;
        margin-top: 54px;
    }

    .nesma-service-card {
        padding: 0;
    }

    .nesma-service-card__description {
        max-width: 520px;
    }
}

@media (max-width: 575px) {
    .nesma-services {
        padding: 30px 0 66px;
    }

    .nesma-services__grid {
        gap: 42px;
    }

    .nesma-services__title {
        font-size: 24px;
    }
}

@media (max-width: 420px) {
    .nesma-services__container {
        width: min(100% - 24px, 1170px);
    }

    .nesma-services__title {
        font-size: 22px;
    }

    .nesma-service-card__icon {
        width: 84px;
        height: 84px;
    }

    .nesma-service-card__icon svg {
        width: 78px;
        height: 78px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .nesma-services,
    .nesma-services *,
    .nesma-services *::before,
    .nesma-services *::after {
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

/* Service Quotation Section */
.nesma-services-quote {
    --nesma-primary-deep: #17314e;
    --nesma-accent: #36c6ff;
    --nesma-white: #ffffff;
    --nesma-body: #666666;
    --nesma-focus: 0 0 0 3px rgba(54, 198, 255, 0.34);
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--nesma-body);
    background: var(--nesma-white);
}

.nesma-services-quote__container {
    width: min(100% - 30px, 1260px);
    min-height: 480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
    align-items: stretch;
    background: var(--nesma-white);
}

.nesma-services-quote__info {
    padding: 26px 40px 34px;
    background: var(--nesma-white);
}

.nesma-services-quote__panel {
    padding: 26px 40px 28px;
    color: var(--nesma-white);
    background: var(--nesma-primary-deep);
}

.nesma-services-quote__title {
    margin: 0;
    color: var(--nesma-primary-deep);
    font-size: 34px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.nesma-services-quote__title--light {
    color: var(--nesma-white);
}

.nesma-services-quote__description {
    max-width: 410px;
    margin: 35px 0 0;
    color: #737d86;
    font-size: 14px;
    line-height: 1.78;
    font-weight: 400;
}

.nesma-services-quote__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px 34px;
    padding: 0;
    margin: 88px 0 0;
    list-style: none;
}

.nesma-services-quote-feature {
    min-width: 0;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
}

.nesma-services-quote-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    color: var(--nesma-accent);
}

.nesma-services-quote-feature__icon svg {
    display: block;
    width: 70px;
    height: 70px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nesma-services-quote-feature__label {
    color: var(--nesma-primary-deep);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
    letter-spacing: 0.1px;
    text-transform: uppercase;
}

.nesma-services-quote-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(5, 40px);
    grid-template-areas:
        "freight dimension"
        "departure email"
        "delivery message"
        "incoterms message"
        "weight button";
    gap: 45px 34px;
    margin-top: 32px;
}

.nesma-services-quote-form__control {
    width: 100%;
    min-width: 0;
    height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 0;
    color: var(--nesma-primary-deep);
    background: var(--nesma-white);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    outline: none;
    box-sizing: border-box;
}

.nesma-services-quote-form__control::placeholder {
    color: #7e8790;
    opacity: 1;
}

.nesma-services-quote-form__control:focus-visible {
    outline: 2px solid var(--nesma-accent);
    outline-offset: 2px;
}

.nesma-services-quote-form select.nesma-services-quote-form__control {
    color: #7e8790;
}

.nesma-services-quote-form__control--freight {
    grid-area: freight;
}

.nesma-services-quote-form__control--dimension {
    grid-area: dimension;
}

.nesma-services-quote-form__control--departure {
    grid-area: departure;
}

.nesma-services-quote-form__control--email {
    grid-area: email;
}

.nesma-services-quote-form__control--delivery {
    grid-area: delivery;
}

.nesma-services-quote-form__message {
    grid-area: message;
    height: 99px;
    min-height: 99px;
    padding-top: 13px;
    resize: vertical;
}

.nesma-services-quote-form__control--incoterms {
    grid-area: incoterms;
}

.nesma-services-quote-form__control--weight {
    grid-area: weight;
}

.nesma-services-quote-form__button {
    grid-area: button;
    width: 100%;
    height: 41px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 22px;
    border: 2px solid var(--nesma-accent);
    border-radius: 30px;
    color: var(--nesma-white);
    background: transparent;
    font-family: inherit;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease;
}

.nesma-services-quote-form__button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nesma-services-quote-form__button:hover {
    color: var(--nesma-primary-deep);
    background: var(--nesma-accent);
}

.nesma-services-quote-form__button:focus-visible {
    outline: 2px solid var(--nesma-accent);
    outline-offset: 3px;
}

@media (max-width: 1199px) {
    .nesma-services-quote__container {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
    }

    .nesma-services-quote__info,
    .nesma-services-quote__panel {
        padding-right: 32px;
        padding-left: 32px;
    }

    .nesma-services-quote-form {
        gap: 42px 30px;
    }
}

@media (max-width: 991px) {
    .nesma-services-quote__container {
        width: min(100% - 40px, 1260px);
        grid-template-columns: 1fr;
    }

    .nesma-services-quote__info,
    .nesma-services-quote__panel {
        padding: 42px 34px;
    }

    .nesma-services-quote__features {
        margin-top: 60px;
    }
}

@media (max-width: 767px) {
    .nesma-services-quote__container {
        width: min(100% - 32px, 1260px);
    }

    .nesma-services-quote__title {
        font-size: 30px;
    }

    .nesma-services-quote__features {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .nesma-services-quote-form {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-template-areas:
            "freight"
            "dimension"
            "departure"
            "email"
            "delivery"
            "message"
            "incoterms"
            "weight"
            "button";
        gap: 20px;
    }

    .nesma-services-quote-form__message {
        height: 110px;
        min-height: 110px;
    }
}

@media (max-width: 575px) {

    .nesma-services-quote__info,
    .nesma-services-quote__panel {
        padding: 36px 24px;
    }

    .nesma-services-quote__title {
        font-size: 26px;
    }

    .nesma-services-quote__description {
        margin-top: 28px;
        font-size: 13px;
    }

    .nesma-services-quote__features {
        margin-top: 46px;
    }

    .nesma-services-quote-feature {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 18px;
    }

    .nesma-services-quote-feature__icon,
    .nesma-services-quote-feature__icon svg {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 420px) {
    .nesma-services-quote__container {
        width: min(100% - 24px, 1260px);
    }

    .nesma-services-quote__info,
    .nesma-services-quote__panel {
        padding: 32px 18px;
    }

    .nesma-services-quote__title {
        font-size: 24px;
    }

    .nesma-services-quote-form__control {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .nesma-services-quote,
    .nesma-services-quote *,
    .nesma-services-quote *::before,
    .nesma-services-quote *::after {
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

/* Service Section */
.nesma-services-overview {
    --nesma-primary-deep: #17314e;
    --nesma-accent: #36c6ff;
    --nesma-white: #ffffff;
    --nesma-body: #666666;
    padding: 20px 0 57px;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--nesma-body);
    background: var(--nesma-white);
}

.nesma-services-overview__container {
    width: min(100% - 30px, 1170px);
    margin: 0 auto;
}

.nesma-services-overview__accent {
    display: block;
    width: 49px;
    height: 2px;
    margin: 0 0 38px;
    background: var(--nesma-accent);
}

.nesma-services-overview__title {
    margin: 0;
    color: var(--nesma-primary-deep);
    font-size: 34px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nesma-services-overview__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    padding: 0;
    margin: 78px 0 0;
    list-style: none;
}

.nesma-services-overview-card {
    min-width: 0;
    padding: 0 22px;
    text-align: center;
    background: var(--nesma-white);
    transition: transform 180ms ease;
}

.nesma-services-overview-card:hover {
    transform: translateY(-2px);
}

.nesma-services-overview-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 106px;
    height: 90px;
    color: var(--nesma-accent);
    transition: color 180ms ease;
}

.nesma-services-overview-card__icon svg {
    display: block;
    width: 106px;
    height: 90px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nesma-services-overview-card:hover .nesma-services-overview-card__icon {
    color: #20baf2;
}

.nesma-services-overview-card__title {
    margin: 25px 0 0;
    color: var(--nesma-primary-deep);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: 0.1px;
    text-transform: uppercase;
}

.nesma-services-overview-card__description {
    max-width: 360px;
    margin: 20px auto 0;
    color: #717982;
    font-size: 14px;
    line-height: 1.85;
    font-weight: 400;
}

@media (max-width: 991px) {
    .nesma-services-overview {
        padding: 34px 0 72px;
    }

    .nesma-services-overview__container {
        width: min(100% - 40px, 1170px);
    }

    .nesma-services-overview__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 30px;
        margin-top: 68px;
    }

    .nesma-services-overview-card {
        padding: 0 14px;
    }
}

@media (max-width: 767px) {
    .nesma-services-overview {
        padding: 32px 0 66px;
    }

    .nesma-services-overview__container {
        width: min(100% - 32px, 1170px);
    }

    .nesma-services-overview__title {
        font-size: 30px;
    }

    .nesma-services-overview__grid {
        grid-template-columns: 1fr;
        gap: 48px;
        margin-top: 58px;
    }

    .nesma-services-overview-card {
        padding: 0;
    }

    .nesma-services-overview-card__description {
        max-width: 520px;
    }
}

@media (max-width: 575px) {
    .nesma-services-overview {
        padding: 30px 0 60px;
    }

    .nesma-services-overview__accent {
        margin-bottom: 30px;
    }

    .nesma-services-overview__title {
        font-size: 26px;
    }

    .nesma-services-overview__grid {
        margin-top: 50px;
    }

    .nesma-services-overview-card__title {
        font-size: 22px;
    }

    .nesma-services-overview-card__description {
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .nesma-services-overview__container {
        width: min(100% - 24px, 1170px);
    }

    .nesma-services-overview__title {
        font-size: 24px;
    }

    .nesma-services-overview-card__icon {
        width: 96px;
        height: 82px;
    }

    .nesma-services-overview-card__icon svg {
        width: 96px;
        height: 82px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .nesma-services-overview,
    .nesma-services-overview *,
    .nesma-services-overview *::before,
    .nesma-services-overview *::after {
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

/* Contact form Start here */
.nesma-contact-section {
    --nesma-primary-deep: #17314e;
    --nesma-accent: #36c6ff;
    --nesma-white: #ffffff;
    --nesma-light: #f7f7f7;
    --nesma-body: #666666;
    --nesma-border: #dfe3e6;
    --nesma-focus: 0 0 0 3px rgba(54, 198, 255, 0.34);
    padding: 36px 0 57px;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--nesma-body);
    background: var(--nesma-white);
}

.nesma-contact-section__container {
    width: min(100% - 30px, 1110px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 330px minmax(0, 729px);
    gap: 51px;
    align-items: start;
}

.nesma-contact-section__intro,
.nesma-contact-section__form-panel {
    min-width: 0;
}

.nesma-contact-section__accent {
    display: block;
    width: 49px;
    height: 2px;
    margin: 0 0 38px;
    background: var(--nesma-accent);
}

.nesma-contact-section__title {
    margin: 0;
    color: var(--nesma-primary-deep);
    font-size: 34px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nesma-contact-section__description {
    margin: 35px 0 0;
    color: #747d86;
    font-size: 14px;
    line-height: 1.85;
    font-weight: 400;
}

.nesma-contact-section__form-panel {
    min-height: 305px;
    padding: 40px 39px 57px;
    background: var(--nesma-light);
    box-sizing: border-box;
}

.nesma-contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 310px));
    grid-template-rows: 38px 38px 39px;
    grid-template-areas:
        "name message"
        "email message"
        "newsletter submit";
    gap: 46px 30px;
    align-items: start;
}

.nesma-contact-form__field {
    min-width: 0;
}

.nesma-contact-form__field--name {
    grid-area: name;
}

.nesma-contact-form__field--email {
    grid-area: email;
}

.nesma-contact-form__field--message {
    grid-area: message;
}

.nesma-contact-form__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nesma-contact-form__control {
    width: 100%;
    height: 38px;
    padding: 0 16px;
    border: 1px solid var(--nesma-border);
    border-radius: 0;
    color: var(--nesma-primary-deep);
    background: var(--nesma-white);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    outline: none;
    box-sizing: border-box;
}

.nesma-contact-form__control::placeholder {
    color: #69737d;
    opacity: 1;
}

.nesma-contact-form__control:focus-visible {
    border-color: var(--nesma-accent);
    box-shadow: var(--nesma-focus);
}

.nesma-contact-form__message {
    display: block;
    height: 100px;
    min-height: 100px;
    padding-top: 11px;
    resize: vertical;
}

.nesma-contact-form__newsletter {
    grid-area: newsletter;
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: #69737d;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    cursor: pointer;
}

.nesma-contact-form__checkbox {
    width: 13px;
    height: 13px;
    margin: 0;
    accent-color: var(--nesma-accent);
}

.nesma-contact-form__checkbox:focus-visible {
    outline: 2px solid var(--nesma-accent);
    outline-offset: 2px;
}

.nesma-contact-form__button {
    grid-area: submit;
    justify-self: end;
    width: 143px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    padding: 0 21px;
    border: 2px solid var(--nesma-accent);
    border-radius: 30px;
    color: #001f3f;
    background: transparent;
    font-family: inherit;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nesma-contact-form__button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 180ms ease;
}

.nesma-contact-form__button:hover {
    color: var(--nesma-white);
    background: var(--nesma-accent);
    transform: translateY(-1px);
}

.nesma-contact-form__button:hover svg {
    transform: translateX(3px);
}

.nesma-contact-form__button:focus-visible {
    outline: none;
    box-shadow: var(--nesma-focus);
}

@media (max-width: 1199px) {
    .nesma-contact-section__container {
        grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
        gap: 42px;
    }

    .nesma-contact-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .nesma-contact-section__container {
        width: min(100% - 40px, 1110px);
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .nesma-contact-section__description {
        max-width: 520px;
    }
}

@media (max-width: 767px) {
    .nesma-contact-section {
        padding: 36px 0 52px;
    }

    .nesma-contact-section__container {
        width: min(100% - 32px, 1110px);
    }

    .nesma-contact-section__title {
        font-size: 30px;
    }

    .nesma-contact-section__form-panel {
        padding: 34px 30px 40px;
    }

    .nesma-contact-form {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-template-areas:
            "name"
            "email"
            "message"
            "newsletter"
            "submit";
        gap: 22px;
    }

    .nesma-contact-form__message {
        height: 110px;
        min-height: 110px;
    }

    .nesma-contact-form__button {
        justify-self: start;
    }
}

@media (max-width: 575px) {
    .nesma-contact-section__accent {
        margin-bottom: 30px;
    }

    .nesma-contact-section__title {
        font-size: 26px;
    }

    .nesma-contact-section__description {
        margin-top: 28px;
        font-size: 13px;
    }

    .nesma-contact-section__form-panel {
        padding: 30px 24px 36px;
    }
}

@media (max-width: 420px) {
    .nesma-contact-section__container {
        width: min(100% - 24px, 1110px);
    }

    .nesma-contact-section__title {
        font-size: 24px;
    }

    .nesma-contact-form__button {
        width: 136px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .nesma-contact-section,
    .nesma-contact-section *,
    .nesma-contact-section *::before,
    .nesma-contact-section *::after {
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}