:root {
    --white-color: #ffffff;
    --white-smoke: #F5F5F5;
    --light-gray: #747474;
    --black-color: #000000;
    --secondary-green-color: #14AA3C;
    --secondary-green-color-20: rgba(20, 170, 60, 0.2);
    --secondary-green-color-30: rgba(20, 170, 60, 0.3);
    --gray-color: #545454;
    --dark-gray: #2F2F2F;
    --business-border: #D9D9D9;
    --pending-color: #F68D2B;
    --tetimonial-title: #C93C4A;
    --reject-color: #E53E3E;
    --primary-brick-red: #C04657;
    --primary-brick-red-30: rgba(192, 70, 87, 0.3);
    --primary-brick-red-20: rgba(192, 70, 87, 0.2);
    --primary-brick-red-10: rgba(192, 70, 87, 0.1);
    --border-color: #DFDFDF;
    --blue-color: #0067F1;
    --shadow-color: #0000001A;
    --box-shadow: 0 0.25rem 0.5rem 0 var(--shadow-color);
    /*? shadow */
    --shadow-03: 0 0.21875rem 0.34375rem 0 rgba(0, 0, 0, 0.02);
    --shadow-02: 0 0.125rem 0.3125rem 0 rgba(0, 0, 0, 0.01);
    /*? border radius */
    --border-radius-15: 0.9375rem;
    --border-radius-10: 0.625rem;
    /*? z-index */
    --z-index: 1;
    --z-index-header: 100;
    --z-index-popup: 1000;
    /*? line-height */
    --line-140: 1.4;
    --line-120: 1.2;
    --line-110: 1.1;
    /*? font-weight */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-smedium: 600;
    --font-weight-bold: 700;
    /* ?font-size */
    --root-font-size: 16px;
    --base-text: 1rem;
    --font-style-italic: italic;
    --text-xxl: 0.95rem;
    --text-xl: 0.9rem;
    --text-md: .9rem;
    --text: .9375rem;
    --text-14: 0.875rem;
    --h1: 1.9rem;
    --h2: 1.875rem;
    --h3: 1.5rem;
    --h4: 1.25rem;
    --h5: 1.125rem;
    --h6: .9375rem;
    /* ?font-family */
    --font-inter: "Inter", sans-serif;
    --font-Montserrat: "Montserrat", sans-serif;
    --font-NunitoSans: "Nunito Sans", sans-serif;
    --font-LibreBaskerville: "Libre Baskerville", serif;
    /* height & spacing */
    --header-height: 5.625rem;
    --section-padding: 5rem;
    --heading-bottom: 3.75rem;
}

@media (min-width: 768px) {
    :root {
        --root-font-size: 1.3671875vw;
        --text-xxl: 1.125rem;
        --text-xl: 1rem;
        --text-md: 0.875rem;
        --text: 0.75rem;
        --h1: 3rem;
        --h2: 2rem;
        --h3: 1.875rem;
        --h4: 1.375rem;
        --h5: 1rem;
        --h6: 0.875rem;
    }
}


@media (min-width: 992px) {

    .ark__card:hover .ark__card__title,
    .card:hover .card-title,
    .ark__service-item:hover .ark__service-item-title {
        letter-spacing: 0.02em;
    }
}

@media (min-width: 1280px) {
    :root {
        --root-font-size: 0.833333vw;
        --text-xxl: 1.2223rem;
        --text-xl: 1.1112rem;
        --text-md: 0.889rem;
        --text: 1rem;
        --h1: 3.75rem;
        /*60px*/
        --h2: 3.25rem;
        /*52px*/
        --h3: 3rem;
        /*48px*/
        --h4: 2.25rem;
        /*36px*/
        --h5: 1.25rem;
        /*20px*/
        --h6: 1.125rem;
        /*18px*/
        --Sub-title: 1.5rem;
        /*24px*/
        --body1: 1rem;
        /*16px*/
        --Body2Secondary: 0.875rem;
        /*14px*/
    }
}


@media (max-width: 768px) {
    :root {
        --root-font-size: 1.82292vw;
    }
}

@media (max-width: 480px) {
    :root {
        --root-font-size: 12px;
    }
}

html {
    font-size: var(--root-font-size);
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: subpixel-antialiased;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--white-smoke);
    font-family: var(--font-inter);
    font-style: normal;
    line-height: 1.4;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    min-height: 100%;
    background-color: var(--white-color);
}

.container {
    width: min(1320px, 92%);
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: initial;
}

ul li {
    list-style: none;
}

img,
video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-LibreBaskerville);
}

p,
li {
    font-family: var(--font-Montserrat);
}

/* Home page start */
/* Start header section */
header {
    background-color: var(--white-smoke);
    height: 5.625rem;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: var(--z-index-header);
}

.ark__header {
    display: flex
}

.ark__main-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.ark__main--logo {
    color: var(--black-color);
}

.ark__header nav ul {
    gap: 3.125rem;
}

.ark__header nav ul li {
    font-family: var(--font-Montserrat);
    font-size: 1rem;
    font-weight: 600;
}

.ark__header nav ul,
.ark__header nav {
    display: flex;
    align-items: center;
}

.ark__header nav ul li a {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.ark__header nav ul li a:hover {
    color: var(--primary-brick-red);
}

.ark__main--logo {
    font-family: var(--font-inter);
    font-size: 1.5rem;
    font-weight: 700;
}

.ark__footer .ark__main--logo {
    font-size: 2.5rem;
}

.ark__main--logo span {
    color: var(--primary-brick-red);
}

.ark__nav--active {
    color: var(--primary-brick-red);
}

.ark__header nav {
    gap: 3.75rem;
}

.ark__main--header-btn {
    border: 0.0625rem solid var(--primary-brick-red);
    background-color: var(--white-smoke);
    font-size: 1rem;
    color: var(--primary-brick-red);
    min-width: 7.5rem;
    flex-shrink: 0;
    line-height: 1;
    border-radius: var(--border-radius-10);
    font-weight: 600;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-border-radius: var(--border-radius-10);
    -moz-border-radius: var(--border-radius-10);
    -ms-border-radius: var(--border-radius-10);
    -o-border-radius: var(--border-radius-10);
}

.ark__main--header-btn:hover {
    background-color: var(--primary-brick-red);
    color: var(--white-color);
}

.toggle-login-btn {
    display: flex;
    align-items: center;
    gap: 1.875rem;
}

/* ============================= */
/* Mobile Menu Toggle Button */
/* ============================= */
.ark__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.ark__menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--black-color);
    transition: all 0.3s ease;
}

/* ============================= */
/* Responsive Styles */
/* ============================= */
@media (max-width: 991px) {

    .ark__menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .ark__header nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100dvh;
        background-color: var(--white-smoke);
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: var(--box-shadow);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition:
            transform 0.35s ease,
            opacity 0.35s ease,
            visibility 0s linear 0.35s;
    }

    .ark__header nav ul {
        flex-direction: column;
        width: 100%;
        height: 100dvh;
        align-items: center;
        justify-content: center;
    }

    .ark__header nav ul li {
        width: 100%;
        text-align: center;
        font-size: 1.5rem;
    }

    .ark__header nav ul li a {
        display: block;
        width: 100%;
    }

    /* Active menu */
    .ark__header nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        transition:
            transform 0.35s ease,
            opacity 0.35s ease,
            visibility 0s linear 0s;
    }

    .ark__header nav.active .ark__main--header-btn {
        display: none;
    }
}

/* ============================= */
/* Hamburger Animation */
/* ============================= */
.ark__menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.ark__menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.ark__menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* End header section */

/* Start hero section */
.ark__hero--main {
    position: relative;
    height: 100svh;
}

.ark__hero--banner-img {
    position: relative;
    padding-top: var(--header-height);
    height: 100svh;
}

.ark__hero--main .ark__hero--banner-img::after {
    background-color: rgba(0, 0, 0, 0.6);
}

.ark__hero--banner-img::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.ark__hero--content {
    position: absolute;
    top: var(--header-height);
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.ark__hero--content h1 {
    font-size: var(--h1);
    text-align: center;
    color: var(--white-color);
    line-height: var(--line-140);
}

.ark__hero--subcontent {
    font-size: var(--Sub-title);
    color: var(--white-color);
    text-align: center;
    margin-top: 1rem;
    line-height: var(--line-140);
    font-weight: 500;
}

/* End hero section */
/* Start AboutUs section */
.section-padding--main {
    padding: var(--section-padding) 0;

}

.ark__AboutUs--section {
    background-color: var(--white-smoke);
}

#about-title {
    padding-bottom: 3.75rem;
}

.ark__btm--spacing {
    padding-bottom: 2.5rem;
}

.ark__about--Forwarder-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
}

.ark__about__title {
    margin: 0;
    text-align: center;
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: var(--h2);
    font-weight: 700;
    color: var(--black-color);
    text-decoration: underline solid var(--primary-brick-red);
    text-underline-offset: 0.625rem;
    text-decoration-thickness: 0.1875rem;
    letter-spacing: 0.02em;
}

.ark__about__hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6.5rem;
    align-items: start;
}

.ark__about__hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.ark__brick--red {
    color: var(--primary-brick-red);
}

.ark__about__heading {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.ark__about__heading h3 {
    font-size: var(--h3);
    line-height: var(--line-120);
}

.ark__about__subheading {
    font-size: var(--h6);
    font-weight: 400;
    color: var(--gray-color);
    line-height: 1.4;
}

.ark__about__thumbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.ark__about__thumb {
    position: relative;
    border-radius: 0.625rem;
    overflow: hidden;
    padding-top: 13.813rem;
}

.ark__about__thumb img {
    position: absolute;
    top: 0;
    left: 0;
}

.ark__about__thumb-overlay,
.ark__about__image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.ark__button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.375rem 0.75rem 1.125rem;
    border-radius: 1.75rem;
    border: 0.1rem solid var(--primary-brick-red);
    background: transparent;
    color: var(--primary-brick-red);
    font-size: 0.875rem;
    height: max-content;
    font-weight: 500;
    cursor: pointer;
    max-width: max-content;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    -webkit-transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    -moz-transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    -ms-transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    -o-transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ark__button svg {
    width: 1.125rem;
    height: 1.125rem;
}

.ark__button:hover {
    background: var(--primary-brick-red);
    color: var(--white-color);
    transform: translateY(-0.0625rem);
}

.ark__button:focus-visible {
    outline: 0.125rem solid var(--primary-brick-red);
    outline-offset: 0.1875rem;
}

.ark__about__hero-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.ark__about__hero-image {
    position: relative;
    border-radius: 0.625rem;
    overflow: hidden;
    padding-top: 24.688rem;
}

.ark__about__hero-image img {
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.ark__about__description {
    margin: 0;
    font-size: var(--body1);
    line-height: var(--line-140);
    color: var(--gray-color);
    text-align: left;
}

.ark__about__divider {
    height: 0.0625rem;
    background: var(--primary-brick-red);
    width: 100%;
    margin: 2.5rem 0;
}

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

.ark__card {
    background: var(--white-smoke);
    border: 0.0625rem solid var(--primary-brick-red);
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    gap: 1.875rem;
    -webkit-border-radius: 1.25rem;
    -moz-border-radius: 1.25rem;
    -ms-border-radius: 1.25rem;
    -o-border-radius: 1.25rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.ark__card:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.15);
}

.ark__card__media {
    position: relative;
    border-radius: 0.625rem;
    overflow: hidden;
    padding-top: 15.625rem;
}

.ark__card__media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ark__card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.4s ease;
}

.ark__card:hover .ark__card__media img {
    transform: scale(1.05);
}

.ark__card__body {
    display: flex;
    flex-direction: column;
    gap: 1.1875rem;
}

.ark__card__title {
    margin: 0;
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 1.25rem;
    color: var(--primary-brick-red);
    font-weight: 700;
    transition: 0.4s ease;
}

.ark__card__underline {
    height: 0.0625rem;
    width: 100%;
    background: var(--primary-brick-red);
}

.ark__card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.625rem;
}

.ark__card__list-item {
    position: relative;
    padding-left: 1.875rem;
    font-size: var(--body1);
    color: var(--gray-color);
    line-height: 1.5;
    transition: 0.4s ease;
}

.ark__card:hover .ark__card__list-item {
    color: var(--black-color);
}

.ark__card__list-item::before {
    content: "";
    position: absolute;
    background-image: url(./../images/arrow-right.svg);
    left: 0;
    top: 0;
    width: 1.25rem;
    height: 1.5rem;
    background-repeat: no-repeat;
    color: var(--primary-brick-red);
    font-weight: 600;
    background-position: 80% 64%;
}

/* Responsiveness */

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
        animation-duration: 0.01ms !important;
    }
}

/* End AboutUs section */

/* start warehouse section */
.ark__warehouse--wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.ark__warehouse--main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.ark__warehouse--advantage .ark__about__divider {
    background: var(--border-color);
    margin: 0;
}

.ark__warehouse-item-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
}

.ark__warehouse-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 5rem;
}

.ark__warehouse-item-title {
    font-size: var(--h4);
    line-height: var(--line-140);
}

.ark__warehouse-item-image {
    position: relative;
    padding-top: 18.75rem;
    overflow: hidden;
    border-radius: 2.5rem;
    -webkit-border-radius: 2.5rem;
    -moz-border-radius: 2.5rem;
    -ms-border-radius: 2.5rem;
    -o-border-radius: 2.5rem;
}

.ark__warehouse-item-image img {
    position: absolute;
    top: 0;
    left: 0;
}

.ark__warehouse-item-desc {
    color: var(--gray-color);
    line-height: var(--line-140);
    font-size: 1rem;
}

/* end warehouse section */

/* start Our Services */
.ark__ourServices {
    background-color: var(--white-smoke);
}

.ark__services--main-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 1.25rem;
}

.ark__service-item-image {
    position: relative;
    padding-top: 21.875rem;
    overflow: hidden;
    border-radius: var(--border-radius-10);
    -webkit-border-radius: var(--border-radius-10);
    -moz-border-radius: var(--border-radius-10);
    -ms-border-radius: var(--border-radius-10);
    -o-border-radius: var(--border-radius-10);
}

.ark__service-item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ark__service-item:hover .ark__service-item-image img {
    transform: scale(1.05);
}

.ark__service-item {
    border: 0.0625rem solid var(--border-color);
    background-color: var(--white-color);
    padding: 1rem;
    border-radius: var(--border-radius-10);
    -webkit-border-radius: var(--border-radius-10);
    -moz-border-radius: var(--border-radius-10);
    -ms-border-radius: var(--border-radius-10);
    -o-border-radius: var(--border-radius-10);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    will-change: transform;
}

.ark__service-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.12);
}

.ark__service-item-title {
    font-size: var(--Sub-title);
    transition: all 0.3s ease;
}

.ark__service-item-desc {
    color: var(--gray-color);
    font-size: var(--body1);
    transition: all 0.3s ease;
}

.ark__service-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.ark__service-item-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.ark__service-item:hover .ark__service-item-desc {
    color: var(--black-color);
}

/* end Our Services */
/* Start Client Testimonials */
.ark__testimonial-card {
    background: var(--white-smoke);
    border-radius: 1.875rem;
    padding: 1.25rem;
    border: 0.0625rem solid var(--border-color);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    -webkit-border-radius: 1.875rem;
    -moz-border-radius: 1.875rem;
    -ms-border-radius: 1.875rem;
    -o-border-radius: 1.875rem;
    min-height: 16.5rem;
    position: relative;
    overflow: hidden;
}

.ark__testimonial-text {
    font-size: 1.25rem;
    line-height: var(--line-140);
    color: var(--black-color);
    font-weight: 500;
}

.ark__testimonial-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ark__testimonial-img {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    border: 0.0625rem solid var(--border-color);
}

.ark__testimonial-name {
    font-size: 1.125rem;
    color: var(--tetimonial-title);
    margin: 0;
}

.ark__testimonial-role {
    font-size: 0.875rem;
    margin: 0;
    color: var(--gray-color);
    font-weight: 500;
    line-height: var(--line-140);
}

/* Navigation Buttons */
.ark__testimonial-nav {
    margin-top: 1.25rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.625rem;
}

.ark__testimonial-prev,
.ark__testimonial-next {
    position: relative;
    width: 3.75rem;
    height: 2.875rem;
    border-radius: 0.5rem;
    border: 0.0625rem solid var(--black-color);
    transition: 0.3s;
}

.swiper {
    width: 100%;
}

.swiper-slide {
    height: auto;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    content: '';
    background-image: url('./../images/prevarrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.313rem;
    height: 1.125rem;
    transition: 0.3s;
}

.swiper-button-next:after {
    background-image: url('./../images/nextarrow.svg');
}

.ark__testimonial-prev:hover,
.ark__testimonial-next:hover {
    background: var(--black-color);
}

.ark__testimonial-prev:hover:after,
.ark__testimonial-next:hover:after {
    filter: brightness(0) invert(1);
}

.ark__quote--img {
    width: auto;
    height: 9.563rem;
    position: absolute;
    left: -0.625rem;
    top: -1.875rem;
    opacity: 6%;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.ark__quote--img-two {
    width: auto;
    height: 9.563rem;
    position: absolute;
    right: -1.1875rem;
    bottom: -2.125rem;
    object-fit: contain;
    opacity: 6%;
}

.ark__testimonial-buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
    margin-top: 1.25rem;
}

.swiper-button-next:after,
.swiper-button-prev:after,
.ark__testimonial-prev,
.ark__testimonial-next {
    position: static;
    margin: 0;
    padding: 0;
    transform: translate(0);
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
}

/* End Client Testimonials */

/* start footer */
/* FOOTER MAIN */
.ark__footer {
    background: var(--white-smoke);
    padding: 3.75rem 2.5rem 1.875rem;
    border-radius: 1.25rem 1.25rem 0 0;
}

.ark__footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

/* LOGO */
.ark__footer-logo h2 {
    font-size: 2rem;
    font-weight: 700;
}

.ark__footer-logo span {
    color: var(--tetimonial-title);
}

/* Titles */
.ark__footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    text-decoration: underline;
    text-underline-offset: 0.5rem;
}

/* Links */
.ark__footer-links li {
    list-style: none;
    margin-bottom: 0.75rem;
}

.ark__footer-links a {
    color: var(--gray-color);
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
}

.ark__footer-links a:hover {
    color: var(--primary-brick-red);
}

/* Business hours box */
.ark__footer-hours-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0.0625rem solid var(--business-border);
    padding: 0.625rem 1.25rem;
    border-radius: 0.625rem;
    margin-bottom: 1.25rem;
    background-color: var(--white-color);
}

.ark__footer-hours-label {
    font-weight: 700;
    border-right: 0.0625rem solid var(--business-border);
    padding-right: 1.25rem;
    font-size: 1.25rem;
    max-width: 7.375rem;
    width: 100%;
    flex-shrink: 0;
}

.ark__footer-hours-time {
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--gray-color);
}

.ark__footer-hours-icon img {
    width: 7.75rem;
    opacity: 0.5;
}

.ark__footer-col p,
.ark__footer-col p a {
    color: var(--gray-color);
    transition: 0.3s;
}

.ark__footer-col p a {
    display: block;
    margin-bottom: 0.75rem;
}

.ark__footer-col p a:hover {
    color: var(--primary-brick-red);
}

.number {
    margin-bottom: 0.75rem;
}

.ark-footer-time-wp {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Social Icons */
.ark__footer-social {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.ark__footer-social a {
    display: inline-flex;
    gap: 1.25rem;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 0.25rem;
    background: var(--gray-color);
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.ark__footer-social a:hover {
    background: var(--primary-brick-red);
    transform: translateY(-0.1875rem);
}

.ark__footer-social a img {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.ark__footer-social a:hover img {
    transform: scale(1.06);
}

/* Bottom */
.ark__footer-bottom {
    text-align: center;
    font-size: 1rem;
    margin-top: 2.5rem;
    color: var(--gray-color);
    border-top: 0.0625rem solid var(--border-color);
    padding-top: 1.25rem;
}

/* ark btutton style */
.create-path {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

.ark__btn {
    font-size: 1.125rem;
    position: relative;
    width: 226px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1;
}

.ark__btn::before {
    content: "";
    background-image: url(./../images/border-svg.svg);
    width: 226px;
    height: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
}

.ark__btn-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary-brick-red);
    z-index: -1;
    width: 100%;
    text-align: center;
    padding-right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color);
    border-radius: 3.125rem;
}

.ark__btn-text::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: inherit;
    z-index: -1;
    border-radius: 50px;
}

.ark__btn-icon {
    max-width: 44px;
    flex: 0 0 44px;
    text-align: center;
    padding-right: 0.375rem;
    /* 6px to rem */
    display: flex;
    align-items: center;
    justify-content: center;
}

.ark__btn .ark__btn-icon img {
    transition: all 0.3s ease;
    height: auto;
    width: 1.3125rem;
    /* 21px to rem */
}

.ark__btn:hover .ark__btn-icon img {
    transform: rotate(28deg);
    transition: all 0.3s ease;
}


/* RESPONSIVE */
@media (max-width: 1279px) {
    .ark__warehouse-item {
        gap: 3rem;
    }

    .create-path {
        margin-top: 3rem;
    }
}

@media (max-width: 991px) {
    .ark__footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .ark__btn {
        transform: scale(0.8);
        transform-origin: left center;
    }

    .create-path .ark__btn {
        transform-origin: center;
    }
}

@media (max-width: 767px) {
    .ark__warehouse-item {
        gap: 3.5;
    }

    #about-title {
        padding-bottom: 2rem;
    }
}


@media (max-width: 575px) {
    .ark__footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ark__footer-hours-box {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        padding-block: 1rem;
    }

    .ark__services--main-wrap,
    .ark__warehouse-item {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.25rem;
    }

    .ark-footer-time-wp {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .ark__footer-hours-label {
        max-width: 100%;
        padding: 0;
        border: 0;
    }

    .ark__about__thumbs {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .ark__footer-social {
        gap: 1rem;
    }
}

/* end footer */

/* Home page End*/

/* About Page Design Start */
.ark_about-wp {
    display: flex;
    align-items: flex-start;
    gap: 6.25rem;
    margin: var(--section-padding) 0;
    margin-top: 10.625rem;
}

.ark_about-left {
    max-width: 31.125rem;
    flex: 1 1 31.125rem;
    width: 100%;
}

.ark_about-right {
    flex: 1 1 0;
    width: 100%;
}

.ark_about-right p {
    font-size: 1rem;
    color: var(--gray-color);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.ark_about-right p:last-child {
    margin-bottom: 0;
}

.ark_aboutpage_banner {
    height: 43.75rem;
    padding: 0;
}

.ark_aboutsummary-wp {
    display: flex;
}

.ark__aboutpage-summary {
    background: var(--white-color);
    position: relative;
    padding: var(--section-padding) 0;
}

.ark__aboutpage-summary .ark_summary-left {
    max-width: 39.8rem;
    flex: 1 1 39.8rem;
    width: 100%;
}

.ark_summary-left p {
    margin-top: 1.25rem;
}

.ark__aboutpage-summary p {
    font-size: 1rem;
    color: var(--gray-color);
}

.ark__aboutpage-summary .ark_summary-right {
    position: absolute;
    right: 0;
    top: 0;
}

.ark__aboutpage-summary .ark_summary-right img {
    width: 33.75rem;
}

.ark__workflow-automation {
    background: var(--black-color);
    padding: var(--section-padding) 0;
    position: relative;
}

.ark__workflow-automation .ark__workflow-automation-wp {
    display: flex;
    gap: 2.5rem;
}

/* Heading Block */
.workflow-header {
    margin-bottom: 2.5rem;
    max-width: 39.188rem;
    flex: 1 1 39.188rem;
    width: 100%;
}

.workflow-header p {
    font-size: 1rem;
    color: var(--white-color);
    margin-top: 2.5rem;
}

.workflow-header .ark__about__heading h3 {
    color: var(--white-color);
}

/* Steps Container */
.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    position: relative;
    z-index: 1;
    flex: 1 1 0;
    width: 100%;
}

/* Each Step Card */
.workflow-step {
    background: var(--dark-gray);
    border-radius: 0.625rem;
    padding: 1.25rem;
    position: relative;
}

.workflow-step .row {
    display: flex;
    flex-direction: column;
}

.workflow-step .step-number {
    flex-shrink: 0;
    display: inline-block;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.3);
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}

.workflow-step h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: var(--primary-brick-red);
}

.workflow-step p {
    font-size: 1rem;
    color: var(--white-color);
    margin: 0;
}

.workflow-shape {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 32.938rem;
    z-index: 0;
}

.ark-fee-explained {
    background: var(--white-smoke);
    padding: var(--section-padding) 0;
}

.ark-fee-explained .ark__about__heading {
    margin-bottom: 2.5rem;
}

.ark-fee-explained .ark__about__heading p {
    max-width: 21.25rem;
    color: var(--gray-color);
}

.feature-wp {
    display: flex;
    gap: 6.25rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    max-width: 41.875rem;
    flex: 1 1 41.875rem;
    width: 100%;
}

.feature-card {
    background: var(--white-color);
    border-radius: 1.25rem;
    padding: 1.25rem;
}

.feature-card-title {
    font-family: var(--font-LibreBaskerville);
    font-weight: 700;
    color: var(--primary-brick-red);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card-text {
    color: var(--gray-color);
    font-size: 1rem;
}

.ark_aboutpage_banner.feature-img {
    height: 29.25rem;
    border-radius: 2.5rem;
    flex: 1 1 0;
    width: 100%;
}

.ark_aboutpage_banner.feature-img img,
.ark_aboutpage_banner.feature-img:after {
    border-radius: 2.5rem;
}

.ark_aboutpage_banner.feature-img:after {
    background-color: rgba(0, 0, 0, 0.3);
}

.faq-section {
    background: var(--white-color);
    padding: var(--section-padding) 0;
}

.faq-header {
    display: flex;
    flex-direction: row;
    gap: 6.75rem;
}

.faq-header .ark__about__heading {
    max-width: 22.65rem;
    flex: 1 1 22.65rem;
    width: 100%;
}

.faq-header .ark__about__heading h3 {
    font-size: 2.5rem;
}

.faq-item {
    border-bottom: 0.0625rem solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faqmain-wp {
    border-top: 0.0625rem solid var(--border-color);
    border-bottom: 0.0625rem solid var(--border-color);
    width: 100%;
    flex: 1 1 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.625rem 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.question-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
}

.question-number {
    font-family: var(--font-LibreBaskerville);
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--black-color);
    min-width: 1.875rem;
}

.question-text {
    font-family: var(--font-LibreBaskerville);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black-color);
}

.toggle-icon {
    font-size: 1.875rem;
    font-weight: 300;
    color: var(--black-color);
    transition: transform 0.3s ease;
    min-width: 1.875rem;
    text-align: center;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 5rem 1.5rem 3.313rem;
    color: var(--gray-color);
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 18.75rem;
}

@media (max-width: 1279px) {
    .ark_about-wp {
        gap: 1.25rem;
        flex-direction: column;
    }

    .feature-wp,
    .faq-header,
    .ark__about__hero {
        gap: 3rem;
    }

    .faq-header {
        flex-direction: column;
    }

    .ark__aboutpage-summary .ark_summary-right img {
        width: 27.2rem;
    }

    .ark_about-left,
    .workflow-header,
    .faq-header .ark__about__heading {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .ark_about-right,
    .workflow-steps,
    .faqmain-wp {
        flex: 1 1 100%;
    }

    .ark__about__services {
        gap: 1.875rem;
    }
}

@media (max-width: 991px) {
    .ark_aboutpage_banner {
        height: 37rem;
    }

    .ark__workflow-automation .ark__workflow-automation-wp {
        flex-direction: column;
        gap: 0;
    }

    .workflow-header p {
        margin-top: 1.25rem;
    }

    .feature-grid {
        max-width: 100%;
    }

    .feature-wp {
        flex-direction: column;
        margin-top: 1.7rem;
    }

    .ark_aboutpage_banner.feature-img {
        height: 27rem;
        flex: 1 1 auto;
    }

    .ark__about__hero {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .ark__about__hero-right {
        order: -1;
    }

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

    .ark__aboutpage-summary .ark_summary-left,
    .feature-grid {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .ark-fee-explained .ark__about__heading {
        margin-bottom: 0rem;
    }
}

@media (max-width: 767px) {
    .ark_about-wp {
        margin-top: 9.625rem;
    }

    .ark_aboutpage_banner {
        height: 33rem;
    }

    .ark__aboutpage-summary .ark_summary-right img {
        width: 23rem;
    }
}

@media (max-width: 575px) {
    .ark_about-wp {
        margin-top: 8.9rem;
    }

    .ark_aboutpage_banner {
        height: 30rem;
    }

    .ark__warehouse--wrap {
        gap: 1.25rem;
        flex-direction: column;
        margin-bottom: 0;
    }

    .ark-fee-explained .ark__about__heading p {
        max-width: 100%;
    }

    .ark__about__services {
        grid-template-columns: 1fr;
    }

    .feature-wp,
    .faq-header,
    .ark__about__hero {
        gap: 2rem;
    }
}

@media (max-width: 475px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .ark_aboutpage_banner.feature-img {
        height: 23rem;
    }
}

/* About Page Design End */

/* service page start */
.our-service {
    padding: 10.625rem 0 5rem;
}

.our-service .ark__about__heading {
    max-width: 37rem;
    width: 100%;
}

.our-service .ark__about__heading p {
    color: var(--gray-color);
}

.ark_service-sec .ark__about__title {
    text-underline-offset: 0.925rem;
}

.ark__about__special-services h4 {
    color: var(--primary-brick-red);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.ark__about__special-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--gray-color);
    font-size: 1rem;
}

.ark__about__special-services li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.625rem;
}

.ark__about__special-services li span {
    color: var(--primary-brick-red);
    font-size: 1.1rem;
    margin-right: 0.625rem;
    font-weight: 700;
}

.ark_service-sec .ark__about__hero {
    gap: 2.5rem;
}

.ark_service-sec .ark__about--Forwarder-main {
    gap: 2.5rem;
}

.ark_service-sec .ark__about__hero-image {
    padding-top: 21.26rem;
}

.ark__about__special-services li:last-child {
    margin-bottom: 0;
}

.ark_service-sec {
    background-color: var(--white-color);
}

.ark_warehousing-sec {
    background-color: var(--white-smoke);
}

.ark_service-sec .ark__about__special-services p {
    color: var(--gray-color);
}

.ark_service-sec .ark__about__special-services p:not(:last-child) {
    margin-bottom: 0.625rem;
}

.service-text-wp p:not(:last-child) {
    margin-bottom: 0.625rem;
}

.ark__additional-services-section {
    background-color: var(--black-color);
}

.ark__additional-services-section .ark__about__heading {
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.ark__additional-services-section .ark__about__heading h3 {
    color: var(--white-color);
}

.additional-wp {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 1.5rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 33.875rem;
    isolation: isolate;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: all 0.5s ease;
}

.service-card .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
}

.bg-image {
    transition: transform 0.5s ease;
}

.content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    z-index: 2;
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.12);
    border: 0.0625rem solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(1.25rem);
    border-radius: 1.25rem;
    margin: 0 0.938rem 0.938rem;
    transition: transform 0.5s ease;
}

.content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    transition: transform 0.5s ease;
}

.content p {
    font-size: 0.875rem;
    color: var(--white-color);
    transform: translateY(0.625rem);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.service-card:hover .bg-image {
    transform: scale(1.12) rotate(1deg);
}

.service-card:hover::before {
    opacity: 0.9;
}

.service-card:hover .content {
    transform: translateY(0);
    box-shadow: 0 1.25rem 2.8125rem rgba(0, 0, 0, 0.4);
}

.service-card:hover .content h2 {
    transform: translateY(0.25rem);
}

.service-card:hover .content p {
    opacity: 1;
    transform: translateY(0.25rem);
}

/* EDGE RADIUS */
.additional-wp .service-card:first-child {
    border-top-left-radius: 1.25rem;
    border-bottom-left-radius: 1.25rem;
}

.additional-wp .service-card:last-child {
    border-top-right-radius: 1.25rem;
    border-bottom-right-radius: 1.25rem;
}

.additional-wp .service-card:first-child {
    border-top-left-radius: 1.25rem;
    border-bottom-left-radius: 1.25rem;
}

.additional-wp .service-card:last-child {
    border-top-right-radius: 1.25rem;
    border-bottom-right-radius: 1.25rem;
}

.contact-sec.our-service .ark__about__heading {
    max-width: 39.25rem;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 2.5rem;
}

.our-service.contact-sec .ark__about__heading p {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black-color);
}

@media (max-width: 991px) {
    .ark__about__thumb {
        padding-top: 17rem;
    }

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

    .service-card {
        height: 30rem;
    }
}

@media (max-width: 575px) {
    .additional-wp {
        grid-template-columns: repeat(1, 1fr);
    }

    .additional-wp .service-card:first-child {
        border-top-right-radius: 1.25rem;
    }

    .additional-wp .service-card:last-child {
        border-top-right-radius: 0;
        border-bottom-left-radius: 1.25rem;
        border-bottom-right-radius: 1.25rem;
    }

    .service-card {
        height: 27rem;
    }

    .ark_service-sec .ark__about__hero {
        gap: 2rem;
    }
}


/* service page end */

/* Contact page Start */
.ark-contact-form-section {
    display: flex;
    border-radius: 1.5rem;
    overflow: hidden;
    background: var(--white-color);
    box-shadow: var(--box-shadow);
    border: 0.0625rem solid var(--border-color);
}

.ark-contact-form-img {
    max-width: 38.75rem;
    flex: 1 1 38.75rem;
    width: 100%;
}

.ark-contact-form-img img {
    display: block;
}

.ark-contact-form {
    padding: 2.5rem;
    flex: 1 1 0;
    width: 100%;
}

.ark-contact-form h3 {
    color: var(--primary-brick-red);
    font-weight: 700;
    font-size: 1.75rem;
    margin: 0 0 0.25rem 0;
}

.ark-contact-form .subtitle {
    font-family: var(--font-LibreBaskerville);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--black-color);
}

.contact-title {
    margin-bottom: 2.5rem;
}

/* Form Fields start*/
.form-group {
    margin-bottom: 1.875rem;
    position: relative;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    font-family: var(--font-Montserrat);
    text-transform: capitalize;
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 0.625rem;
}

.form-group label .required {
    color: var(--reject-color);
}

input::placeholder {
    color: var(--gray-color);
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 0.688rem 0px;
    border: none;
    border-bottom: 0.0625rem solid var(--border-color);
    /* border-radius: var(--border-radius-10); */
    font-size: 1rem;
    color: var(--gray-color);
    background-color: var(--white-color);
    transition: border-color 0.3s;
    -webkit-appearance: none;
    position: relative;
    font-family: var(--font-inter);
    outline: 0;
}

.select-wrapper {
    position: relative;
    display: block;
}

.select-wrapper select {
    width: 100%;
    padding: 0.6875rem 1.875rem 0.6875rem 0px;
    border-bottom: 0.0625rem solid var(--border-color);
    /*border-radius: var(--border-radius-10);*/
    color: var(--gray-color);
    background-color: var(--white-color);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    transition: border-color 0.3s ease;
    -webkit-transition: border-color 0.3s ease;
    -moz-transition: border-color 0.3s ease;
    -ms-transition: border-color 0.3s ease;
    -o-transition: border-color 0.3s ease;
}

.select-wrapper select option {
    padding: 0 0.625rem;
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-selection--multiple {
    border: 0;
    border-bottom: 0.0625rem solid var(--border-color) !important;
}

.selection .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: var(--border-color) !important;
}

.select2-container--default .select2-search--inline .select2-search__field {
    width: auto !important;
}

.form-gp-wp {
    display: flex;
    gap: 1rem;
}

.form-gp-wp .form-group {
    width: 100%;
}

.form-gp-wp .form-group input:-webkit-autofill,
.form-gp-wp .form-group input:-webkit-autofill:hover,
.form-gp-wp .form-group input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px var(--white-color) inset !important;
}

.calendar-icon {
    position: absolute;
    z-index: 1;
    bottom: 0.313rem;
    cursor: pointer;
}

.date-input-container>div::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 0.063rem;
    background-color: var(--border-color);
    right: -1.25rem;
    top: -0.188rem;
}

.date-input-container>div img {
    width: 1.25rem;
    height: auto;
}

.date-input-container input.ark_datepicker {
    padding-left: 3.625rem;
}

textarea {
    font-family: var(--font-Montserrat);
    font-size: 0.875rem;
    width: 100%;
    border: 0;
    border-bottom: 0.0625rem solid var(--border-color);
    outline: 0;
    resize: none;
    height: 6.25rem;
    color: var(--gray-color);
    padding-top: 0.625rem;
}

.submit-btn {
    width: 100%;
    background: var(--primary-brick-red);
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-Montserrat);
    padding: 1rem;
    border: none;
    border-radius: 3.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.submit-btn:hover {
    transform: translateY(0.125rem);
}

/* Form Fields end*/
.info-card-wp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
}

.card {
    background: var(--white-color);
    border-radius: 0.625rem;
    padding: 1.25rem;
    border: 0.0625rem solid var(--border-color);
    box-shadow: var(--box-shadow);
    transition: all 0.35s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.12);
    border-color: var(--primary-brick-red);
}

.icon-box {
    width: 5rem;
    height: 5rem;
    background: var(--white-color);
    border: 0.0625rem solid var(--border-color);
    box-shadow: var(--box-shadow);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.35s ease;
}

.card:hover .icon-box {
    background: var(--primary-brick-red);
    transform: scale(1.05);
}

.icon-box svg {
    width: 1.625rem;
    height: auto;
}

.card:hover .icon-box svg path {
    stroke: var(--white-color);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--black-color);
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 0.0625rem solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-section {
    margin-bottom: 1.25rem;
}

.contact-section:last-child {
    margin-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.625rem;
}

.bullet {
    color: var(--black-color);
    font-weight: bold;
    font-size: 1rem;
}

.section-title {
    font-family: var(--font-Montserrat);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black-color);
}

.section-content {
    font-family: var(--font-Montserrat);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-color);
    margin-left: 1.25rem;
}

.section-content a {
    color: var(--gray-color);
    position: relative;
    transition: color 0.3s ease;
}

.section-content a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.125rem;
    width: 0;
    height: 0.125rem;
    background: var(--primary-brick-red);
    transition: width 0.3s ease;
}


.section-content a:hover {
    color: var(--primary-brick-red);
}

.section-content a:hover::after {
    width: 100%;
}

.section-title,
.bullet {
    transition: color 0.3s ease;
}

.card:hover .section-title,
.card:hover .bullet {
    color: var(--primary-brick-red);
}

.info-sec,
.busines-grow-sec {
    padding-bottom: var(--section-padding);
}

.busines-grow-sec .ark__about__heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.busines-grow-sec .ark__about__heading p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black-color);
    max-width: 29rem;
    margin-inline: auto;
}

.busines-grow-sec .ark__about__heading h3 {
    font-size: 2rem;
    line-height: 1;
}

.busines-grow-sec iframe {
    box-shadow: var(--box-shadow);
    border-bottom: 0.0625rem solid var(--border-color) !important;
    border-radius: 2.5rem;
    height: 28.125rem;
    width: 100%;
}

.ark_block {
    display: block;
}

@media (max-width: 1279px) {
    .ark-contact-form-img {
        max-width: 30rem;
        flex: 1 1 30rem;
    }
}

@media (max-width: 991px) {
    .info-card-wp {
        grid-template-columns: repeat(2, 1fr);
    }

    .ark-contact-form-img {
        max-width: 100%;
        flex: 1 1 auto;
        height: 25em;
    }

    .ark-contact-form-section {
        flex-direction: column;
    }

    .ark-contact-form {
        padding: 1.25rem;
        flex: 1 1 auto;
    }

    .contact-title {
        margin-bottom: 1.8rem;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 3.5rem;
    }
}

@media (max-width: 575px) {
    .info-card-wp {
        grid-template-columns: repeat(1, 1fr);
    }

    .form-gp-wp {
        flex-direction: column;
        gap: 0;
    }

    .form-gp-wp .form-group {
        margin-bottom: 1.875rem;
    }

    .our-service {
        padding: 9.5rem 0 3.5rem;
    }
}

/* Contact page end */


/* Popup Styles */
.ark__popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.ark__popup-overlay.show {
    display: flex !important;
}

.ark__popup {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    opacity: 0;
    animation: popupAppear 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popupAppear {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.ark__popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ark__popup-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.ark__popup-close img {
    width: 16px;
    height: 16px;
}

.ark__popup-content {
    text-align: center;
}

.ark__popup-icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.ark__popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.ark__popup-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.ark__popup h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.3;
}

.ark__popup p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ark__popup small {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    margin-top: 16px;
}

.ark__popup small #contactCountdown {
    font-weight: 600;
    color: #10b981;
}

@media (max-width: 576px) {
    .ark__popup {
        padding: 30px 20px;
        width: 95%;
    }

    .ark__popup h2 {
        font-size: 20px;
    }

    .ark__popup p {
        font-size: 14px;
    }

    .ark__popup-icon {
        width: 70px;
        height: 70px;
    }

    .ark__popup-icon img {
        width: 35px;
        height: 35px;
    }
}


.error-message {
    color: var(--reject-color);
    font-size: 0.75rem;
    /* 12px -> 0.75rem */
    /* margin-top: 0.3125rem; */
    /* 5px -> 0.3125rem */
    display: none;
    position: absolute;
    right: 0;
    bottom: 0.125rem;
    /* 2px -> 0.125rem */
    padding: 0.75rem 0.75rem 0.75rem 0;
    /* 12px -> 0.75rem */
    background: white;
}

.form-group.error .error-message {
    display: flex;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.form-group.error input {
    border-color: var(--reject-color);
}

/* start tooltip */
.tippy-tooltip.custom-theme {
    background-color: white;
    color: var(--gray-color);
    padding: 0.75rem;
    /* 12px */
    font-size: 0.875rem;
    /* 14px */
    box-shadow: 0 0.25rem 0.75rem 0 rgba(0, 0, 0, 0.1);
    /* 0px 4px 12px */
}

.tippy-tooltip.custom-theme .tippy-arrow {
    transform: scale(1.5);
    filter: drop-shadow(0px 0.625rem 0.25rem rgba(0, 0, 0, 0.2));
    /* 10px 4px */
    -webkit-filter: drop-shadow(0px 0.625rem 0.25rem rgba(0, 0, 0, 0.2));
}

.tippy-tooltip.custom-theme[data-placement^="top"] .tippy-arrow {
    border-top-color: white;
    /* filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2)); */
}

.tippy-tooltip.custom-theme[data-placement^="bottom"] .tippy-arrow {
    border-bottom-color: white;
    /* filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2)); */
}

.tippy-tooltip.custom-theme[data-placement^="left"] .tippy-arrow {
    border-left-color: white;
    /* filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
  -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2)); */
}

.tippy-tooltip.custom-theme[data-placement^="right"] .tippy-arrow {
    border-right-color: white;
    /* filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2)); */
}

.step-count {
    margin-bottom: 0;
    line-height: 1;
}

/* end tooltip */