body {
    margin: 0;
    font-family: tajawal, Arial, sans-serif;
    background: #f5f5f5;
    color: #314052;
}

a {
    color: #04567a;
    /* color: #b3212c; */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(1640px, calc(100% - 20px));
}

.phpstore-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #04567a;
    border-bottom: 0;
}

.phpstore-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 78px;
    padding: 10px 0;
}

.phpstore-header__logo img {
    height: 60px;
}

.phpstore-header__nav {
    display: flex;
    gap: 34px;
    flex: 1;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-inline-start: 32px;
}

.phpstore-nav-link {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    cursor: pointer;
}

.phpstore-nav-link.is-active,
.phpstore-nav-link:hover,
.phpstore-nav-item.is-active > .phpstore-nav-link,
.phpstore-nav-item:hover > .phpstore-nav-link {
    color: #fff;
    text-decoration: none;
    opacity: .85;
}

.phpstore-nav-item {
    position: relative;
}

.phpstore-nav-item--has-menu {
    display: flex;
    align-items: center;
}

.phpstore-nav-link__arrow {
    width: 0;
    height: 0;
    margin-inline-start: 8px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid currentColor;
}

.phpstore-nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    inset-inline-start: 0;
    min-width: 320px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
    z-index: 50;
}

.phpstore-nav-item--has-menu:hover .phpstore-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.phpstore-nav-dropdown__link {
    display: block;
    padding: 11px 18px;
    color: #2f3f51;
    font-size: 15px;
    line-height: 1.35;
}

.phpstore-nav-dropdown__link:hover {
    background: #f5f7f9;
    color: #04567a;
    text-decoration: none;
}

.phpstore-header__actions {
    display: flex;
    gap: 10px;
    margin-inline-start: auto;
}

.phpstore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: #b3212c;
    color: #fff;
    font-weight: 700;
    border: 1px solid #b3212c;
}

.phpstore-btn--ghost {
    background: transparent;
    color: #b3212c;
}

.btn-primary {
    background-color: #b3212c;
    border-color: #b3212c;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    background-color: #961b24;
    border-color: #961b24;
}

.phpstore-lang-switch {
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
}

.phpstore-lang-switch:hover {
    color: #fff;
    text-decoration: none;
}

.phpstore-lang-switch .is-active {
    color: #fff;
}

.phpstore-lang-switch__divider {
    display: inline-block;
    margin: 0 6px;
}

.phpstore-main {
    min-height: calc(100vh - 220px);
}

.phpstore-flash {
    margin: 20px 0 0;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 700;
}

.phpstore-flash--success { background: #e7f8ee; color: #12733c; }
.phpstore-flash--error { background: #fdeaea; color: #9d1f1f; }

.page-shell,
.page-article,
.page-listing,
.page-form {
    padding: 10px 0 72px;
}

.page-shell--about {
    background: #fff;
}

.hero-card {
    background: linear-gradient(135deg, #0f2239, #24486d);
    color: #fff;
    border-radius: 28px;
    padding: 42px;
    margin: 26px auto;
    overflow: hidden;
}

.hero-card--home {
    background: linear-gradient(135deg, rgba(8,27,48,.9), rgba(20,73,110,.85)), url('../assets/images/home-main-bg.webp') center/cover no-repeat;
}

.phpstore-home-hero {
    background: linear-gradient(135deg, rgba(6, 34, 49, .84), rgba(8, 40, 61, .76)), url('../assets/images/home-main-bg.webp') center/cover no-repeat;
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 56px 48px;
    border-radius: 0;
    margin: 0 0 36px;
}

.phpstore-home-hero--bleed {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
}

.phpstore-home-hero--services {
    margin-bottom: 54px;
    background-position: center;
    background-size: cover;
}

.phpstore-home-hero__content {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(420px, 1.3fr);
    gap: 60px;
    align-items: center;
}

.phpstore-home-hero__about {
    align-self: start;
}

.phpstore-home-hero__label {
    display: inline-block;
    margin-bottom: 14px;
    color: #e53637;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

.phpstore-home-hero__brand {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 3vw, 72px);
    font-weight: 700;
    line-height: .95;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.phpstore-home-hero__brand span {
    font-size: .72em;
    margin-top: 6px;
}

.phpstore-home-hero__brand--service {
    font-size: clamp(34px, 2.7vw, 54px);
    line-height: 1.08;
    letter-spacing: .02em;
    text-transform: none;
}

.phpstore-home-hero__title {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(26px, 2vw, 46px);
    font-weight: 700;
    line-height: 1.08;
    text-transform: uppercase;
}

.phpstore-home-hero__text {
    max-width: 740px;
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: 19px;
    line-height: 1.65;
}

.phpstore-home-services {
    margin-bottom: 34px;
}

.phpstore-home-services--bleed {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
}

.phpstore-home-services__title-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.phpstore-home-services__title-wrap .section-title {
    margin-bottom: 20px;
}

.phpstore-k-title--center {
    text-align: center;
}

.phpstore-home-services__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
}

.phpstore-home-service-tile {
    position: relative;
    height: clamp(220px, 26vw, 320px);
    padding: 28px 28px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    text-decoration: none;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.phpstore-home-service-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 10, 19, .44), rgba(3, 10, 19, .78));
    transition: background .24s ease, transform .24s ease;
}

.phpstore-home-service-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(227, 42, 56, .18), rgba(3, 10, 19, .1));
    opacity: 0;
    transition: opacity .24s ease;
}

.phpstore-home-service-tile > * {
    position: relative;
    z-index: 1;
}

.phpstore-home-service-tile:hover {
    color: #fff;
    text-decoration: none;
}

.phpstore-home-service-tile:hover::before {
    transform: scale(1.04);
    background: linear-gradient(180deg, rgba(3, 10, 19, .28), rgba(3, 10, 19, .68));
}

.phpstore-home-service-tile:hover::after {
    opacity: 1;
}

.phpstore-home-service-tile__title {
    max-width: 280px;
    font-size: clamp(24px, 1.8vw, 28px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.phpstore-home-service-tile__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.phpstore-home-service-tile__number {
    font-size: 68px;
    line-height: .9;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .7);
}

.phpstore-home-service-tile__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    background: #ef2f45;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.phpstore-home-shop-banner {
    position: relative;
    display: block;
}

.phpstore-home-shop-banner img {
    display: block;
    width: 100%;
}

.phpstore-home-shop-banner__title {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    margin: 0;
    color: #fff;
    font-size: clamp(26px, 5vw, 42px);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 8px 18px rgba(0, 0, 0, .35);
    pointer-events: none;
}

.phpstore-about-copy {
    padding: 8px 0 10px;
}

.phpstore-about-copy__item p {
    margin: 0;
    color: #52606e;
    font-size: 17px;
    line-height: 1.7;
}

.phpstore-about-metrics {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    background: #04567a;
    color: #fff;
    padding: 42px 0 58px;
    text-align: center;
}

.phpstore-about-metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.phpstore-about-metric strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: clamp(34px, 3vw, 58px);
    font-weight: 800;
    line-height: 1;
}

.phpstore-about-metric span {
    font-size: 17px;
    line-height: 1.3;
}

.phpstore-about-profile {
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.phpstore-about-profile img {
    width: 138px;
    max-width: 100%;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
}

.phpstore-about-profile__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
}

.phpstore-about-profile__title h3,
.phpstore-about-profile__title h4 {
    margin: 0;
    color: #fff;
}

.phpstore-about-profile__title h3 {
    font-size: clamp(30px, 2.5vw, 42px);
    font-weight: 700;
}

.phpstore-about-profile__title h4 {
    font-size: clamp(28px, 2.2vw, 38px);
    font-weight: 400;
}

.phpstore-about-profile__info .phpstore-btn {
    min-width: 162px;
    min-height: 46px;
    font-size: 15px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.phpstore-about-partners {
    padding: 54px 0 18px;
}

.phpstore-about-partners__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 34px 26px;
    align-items: center;
    margin-top: 34px;
}

.phpstore-about-partners__grid img {
    width: 100%;
    max-height: 72px;
    object-fit: contain;
}

.phpstore-about-partners--service {
    padding-top: 44px;
}

.phpstore-chemco {
    padding: 22px 0 72px;
}

.phpstore-chemco__intro {
    text-align: start;
    margin-bottom: 34px;
}

.phpstore-chemco__intro h1,
.phpstore-chemco__cta-row h3 {
    color: #3e7bac;
}
.phpstore-chemco__intro h1{
    font-size: 1.7rem;
    font-weight: bold;
    padding: 1rem 0;
}

.phpstore-chemco__intro p {
    color: #52606e;
    font-size: 17px;
    line-height: 1.7;
}

.phpstore-chemco__logo {
    max-height: 100px;
    padding: 1rem 0;
}

.phpstore-chemco-card {
    height: 100%;
    border: 2px solid #3e7bac;
    border-radius: 8px;
    background: #fff;
    padding: 34px 22px 20px;
}

.phpstore-chemco-card h2 {
    margin: 0 0 22px;
    color: #3e7bac;
    text-align: center;
}

.phpstore-chemco-card__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
}

.phpstore-chemco-feature {
    text-align: center;
}

.phpstore-chemco-feature img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}

.phpstore-chemco-feature h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.phpstore-chemco__cta-row {
    margin-top: 38px;
    text-align: center;
}

.phpstore-chemco__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 26px;
    border-radius: 999px;
    background: #3e7bac;
    color: #fff;
    font-weight: 700;
}

.phpstore-chemco__pill:hover {
    color: #fff;
    text-decoration: none;
}

.phpstore-wholesale-copy {
    padding: 8px 0 18px;
}

.phpstore-wholesale-copy__card {
    height: 100%;
}

.phpstore-wholesale-copy__card p {
    margin: 0 0 24px;
    color: #52606e;
    font-size: 17px;
    line-height: 1.7;
}

.phpstore-wholesale-projects {
    margin-top: 8px;
}

.phpstore-wholesale-projects__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
}

.phpstore-wholesale-project {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

.phpstore-wholesale-project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.phpstore-wholesale-project__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px 24px;
    background: linear-gradient(180deg, rgba(3, 10, 19, .14), rgba(3, 10, 19, .74));
}

.phpstore-wholesale-project__title,
.phpstore-wholesale-project__subtitle {
    color: #fff;
    display: block;
}

.phpstore-wholesale-project__title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

.phpstore-wholesale-project__subtitle {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.5;
}

.phpstore-procurement-section .imt-services-grid {
    margin-top: 26px;
}

.phpstore-procurement-copy {
    max-width: 1180px;
    margin: 0 auto;
    color: #52606e;
    font-size: 17px;
    line-height: 1.7;
}

.phpstore-procurement-copy--light {
    color: rgba(255, 255, 255, .88);
}

.phpstore-procurement-copy p {
    margin-bottom: 12px;
}

.phpstore-procurement-logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 32px 0 18px;
}

.phpstore-procurement-logos__item,
.phpstore-procurement-vendors__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px;
}

.phpstore-procurement-logos__item img,
.phpstore-procurement-vendors__logo img {
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
}

.phpstore-procurement-contact,
.phpstore-procurement-vendors__title {
    margin-top: 24px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
}

.phpstore-procurement-contact--light,
.phpstore-procurement-vendors__title {
    color: #fff;
}

.phpstore-procurement-contact__cta {
    text-align: center;
    margin-bottom: 0;
}

.phpstore-procurement-vendors {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 20px;
    border: 1px solid rgba(255,255,255,.25);
}

.phpstore-procurement-vendors__item {
    display: grid;
    grid-template-columns: minmax(120px, .9fr) 1.1fr;
}

.imt-section--dark .imt-service-card__body h3,
.imt-section--dark .imt-service-card__body p {
    color: #fff;
}

.phpstore-procurement-vendors__logo,
.phpstore-procurement-vendors__code {
    border: 1px solid rgba(255,255,255,.25);
}

.phpstore-procurement-vendors__logo {
    border-radius: 0;
    background: #fff;
}

.phpstore-procurement-vendors__code {
    display: flex;
    align-items: center;
    padding: 16px;
    color: #fff;
}

.phpstore-maintenance__banner img {
    width: 100%;
    display: block;
}

.phpstore-maintenance__banner--bleed {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    margin-bottom: 18px;
}

.phpstore-maintenance__banner-mobile {
    display: none;
}

.phpstore-maintenance__highlight {
    background: url('../assets/images/maintenance-bg.webp') center/cover no-repeat;
    color: #fff;
    padding: 34px 0 28px;
}

.phpstore-maintenance__highlight h2 {
    font-size: clamp(30px, 2.6vw, 38px);
    margin: 0 0 20px;
}

.phpstore-maintenance__highlight p {
    font-size: 20px;
    line-height: 1.7;
}

.phpstore-maintenance__brand {
    display: flex;
    justify-content: flex-end;
    padding: 12px 0 8px;
}

.phpstore-maintenance__brand img {
    width: 240px;
    max-width: 100%;
}

.phpstore-maintenance__contacts {
    padding: 28px 0 54px;
}

.phpstore-maintenance__lead {
    text-align: center;
    color: #12733c;
    padding-top: 18px;
}

.phpstore-maintenance__contact-box {
    margin: 1rem;
    border: .5px solid #ccc;
    border-radius: 5px;
    padding: 1rem .5rem;
    text-align: center;
    background: #fff;
}

.phpstore-maintenance__contact-box h3 {
    color: #12733c;
    font-size: 20px;
    font-weight: 700;
}

.phpstore-maintenance__contact-box a {
    color: #02066F;
}

.phpstore-contact {
    padding: 32px 0 72px;
}

.phpstore-contact-map--bleed {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
}

.phpstore-contact-map iframe {
    display: block;
    width: 100%;
    height: 420px;
}

.phpstore-contact__wrap {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 36px rgba(18, 30, 45, .08);
}

.phpstore-contact__heading {
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 700;
}

.phpstore-contact__address p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.phpstore-contact__form .form-control {
    min-height: 46px;
}

.phpstore-contact__required {
    color: #d22;
    margin-inline-start: 4px;
}

.phpstore-document {
    background: #fff;
    padding: 34px 28px;
}

.phpstore-document--plain {
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 30px 0;
}

.phpstore-document__title {
    margin: 0 0 24px;
    color: #000;
    font-size: 34px;
    font-weight: 700;
}

.phpstore-document__content {
    line-height: 1.9;
    color: #333;
}

.phpstore-document__content h1 {
    margin-top: 35px;
    color: #000;
    font-size: 24px;
}

.phpstore-document__content h2 {
    margin-top: 35px;
    color: #000;
    font-size: 22px;
}

.phpstore-document__content h3,
.phpstore-document__content h4,
.phpstore-document__content h5,
.phpstore-document__content h6 {
    margin-top: 25px;
    color: #444;
}

.phpstore-document__content h5 {
    font-size: 20px;
}

.phpstore-document__content h6 {
    font-size: 17px;
    font-weight: 700;
}

.phpstore-document__content p {
    margin-bottom: 12px;
    font-size: 18px;
}

.phpstore-document__content table {
    width: 100%;
}

.phpstore-document__content th,
.phpstore-document__content td {
    padding: 12px 14px;
    border: 1px solid #d7dde5;
}

.phpstore-document__content th {
    background: #f4f7fa;
}

.phpstore-document__content ul,
.phpstore-document__content ol {
    margin: 10px 0 20px;
    padding-inline-start: 20px;
}

.phpstore-document__content li {
    margin-bottom: 8px;
}

.phpstore-static-doc {
    padding: 16px 0 72px;
}

@media (min-width: 768px) {
    .mobile {
        display: none;
    }
}

@media (max-width: 767px) {
    .desktop {
        display: none;
    }
}

.phpstore-careers {
    padding: 12px 0 72px;
}

.phpstore-careers-values {
    background: #0b4f5e;
    color: #fff;
    padding: 40px 28px;
}

.phpstore-careers-values__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.phpstore-careers-value h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.phpstore-careers-value__number {
    color: #b22222;
    font-size: 28px;
    font-weight: 700;
    margin-inline-end: 8px;
}

.phpstore-careers-value p {
    margin: 18px 0 0;
    font-size: 18px;
    line-height: 1.7;
}

.phpstore-careers-table table {
    width: 100%;
}

.phpstore-careers-table td.border-bottom {
    border-bottom: 1px solid #0b4f5e !important;
    padding: 12px 0;
}

.phpstore-careers-contact {
    margin-top: 36px;
}

.phpstore-careers-contact__item p {
    font-size: 24px;
}


.phpstore-sisters {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    margin-top: 28px;
}

.phpstore-sisters__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.phpstore-sister-card {
    min-height: 470px;
    padding: 38px 42px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
}

.phpstore-sister-card--0 {
    background: linear-gradient(135deg, #25c0e0 0%, #24478e 100%);
}

.phpstore-sister-card--1 {
    background: linear-gradient(135deg, #35338b 0%, #26245e 100%);
}

.phpstore-sister-card--2 {
    background: linear-gradient(135deg, #0ca169 0%, #0d7f6e 100%);
}

.phpstore-sister-card__heading {
    width: 100%;
    justify-content: center;
    margin-bottom: 40px;
}

.phpstore-sister-card__logo {
    width: auto;
    max-width: 280px;
    max-height: 82px;
    object-fit: contain;
    margin-bottom: 26px;
}

.phpstore-sister-card p {
    margin: 0;
    color: rgba(255, 255, 255, .96);
    font-size: 17px;
    line-height: 1.65;
}

.phpstore-sister-card__cta {
    margin-top: auto;
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 102px;
    height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: #ef2f45;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.phpstore-sister-card__cta:hover {
    color: #fff;
    text-decoration: none;
    opacity: .9;
}

.hero-card h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 800;
}

.hero-card p {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.8;
    opacity: .95;
    margin: 0;
}

.section-title {
    font-size: 30px;
    margin: 0 0 24px;
    font-weight: 800;
}

.service-grid,
.brand-grid,
.blog-grid,
.career-grid,
.metric-grid,
.partner-grid,
.sister-grid {
    display: grid;
    gap: 22px;
}

.service-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.brand-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));margin-top: 22px; }
.blog-grid { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.career-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.metric-grid { grid-template-columns: repeat(4, minmax(120px, 1fr)); }
.partner-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); align-items: center; }
.sister-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.phpstore-services-index {
    padding: 0 0 72px;
}

.phpstore-services-copy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
    margin-top: 32px;
}

.phpstore-services-copy__item {
    background: #fff;
    border-radius: 26px;
    box-shadow: 0 18px 48px rgba(12, 30, 45, .08);
    padding: 24px 22px;
}

.phpstore-services-copy__item h3 {
    margin: 0;
    color: #0f2239;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.phpstore-services-copy__item p {
    margin: 0;
    margin-top: 12px;
    color: #5f6f7f;
    font-size: 16px;
    line-height: 1.75;
}

.panel-card,
.service-card,
.brand-card,
.blog-card,
.career-card,
.metric-card,
.sister-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 12px 36px rgba(18, 30, 45, .08);
    overflow: hidden;
}

.brand-card,
.brand-card:hover {
    text-decoration: none;
}

.service-card__image,
.brand-card__hero,
.blog-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.service-card__body,
.brand-card__body,
.blog-card__body,
.career-card__body,
.panel-card,
.sister-card {
    padding: 22px;
}

.service-card__body h3,
.brand-card__body h3,
.blog-card__body h3,
.career-card__body h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 800;
}

.brand-card__body p {
    color: #4f5b66;
}

.service-card__meta,
.blog-card__meta,
.career-card__meta {
    color: #66788a;
    font-size: 14px;
    margin-bottom: 10px;
}

.phpstore-career-detail__actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.phpstore-career-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.brand-card__logo {
    height: 64px;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 16px;
}

.brand-card--leo .brand-card__logo {
    background: #11314f;
    border-radius: 12px;
    padding: 10px 14px;
}

.metric-card {
    text-align: center;
    padding: 22px 12px;
}

.metric-card strong {
    display: block;
    font-size: 34px;
    color: #b3212c;
}

.partner-grid img {
    width: 100%;
    max-height: 72px;
    object-fit: contain;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 28px rgba(18, 30, 45, .07);
}

.content-section {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 22px;
    box-shadow: 0 12px 36px rgba(18, 30, 45, .08);
}

.content-section ul {
    margin: 14px 0 0;
    padding-inline-start: 18px;
}

.content-section li {
    margin: 8px 0;
}

.phpstore-form {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 36px rgba(18, 30, 45, .08);
}

.phpstore-form-field {
    margin-bottom: 12px;
}

.phpstore-form .form-label {
    font-weight: 700;
}

.phpstore-footer {
    background: #265b6d;
    color: #ecf3f4;
    padding: 10px 0 0;
}

.phpstore-footer__grid {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 2fr 2fr;
    gap: 40px;
    padding: 42px 0 26px;
}

.phpstore-footer h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 18px;
}

.phpstore-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phpstore-footer li {
    margin: 10px 0;
    line-height: 1.55;
}

.phpstore-footer a {
    color: #ecf3f4;
}

.phpstore-footer__newsletter {
    display: flex;
    margin-bottom: 18px;
}

.phpstore-footer__newsletter input {
    flex: 1;
    height: 42px;
    border: 0;
    border-radius: 0;
    padding: 0 14px;
    font: inherit;
}

.phpstore-footer__newsletter button {
    height: 42px;
    padding: 0 18px;
    border: 0;
    background: #ef3a44;
    color: #fff;
    font: inherit;
    font-weight: 700;
}

.phpstore-footer__newsletter button:disabled {
    opacity: .7;
    cursor: wait;
}

.phpstore-footer__newsletter-status {
    min-height: 22px;
    margin: -6px 0 14px;
    font-size: 14px;
    line-height: 1.5;
}

.phpstore-footer__newsletter-status.is-success {
    color: #9ff2bf;
}

.phpstore-footer__newsletter-status.is-error {
    color: #ffd4d8;
}

.phpstore-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.phpstore-footer__socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ef3a44;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.phpstore-footer__socials a:hover {
    color: #fff;
    text-decoration: none;
    opacity: .88;
}

.phpstore-footer__socials svg {
    width: 18px;
    height: 18px;
    display: block;
}

.phpstore-footer__payments {
    display: block;
    max-width: 100%;
    margin-top: 16px;
}

.phpstore-footer__bottom {
    background: #dfdedc;
    color: #265b6d;
    border-top: 0;
    padding: 12px 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 calc((100vw - min(1640px, calc(100% - 24px))) / -2);
    padding-inline: max(calc((100vw - min(1640px, calc(100% - 24px))) / 2), 12px);
}

.phpstore-footer__badges {
    display: flex;
    align-items: center;
    gap: 18px;
}

.phpstore-footer__badges img {
    height: 32px;
    object-fit: contain;
}

.phpstore-footer__copy {
    margin: 0;
    font-size: 14px;
    text-align: center;
    flex: 1;
}

.phpstore-k-title {
    display: flex;
    align-items: center;
    gap: 8px;
    vertical-align: middle;
    line-height: 1.2;
}

.phpstore-k-title::before {
    content: "";
    width: 14px;
    height: 20px;
    flex: 0 0 14px;
    background: url('../assets/images/k.svg') center/contain no-repeat;
}

.phpstore-k-title > span,
.phpstore-k-title > strong,
.phpstore-k-title > em,
.phpstore-k-title > b {
    padding-top: 6px;
}

.phpstore-k-title--light {
    color: #fff;
}

.imt-page {
    background: #fff;
}

.imt-hero {
    background: linear-gradient(0deg, rgba(4, 20, 31, .68), rgba(4, 20, 31, .68)), url('../assets/images/home-main/2.webp') center/cover no-repeat;
}

.imt-hero__content {
    min-height: 410px;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(400px, 1.2fr);
    gap: 60px;
    align-items: center;
    padding: 44px 0 42px;
}

.imt-hero__title {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 4vw, 72px);
    font-weight: 800;
    line-height: .98;
    text-transform: uppercase;
    letter-spacing: .03em;
    max-width: 600px;
}

.imt-hero__copy {
    max-width: 740px;
    color: rgba(255, 255, 255, .92);
    font-size: 19px;
    line-height: 1.55;
}

.imt-hero__copy p {
    margin: 0 0 16px;
}

.imt-hero__contact {
    font-weight: 700;
}

.imt-email-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: #ef3a44;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.imt-email-btn:hover {
    color: #fff;
    text-decoration: none;
}

.imt-section {
    padding: 34px 0 38px;
}

.imt-section--light {
    background: #fff;
}

.imt-section--dark {
    background: #045d71;
}

.imt-section--projects {
    background: #fff;
    text-align: center;
    padding-bottom: 62px;
}

.imt-section__title {
    margin: 0;
    text-align: center;
    color: #364355;
    font-size: clamp(32px, 2.2vw, 50px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.imt-section__title--light {
    color: #fff;
}

.imt-section__lead {
    max-width: 860px;
    margin: 8px auto 28px;
    text-align: center;
    color: #636f7d;
    font-size: 18px;
    line-height: 1.45;
}

.imt-section__lead--light {
    color: rgba(255, 255, 255, .86);
}

.imt-section__lead--narrow {
    max-width: 980px;
}

.imt-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 120px;
    row-gap: 34px;
    padding: 12px 8px 0;
}

.imt-service-card {
    display: flex;
    gap: 20px;
}

.imt-service-card__number {
    min-width: 22px;
    color: #cb2d31;
    font-size: 47px;
    font-weight: 700;
    line-height: .9;
}

.imt-service-card__body h3 {
    margin: 2px 0 8px;
    color: #9b9b9b;
    font-size: 22px;
    font-weight: 700;
}

.imt-service-card__body ul {
    margin: 0;
    padding-inline-start: 22px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.55;
}

.imt-types-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.imt-type-card {
    border: 1px solid rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .07);
    border-radius: 3px;
    overflow: hidden;
    color: #fff;
}

.imt-type-card summary,
.imt-type-card__label {
    list-style: none;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    font-size: 16px;
    font-weight: 700;
}

.imt-type-card summary {
    cursor: pointer;
}

.imt-type-card summary::-webkit-details-marker {
    display: none;
}

.imt-type-card summary::after {
    content: "▾";
    margin-inline-start: auto;
    font-size: 13px;
}

.imt-type-card ul {
    margin: 0;
    padding: 0 16px 14px 34px;
    color: rgba(255, 255, 255, .88);
    line-height: 1.5;
}

.imt-project-logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 30px;
    margin: 28px 0 18px;
}

.imt-project-logos__item {
    min-height: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imt-project-logos__item img {
    max-width: 220px;
    max-height: 76px;
    width: auto;
    height: auto;
}

.imt-projects__body {
    max-width: 1560px;
    margin: 0 auto;
    color: #636f7d;
    font-size: 18px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .phpstore-header__bar {
        flex-direction: column;
    }

    .phpstore-header__nav {
        justify-content: center;
        margin-inline-start: 0;
    }

    .phpstore-nav-dropdown {
        inset-inline-start: 50%;
        transform: translate(-50%, 6px);
        min-width: 280px;
    }

    .phpstore-nav-item--has-menu:hover .phpstore-nav-dropdown {
        transform: translate(-50%, 0);
    }

    .metric-grid {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .hero-card {
        padding: 28px;
    }

    .phpstore-footer__grid,
    .imt-services-grid,
    .imt-project-logos,
    .imt-hero__content,
    .phpstore-home-hero__content,
    .phpstore-careers-values__list {
        grid-template-columns: 1fr;
    }

    .phpstore-footer__bottom {
        flex-direction: column;
    }

    .imt-hero__content {
        gap: 30px;
        min-height: auto;
    }

    .imt-hero__title {
        font-size: 40px;
    }

    .phpstore-home-hero {
        padding: 36px 28px;
        min-height: auto;
    }

    .phpstore-home-services__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .phpstore-home-service-tile {
        min-height: 320px;
    }

    .phpstore-wholesale-projects__grid,
    .phpstore-procurement-logos,
    .phpstore-procurement-vendors,
    .phpstore-wholesale-brands__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .phpstore-about-metrics__grid,
    .phpstore-about-partners__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .phpstore-about-profile {
        flex-direction: column;
        text-align: center;
    }

    .phpstore-about-profile__info {
        align-items: center;
    }

    .phpstore-sisters__grid {
        grid-template-columns: 1fr;
    }

    .phpstore-sister-card {
        min-height: 360px;
    }
}

html[dir="rtl"] body {
    text-align: right;
}

@media (max-width: 640px) {
    .container {
        width: min(100%, calc(100% - 20px));
    }

    .phpstore-header__bar {
        align-items: flex-start;
    }

    .phpstore-header__logo img {
        height: 38px;
    }

    .phpstore-header__nav {
        gap: 16px;
        font-size: 14px;
    }

    .phpstore-nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 100%;
        box-shadow: none;
        margin-top: 6px;
        padding: 6px 0 0;
        background: transparent;
    }

    .phpstore-nav-item--has-menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .phpstore-nav-dropdown__link {
        color: rgba(255, 255, 255, .9);
        padding: 7px 0 7px 16px;
    }

    .phpstore-nav-dropdown__link:hover {
        background: transparent;
        color: #fff;
    }

    .phpstore-footer__newsletter {
        flex-direction: column;
        gap: 10px;
    }

    .imt-section__title {
        font-size: 28px;
    }

    .imt-hero__title {
        font-size: 34px;
    }

    .phpstore-home-hero {
        padding: 28px 18px;
    }

    .phpstore-home-hero__label {
        font-size: 24px;
    }

    .phpstore-home-hero__brand {
        font-size: 38px;
    }

    .phpstore-home-hero__title {
        font-size: 26px;
    }

    .imt-hero__copy,
    .imt-section__lead,
    .imt-projects__body,
    .imt-service-card__body ul,
    .phpstore-home-hero__text {
        font-size: 16px;
    }

    .imt-service-card {
        gap: 14px;
    }

    .imt-service-card__number {
        font-size: 34px;
    }

    .phpstore-home-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .phpstore-home-service-tile {
        min-height: 250px;
        padding: 20px 18px 16px;
    }

    .phpstore-wholesale-projects__grid,
    .phpstore-procurement-logos,
    .phpstore-procurement-vendors,
    .phpstore-wholesale-brands__grid {
        grid-template-columns: 1fr;
    }

    .phpstore-chemco-card__grid {
        grid-template-columns: 1fr;
    }

    .phpstore-maintenance__banner-desktop {
        display: none;
    }

    .phpstore-maintenance__banner-mobile {
        display: block;
    }

    .phpstore-contact__wrap {
        padding: 20px;
    }

    .phpstore-contact-map iframe {
        height: 320px;
    }

    .phpstore-wholesale-project {
        min-height: 260px;
    }

    .phpstore-wholesale-project__title {
        font-size: 20px;
    }

    .phpstore-services-copy {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .phpstore-home-service-tile__title {
        font-size: 18px;
        max-width: 190px;
    }

    .phpstore-home-service-tile__number {
        font-size: 46px;
    }

    .phpstore-home-service-tile__more {
        min-width: 74px;
        height: 34px;
        padding: 0 14px;
        font-size: 13px;
    }

    .imt-types-grid {
        grid-template-columns: 1fr;
    }

    .phpstore-about-metrics__grid,
    .phpstore-about-partners__grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px 16px;
    }

    .phpstore-about-metrics {
        padding: 32px 0 42px;
    }

    .phpstore-about-profile {
        margin-top: 38px;
        gap: 18px;
    }

    .phpstore-about-profile img {
        width: 112px;
    }

    .phpstore-about-copy__item p,
    .phpstore-about-metric span {
        font-size: 16px;
    }

    .phpstore-sister-card {
        min-height: 320px;
        padding: 28px 18px 24px;
    }

    .phpstore-sister-card__heading {
        margin-bottom: 24px;
    }

    .phpstore-sister-card__logo {
        max-width: 220px;
        max-height: 64px;
        margin-bottom: 20px;
    }

    .phpstore-sister-card p {
        font-size: 15px;
    }
}
