:root {
    --main-color: #ff6e00;
    --linear-gradient: linear-gradient(180deg, rgba(252, 77, 0, 0.05) 0%, rgba(68, 172, 0, 0.05) 37.6%, rgba(68, 172, 0, 0.05) 68.33%, rgba(191, 108, 0, 0.05) 100%);
    --white: #fff;
    --black: #000;
    --button-padding: 15px 20px 15px 20px;
    --button-radius: 5px;
    --gap10: 10px;
    --gap20: 20px;
    --f16: 16px;
    --container-width: 1310px;
    --bg: #edeaf7;
    --text: #1a1a1a;
    --accent: #c8f045;
    --grid: rgba(180, 170, 220, 0.25);
}

main p a {
    color: #000 !important;
}

main .text-white p a {
    color: #fff !important;
}

* {
    font-family: 'Exo 2';
    margin: 0;
    padding: 0;
}

*::before,
*::after {
    box-sizing: border-box;
}

#main {
    float: none;
}

img {
    max-width: 100%;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

p {
    font-weight: 400;
    line-height: 23px;
    color: var(--black);
    font-size: 16px;
    display: block;
    text-align: justify;
    margin-bottom: 10px;
}

p:last-child {
    margin-bottom: 0;
}

.heading-area {
    display: block;
    width: 100%;
    margin: 0 0 15px 0;
}

.heading-style {
    margin-top: -8px;
    font-size: 38px;
    color: #000;
    position: relative;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1em;
}

.heading-style~b {
    display: block;
    color: #000000;
    line-height: 20px;
    position: relative;
    text-transform: uppercase;
    margin: 10px 0 10px 0;
    font-size: 20px;
}

.heading-style span {
    color: var(--main-color);
}

.m-color {
    color: var(--main-color);
}

.heading-area.center>* {
    display: block;
    text-align: center;
}

.heading-area.white>* {
    color: var(--white);
}

.heading-area>p {
    margin: 5px 0 0 0;
}

.m-0 {
    margin: 0 !important;
}

main {
    max-width: 1920px;
    margin: 80px auto 0 auto;
}

main>*,
main>section {
    padding: 40px 0;
}

.common-btn {
    background-color: var(--main-color);
    color: var(--white);
    padding: var(--button-padding);
    gap: var(--gap20);
    font-size: var(--f16);
    border-radius: var(--button-radius);
    -webkit-border-radius: var(--button-radius);
    -moz-border-radius: var(--button-radius);
    -ms-border-radius: var(--button-radius);
    -o-border-radius: var(--button-radius);
    line-height: 1em;
    display: inline-flex;
    align-items: center;
    gap: var(--gap10);
    font-weight: 400;
    font-family: 'Exo 2';
    border: none;
    outline: none;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    z-index: 0;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    cursor: pointer;
    text-align: left;
}

.common-btn::before {
    background: #000;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    z-index: -1;
    pointer-events: none;
}

.common-btn:hover::before {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
}

.common-btn img {
    width: 18px;
    height: 13px;
    display: inline-block;
    font-size: 0;
    vertical-align: middle;
}

.common-btn._VIDEO_ img {
    width: 20px;
    height: 20px;
}

.common-btn:hover {
    color: var(--white);
}

.common-btn.white_bg {
    background-color: var(--white);
    color: var(--main-color);
}

.common-btn.white_bg:hover {
    color: #fff;
}

.common-btn.white_bg:hover img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.button-block {
    margin-top: 20px;
}

/* _______________________________________________ */
.banner {
    background: var(--linear-gradient);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.banner-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.banner-left {
    width: 38%;
}

.banner-right {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.banner-right img {
    border-radius: 20px 0 0 20px;
}

.banner h1 {
    font-size: 46px;
    line-height: 1em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--black);
    text-transform: uppercase;
    line-height: 1em;
}

.banner h1 span {
    color: var(--main-color);
}

.banner h1 strong,
.banner h1~strong {
    display: block;
    margin-bottom: 0;
    width: 100%;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1em;
}

/* --------------------------------------------------- */
.office {
    padding-top: 0;
}

.office-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}

ul.office-photos .slick-slide:before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 39%;
}

ul.office-photos .slick-slide img {
    position: absolute;
    left: 0;
    top: 0;
}

.slick-slider {
    margin-bottom: 0;
}

.slick-slider img {
    max-width: 100%;
}

.slick-slider .slide-arrow {
    position: absolute;
    width: 42px;
    height: 42px;
    bottom: 10px;
    cursor: pointer;
    border: 2px solid #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: #fff;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    z-index: 1;
    font-size: 38px;
    color: var(--main-color);
}

.slick-slider .slide-arrow img {
    vertical-align: top;
}

.slick-slider .slide-arrow.next-arrow {
    right: 10px;
    left: auto;
}

.slick-slider .slide-arrow.next-arrow:hover {
    right: 10px;
}

.slick-slider .slide-arrow.prev-arrow {
    left: 10px;
    right: auto;
}

.slick-slider .slide-arrow.prev-arrow:hover {
    left: 10px;
}

/* --------------------------------------------- */
.identity-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.identity-left {
    width: 53%;
    display: flex;
}

.identity-right {
    width: 45%;
}

.features {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 15px;

}

/* Feature items */
.features li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
}

.features li:not(:last-child) {
    border-bottom: 1px solid #F3F4F6;
    padding-bottom: 15px;
}

.features .icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.features .icon.blue {
    background: #e8f0ff;
    color: #3b82f6;
}

.features .icon.orange {
    background: #fff3e8;
    color: #f97316;
}

.features .icon.green {
    background: #E8F7EA;
    color: #22B544;
}

.features .icon svg {
    width: 30px;
    height: 30px;
}

.content h3 {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
}

.content p {
    margin: 0;
}

/* CTA list item */
.cta-item {
    margin-top: 10px;
}

/* Button */
.cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.cta:hover {
    background: #e65c00;
}

.arrow {
    background: #fff;
    color: #333;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 16px;
}

/* --------------------------------------------- */
.ti-wrap {
    background: #ffffff;
}

.ti-wrap-inner {
    max-width: var(--container-width);
    padding: 0 15px;
    margin: 0 auto;
}

.ti-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ti-row:last-of-type {
    margin-bottom: 0;
}

.ti-cell {
    padding: 25px;
    border: 1px solid #f6f6f6;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.ti-cell p {
    text-align: center;
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-size: 40px;
}

.ti-cell-inner .border {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid #f6f6f6;
    margin: -59px auto 0 auto;
    top: -9px;
    right: -5px;
}

.icon-box svg {
    width: 28px;
    height: 28px;
}

.ib-purple {
    background: #F4F2FF;
    color: #7B6FDD;
}

.ib-purple~.border {
    border-color: #7B6FDD;
}


.ib-green {
    background: #F2F8ED;
    color: #5a9a2a;
}

.ib-green~.border {
    border-color: #5a9a2a;
}


.ib-orange {
    background: #FEF4E8;
    color: #E07B2A;
}

.ib-orange~.border {
    border-color: #E07B2A;
}


.ib-peach {
    background: #FEF3ED;
    color: #D86030;
}

.ib-peach~.border {
    border-color: #D86030;
}


.ib-blue {
    background: #E6F1FB;
    color: #378ADD;
}

.ib-blue~.border {
    border-color: #378ADD;
}

.ib-pink {
    background: #FBEAF0;
    color: #D4537E;
}

.ib-pink~.border {
    border-color: #D4537E;
}

.ib-teal {
    background: #E1F5EE;
    color: #1D9E75;
}

.ib-teal~.border {
    border-color: #1D9E75;
}

.ib-amber {
    background: #FAEEDA;
    color: #BA7517;
}

.ib-amber~.border {
    border-color: #BA7517;
}

.ti-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    line-height: 1em;
    text-align: center;
    margin: 10px 0;
}

.ti-cell-inner {
    position: relative;
}

/* _________________________________________ */
.team-wrap {
    background: #7B6FDD;
    padding: 50px 15px;
}

.team-card-outer {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.ceo-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    margin-top: 1.5rem;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}

.dots-decoration {
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.dots-decoration span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c5bfff;
    display: block;
}

.grid-decoration {
    position: absolute;
    bottom: -10px;
    right: -18px;
    width: 60px;
    height: 60px;
    background-image: repeating-linear-gradient(0deg, #e8e6ff 0, #e8e6ff 1px, transparent 1px, transparent 10px), repeating-linear-gradient(90deg, #e8e6ff 0, #e8e6ff 1px, transparent 1px, transparent 10px);
    background-size: 10px 10px;
    opacity: 0.6;
    border-radius: 4px;
}

.play-btn {
    position: absolute;
    bottom: 18px;
    left: 18px;
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-btn svg {
    width: 18px;
    height: 18px;
    fill: #6c4ef2;
    margin-left: 3px;
}

.review-content {
    padding: 0.5rem 0;
}

.quote-stars {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-bottom: 10px;
}

.quote-stars img {
    height: 35px;
}

.quote-mark {
    font-size: 3.5rem;
    color: #e0ddf8;
    line-height: 0.6;
}

.ceo_name {
    padding: 0 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
}

.reviewer-role {
    display: flex;
    align-items: center;
    gap: 5px;
}

.reviewer-role a img {
    width: 20px;
    height: 20px;
    vertical-align: top;
}

.reviewer-name {
    font-size: 24px;
    color: var(--main-color);
    text-transform: capitalize;
    font-weight: bold;
    display: block;
}

.testimonial-slider-content-wrap {
    background-color: #004540;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    flex-flow: column;
    justify-content: space-between;
    padding: 20px;
    display: flex;
    position: relative;
}

.testimonial-slider-content-wrap p {
    color: #fff;
}

.review-content p {
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.member-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ececec;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.member-photo {
    position: relative;
    background: #F9FAFB;
    height: 245px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo svg.bolt {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 18px;
    height: 18px;
    opacity: 0.35;
}

.avatar-svg {
    width: 80px;
    height: 80px;
    opacity: 0.25;
}

.member-info {
    background: #fff;
    padding: 10px 12px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #ececec;
}

.li-badge {
    width: 22px;
    height: 22px;
    background: #0077B5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.li-badge svg {
    width: 13px;
    height: 13px;
}

.member-name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.member-name strong {
    font-weight: 400;
    display: block;
    color: #AAA;
    font-size: 14px;
}

/* _________________________________________ */
.services {
    padding: 40px 0;
}

.services-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.services-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
}

.services-card .icon {
    font-size: 30px;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.services-card strong {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
    display: block;
}

/* Specific card colors */
.otp-login {
    background-color: #eff6ff;
}

.otp-login .icon {
    color: #6c5ce7;
}

/* Purple */
.realtime-tracking {
    background-color: #f1fdf4;
}

.realtime-tracking .icon {
    color: #00b894;
}

/* Green */
.invoice-download .icon {
    color: #ea590d;
}

.invoice-download {
    background-color: #fff7ed;
}

/* Yellow/Orange */
.in-app-chat .icon {
    color: #ea590d;
}

.in-app-chat {
    background-color: #fef7ee;
}

/* Coral */
.multiple-payments .icon {
    color: #973bea;
}

.multiple-payments {
    background-color: #fdf4fc;
}

/* Blue */
.document-alerts .icon {
    color: #d63031;
}

.document-alerts {
    background-color: #fdf2f2;
}

/* _________________________________________ */
.our-company {
    text-align: center;
}

.our_container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.our_container .grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.our_container .column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.our_container .icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 37px;
    margin-bottom: 15px;
}

.our_container h3 {
    display: block;
    font-size: 20px;
    color: #000;
    text-transform: capitalize;
    line-height: 1.2em;
    margin-bottom: 10px;
    font-weight: bold;
}

.yellow {
    background: #f7eec8;
}

.purple {
    background: #f2f0ff;
}

.blue {
    background: #e3efff;
}

.orange {
    background: #ffebd7;
}

/* CENTER */
.center {
    position: relative;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    border-radius: 20px;
}

/* floating cards */
.our_company .card {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.small {
    top: -20px;
    left: 20px;
    font-size: 14px;
}

.chart {
    bottom: -20px;
    right: 10px;
    width: 180px;
}

.chart h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
}

.bars span {
    width: 12px;
    background: #f59e0b;
    border-radius: 4px;
}

/* _________________________________________ */
.our-team-success {
    background: #f8f8f8;
}

.our-team-success-inner {
    max-width: var(--container-width);
    padding: 0 15px;
    margin: 0 auto;
}


.our-team-success .page {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
}

.our-team-success .cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
}

.our-team-success .card p {
    margin: 0;
}

.our-team-success .card {
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(.22, .68, 0, 1.2);
    cursor: default;
}

.our-team-success .card:hover {
    transform: translateY(-5px);
}

.our-team-success .card-1 {
    background: #FFF2F2;
    border-color: rgba(255, 107, 107, 0.2);
}

.our-team-success .card-2 {
    background: #F0EFFF;
    border-color: rgba(108, 99, 255, 0.2);
}

.our-team-success .card-3 {
    background: #EDFAF7;
    border-color: rgba(17, 153, 142, 0.2);
}

.our-team-success .card-4 {
    background: #FFF8E8;
    border-color: rgba(247, 151, 30, 0.2);
}

.our-team-success .card-title {
    font-size: 48px;
    line-height: 1em;
    font-weight: 800;
}

.our-team-success .card-1 .card-title {
    color: #e84545;
}

.our-team-success .card-2 .card-title {
    color: #5a52d5;
}

.our-team-success .card-3 .card-title {
    color: #0d9e8e;
}

.our-team-success .card-4 .card-title {
    color: #d97b10;
}

.our-team-success .divider {
    width: 50%;
    height: 1px;
    background: rgba(123, 111, 221, 0.2);
}

.our-team-success .ticker-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.our-team-success .ticker-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #aaa;
}

.our-team-success .countries-ticker {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.our-team-success .ticker-row {
    display: flex;
    width: max-content;
    gap: 10px;
    padding: 5px 0;
}

.our-team-success .ticker-row.row-1 {
    animation: scroll-left 35s linear infinite;
}

.our-team-success .ticker-row.row-2 {
    animation: scroll-right 42s linear infinite;
}

.our-team-success .countries-ticker:hover .ticker-row {
    animation-play-state: paused;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.our-team-success .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    padding: 7px 16px 7px 10px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    cursor: default;
    transition: transform 0.25s cubic-bezier(.22, .68, 0, 1.4);
}

.our-team-success .ticker-item:hover {
    transform: scale(1.08) translateY(-2px);
}

.our-team-success .flag {
    font-size: 18px;
    line-height: 1;
}

.our-team-success .g1 {
    background: #FFF2F2;
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #c0392b;
}

.our-team-success .g2 {
    background: #F0EFFF;
    border: 1px solid rgba(108, 99, 255, 0.3);
    color: #5a52d5;
}

.our-team-success .g3 {
    background: #EDFAF7;
    border: 1px solid rgba(17, 153, 142, 0.3);
    color: #0d9e8e;
}

.our-team-success .g4 {
    background: #FFF8E8;
    border: 1px solid rgba(247, 151, 30, 0.3);
    color: #d97b10;
}

.our-team-success .g5 {
    background: #FEF0F8;
    border: 1px solid rgba(238, 9, 121, 0.25);
    color: #c01080;
}

.our-team-success .g6 {
    background: #EDF8FD;
    border: 1px solid rgba(0, 180, 219, 0.3);
    color: #0080b0;
}

.our-team-success .g7 {
    background: #EDFAF3;
    border: 1px solid rgba(56, 200, 120, 0.3);
    color: #1a8f50;
}

.our-team-success .g8 {
    background: #F5F0FF;
    border: 1px solid rgba(140, 100, 210, 0.3);
    color: #7b3fa0;
}

.our-team-success .g9 {
    background: #FEF0FB;
    border: 1px solid rgba(230, 60, 180, 0.25);
    color: #b5208a;
}

.our-team-success .g10 {
    background: #EDFCFC;
    border: 1px solid rgba(48, 207, 208, 0.3);
    color: #1590a0;
}

/* _________________________________________ */
.event_inner {
    max-width: var(--container-width);
    padding: 0 15px;
    margin: 0 auto;
}

.achivment {
    position: relative;
    padding: 40px 15px;
    overflow: hidden;
    background-color: var(--bg);
    background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 80px 80px;
}

.achivment .heading-area {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto 15px auto;
}

/* ── Two-column layout ── */
.achivment__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
    background: #ffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

.achivment__inner:not(:last-child) {
    margin-bottom: 20px;
}

.achivment__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achivment__img-left {
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    animation: fadeUp 0.7s 0.15s ease both;
}

.achivment__right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.achivment__img-right {
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    animation: fadeUp 0.7s 0.25s ease both;
}

.achivment__heading {
    font-size: 28px;
    line-height: 1.4;
    color: #000;
    display: block;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1em;
}

/* ___________________________________________________________ */
.ready-to-work-section {
    padding-top: 0;
}

.ready-to-work-inner {
    max-width: var(--container-width);
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
}

.ready-to-work-left {
    flex: 2.5;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: url("../images/our-team/our-team-work.webp") center/cover no-repeat;
}

.ready-to-work-overlay {
    height: 100%;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to right, rgba(10, 50, 120, 0.9), rgba(10, 50, 120, 0.2));
    color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.ready-to-work-subtitle {
    color: #a6ff00;
    margin-bottom: 15px;
    font-weight: bold;
}

.ready-to-work-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.ready-to-work-overlay button {
    background: #a6ff00;
    color: #003366;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
}

.ready-to-work-right {
    flex: 1;
}

.tc-links {
    display: grid;
    gap: 12px;
    width: 100%;
    border-radius: 12px;
}

.tc-link-card {
    border-radius: 10px;
    background: #F2F8ED;
    padding: 16px 20px;
    display: flex;
    gap: 20px;
    transition: border-color .2s, background .2s, box-shadow .2s;
    color: #000;
    font-size: 18px;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
}

.tc-link-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #000;
}

.tc-link-title {
    font-weight: bold;
    font-size: 20px;
    display: block;
    margin-bottom: 2px;
}

.tc-icon {
    font-size: 40px;
}

.tc-link-card:nth-child(1) {
    background: #EDF2FF;
}

.tc-link-card:nth-child(2) {
    background: #F2F8ED;
}

.tc-link-card:nth-child(3) {
    background: #FFF8ED;
}

.tc-link-card:nth-child(4) {
    background: #FDF0F0;
}

.tc-link-card:nth-child(5) {
    background: #F3EDFF;
}

.tc-link-sub {
    font-size: 16px;
}

.label {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}

.contact-card h3 {
    font-size: 20px;
    margin-top: 5px;
    color: #000;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #4CAF50;
}

/* ______________________________________________________ */
.international-trips {
    padding: 40px 0;
    background-color: #f8f8f8;
}

.international-trips-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}

.international-trips ul {
    display: flex;
    flex-wrap: wrap;
}

.international-trips ul li {
    padding: 0 5px 10px 5px;
    position: relative;
}

.international-trips ul li .overlay {
    position: absolute;
    right: 5px;
    bottom: 10px;
    background: rgba(255, 110, 0, 0.8);
    color: #fff;
    padding: 5px 20px;
    font-size: 20px;
    min-width: 50%;
    text-align: center;
    font-weight: bold;
    text-transform: capitalize;
}

.international-trips ul li img {
    max-width: 100%;
    vertical-align: top;
}

.international-trips ul li.halfwidth {
    width: 50%;
}

.international-trips ul li.onethitd {
    width: 33.33%;
}

/* ______________________________________________________ */
.stories-section {
    padding: 40px 0;
    position: relative;
    width: 100%;
    background-color: #f8f8f8;
}

.stories-section-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}

.stories-section .stories-process {
    width: 100%;
    display: block;
    text-align: center;
}

.stories-section .stories-process p {
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.stories-section .stories-process .our-stories {
    width: 100%;
    position: relative;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
}

.stories-section .stories-process .our-stories .our-stories-col {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.15);
}

.stories-section .stories-process .our-stories .our-stories-col a {
    padding: 15px;
    display: grid;
    font-size: 20px;
    background-color: #fff;
    font-weight: bold;
    color: #000;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: auto auto;
}

/* ______________________________________________________ */
.cta-wrap {
    padding-left: 15px;
    padding-right: 15px;
}

.cta__inner {
    background-color: #0a2a33;
    background-image: radial-gradient(circle at 79% 106%, #0f06, #fff0 6%), radial-gradient(circle at 24% -11%, #00ff00bf, #fff0 7%), url("../images/our-team/vector.svg");
    border-radius: 18px;
    padding: 52px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
    max-width: var(--container-width);
    margin: 0 auto;
}

.cta-dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.cta-glow-tl {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 220, 100, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.cta-glow-br {
    position: absolute;
    bottom: -30px;
    right: 160px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 220, 100, 0.13) 0%, transparent 70%);
    pointer-events: none;
}

.cta-left {
    position: relative;
    z-index: 1;
    flex: 1;
}

.cta-left p {
    color: #fff;
}

.cta-right {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
}

.cta-right .button-block {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 15px;
    justify-content: flex-end;
}

/* ______________________________________________________ */
.reviews-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.reviews .reviews-inner>a {
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0 2px var(--theme) inset;
    border-radius: 5px;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    padding: 0 90px;
    transition: all 0.5s ease 0s;
    background-color: var(--theme);
    min-height: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.reviews .reviews-inner>a:after {
    content: '';
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--theme-dark);
    z-index: -1;
    border-radius: 0;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.reviews .reviews-inner>a:hover:after {
    width: 100%;
}

.reviews .reviews-inner>a:hover {
    background-color: var(--theme-dark);
    box-shadow: 0 0 0 2pxvar(--theme-dark) inset;
}

.reviews .client-left-shape {
    position: absolute;
    top: -158px;
    left: -10px;
    pointer-events: none;
}

.reviews .client-right-shape {
    position: absolute;
    bottom: -183px;
    right: -10px;
    pointer-events: none;
}

ul.reviews-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

ul.reviews-list li a {
    display: block;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.20);
    min-height: 100%;
    position: relative;
    border: 3px solid #fff;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

ul.reviews-list li:not(:last-child) a:before {
    content: '';
    display: block;
    padding-top: 71%;
}

ul.reviews-list li a::after {
    content: '';
    background-image: url(../images/our-team/play-video.svg);
    position: absolute;
    right: 10px;
    top: 10px;
    width: 46px;
    height: 46px;
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: center;
    background-color: var(--main-color);
    border-radius: 50%;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 40%);
}

ul.reviews-list li a img {
    max-width: 100%;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    vertical-align: top;
    position: absolute;
    left: 0;
    top: 0;
}

ul.reviews-list li.morereview a {
    min-height: 100%;
    font-size: 28px;
    font-weight: bold;
    line-height: 34px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    color: #fff;
    padding: 15px;
    text-align: center;
}

ul.reviews-list li.morereview a:hover {
    background-color: #cb600f;
}

ul.reviews-list li.morereview a:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 10px;
    width: 50px;
    height: 50px;
    border-width: 1px 0 0 1px;
    border-style: solid;
    border-color: #fff;
    border-radius: 20px 0 0 0;
    -webkit-border-radius: 20px 0 0 0;
    -moz-border-radius: 20px 0 0 0;
    -ms-border-radius: 20px 0 0 0;
    -o-border-radius: 20px 0 0 0;
}

ul.reviews-list li.morereview a:after {
    content: '';
    position: absolute;
    top: auto;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    border-width: 0 1px 1px 0;
    border-style: solid;
    border-color: #fff;
    background-image: none;
    background-color: transparent !important;
    box-shadow: none;
    border-radius: 0 0 20px 0;
    -webkit-border-radius: 0 0 20px 0;
    -moz-border-radius: 0 0 20px 0;
    -ms-border-radius: 0 0 20px 0;
    -o-border-radius: 0 0 20px 0;
}

/* ============================================================
   RESPONSIVE CSS — Full Breakpoint Coverage
   Breakpoints: 1920 | 1400 | 1199 | 991 | 768 | 630 | 480 | 360
   ============================================================ */

/* ── 1920px ── */
@media (max-width: 1920px) {
    .banner-right img {
        max-width: 57vw;
    }
}

/* ── 1400px ── */
@media (max-width: 1400px) {

    /* Banner */
    .banner h1 {
        font-size: 40px;
    }

    .banner-left {
        width: 44%;
    }

    .banner-right {
        width: 54%;
    }

    .banner-right img {
        max-width: 100%;
        border-radius: 10px;
    }

    /* Heading */
    .heading-style {
        font-size: 34px;
    }

    /* TI Row */
    .ti-row {
        grid-template-columns: repeat(3, 1fr);
    }

    /* CTA */
    .cta__inner {
        padding: 44px 40px;
    }
}

/* ── 1199px ── */
@media (max-width: 1199px) {

    /* Heading */
    .heading-style {
        font-size: 32px;
    }

    .heading-style~b {
        font-size: 18px;
    }

    /* Banner */
    .banner-inner {
        flex-direction: column-reverse;
    }

    .banner h1 {
        font-size: 46px;
    }

    .banner-left {
        width: 100%;
    }

    .banner-right {
        width: 100%;
        align-items: center;
        margin: 0 0 20px 0;
    }

    .banner-right img {
        max-width: 100%;
        border-radius: 12px;
        border: 10px solid #fff;
    }

    /* Identity */
    .identity-left {
        width: 47%;
    }

    .identity-right {
        width: 50%;
    }

    /* TI Row */
    .ti-row {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Our Company */
    /* Team */
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Stats / count list */
    ul.count-list {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Reviews */
    ul.reviews-list {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Achievement */
    .achivment__inner {
        gap: 30px;
        padding: 24px;
    }

    /* Ready to work */
    .ready-to-work-overlay h1 {
        font-size: 34px;
    }

    /* CTA */
    .cta__inner {
        padding: 40px 30px;
        gap: 24px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* ── 991px ── */
@media (max-width: 991px) {

    /* Global */
    main>*,
    main>section {
        padding: 40px 0;
    }

    /* Heading */
    .heading-style {
        font-size: 28px;
    }

    .heading-style~b {
        font-size: 16px;
    }

    /* Banner */
    .banner h1 {
        font-size: 38px;
    }

    .banner h1 strong,
    .banner h1~strong {
        font-size: 17px;
    }

    /* Identity — stack vertically */
    .identity-inner {
        flex-direction: column;
    }

    .identity-left,
    .identity-right {
        width: 100%;
    }

    /* TI Row */
    .ti-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Our Team Success */
    .our-team-success .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .our-team-success .card-title {
        font-size: 40px;
    }

    /* Achievement */
    .achivment__inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .achivment__heading {
        font-size: 22px;
    }

    /* Team */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .team-card-outer {
        padding: 25px 20px;
    }

    .team-wrap {
        padding: 40px 15px;
    }

    /* CEO Card */
    .ceo-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .image-wrapper img {
        /* height: 320px; */
        width: auto;
        margin: auto;
    }

    /* Reviews */
    ul.reviews-list {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Ready to work */
    .ready-to-work-inner {
        flex-direction: column;
    }

    .ready-to-work-right {
        width: 100%;
    }

    .ready-to-work-overlay h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    /* CTA */
    .cta__inner {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
        gap: 20px;
    }

    .cta-right {
        justify-content: center;
        width: 100%;
    }

    .cta-right .button-block {
        justify-content: center;
    }

    .cta-left {
        width: 100%;
    }

    /* Our Company */
    .our_container .grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .our_container .column {
        gap: 24px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    /* Office / slider arrows */
    .slick-slider .slide-arrow {
        width: 36px;
        height: 36px;
        font-size: 28px;
    }

    .our-company .grid .center {
        display: none;
    }

}

/* ── 768px ── */
@media (max-width: 768px) {

    /* Heading */
    .heading-style {
        font-size: 26px;
    }

    /* Banner */
    .banner h1 {
        font-size: 32px;
    }

    /* TI Row — 2 cols on tablet */
    .ti-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ti-title {
        font-size: 17px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Our Team Success */
    .our-team-success .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    /* Team */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reviews */
    ul.reviews-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    /* Achievement */
    .achivment {
        padding: 40px 15px;
    }

    /* Ready to Work */
    .ready-to-work-overlay {
        padding: 28px 24px;
    }

    .ready-to-work-overlay h1 {
        font-size: 26px;
    }

    /* CTA */
    .cta__inner {
        padding: 30px 20px;
        border-radius: 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .common-btn {
        font-size: 15px;
        padding: 13px 18px;
    }

    .stories-section .stories-process .our-stories {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── 630px ── */
@media (max-width: 630px) {

    .heading-style {
        font-size: 22px;
    }

    .heading-style br {
        display: none;
    }

    .heading-style~b {
        font-size: 15px;
        margin: 7px 0;
    }

    .button-block {
        margin-top: 16px;
    }

    /* TI Row — 2 cols on mobile */
    .ti-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Services */
    .services-card {
        padding: 16px;
        gap: 12px;
    }

    .services-card strong {
        font-size: 17px;
    }

    .services-card .icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    /* Our Team Success */
    .our-team-success .cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .our-team-success .card {
        padding: 18px 16px;
    }

    .our-team-success .card-title {
        font-size: 34px;
    }

    /* Achievement */
    .achivment__inner {
        padding: 18px;
        border-radius: 12px;
        gap: 16px;
    }

    .achivment__heading {
        font-size: 18px;
    }

    /* Team */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .team-card-outer {
        padding: 20px 15px;
        border-radius: 14px;
    }

    .team-wrap {
        padding: 30px 12px;
    }

    .member-photo {
        height: 160px;
    }

    .member-name {
        font-size: 15px;
    }

    /* CEO Card */
    .ceo-card {
        grid-template-columns: 1fr;
    }


    .reviewer-name {
        font-size: 20px;
    }

    /* Reviews */
    ul.reviews-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Ready to work */
    .ready-to-work-overlay {
        padding: 24px 18px;
    }

    .ready-to-work-overlay h1 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .ready-to-work-overlay button {
        padding: 12px 24px;
        font-size: 15px;
    }

    .tc-link-card {
        padding: 14px 14px;
        gap: 12px;
    }

    .tc-link-title {
        font-size: 16px;
    }

    .tc-icon {
        font-size: 28px;
    }

    /* CTA */
    .cta__inner {
        padding: 28px 18px;
        border-radius: 12px;
    }

    .cta-right .button-block {
        gap: 10px;
    }

    /* Common button */
    .common-btn {
        font-size: 14px;
        padding: 12px 16px;
        gap: 8px;
    }

    /* Features */
    .features {
        gap: 20px;
    }

    .features .icon {
        width: 50px;
        height: 50px;
    }

    .content h3 {
        font-size: 17px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Ticker */
    .our-team-success .ticker-item {
        font-size: 12px;
        padding: 6px 12px 6px 8px;
    }

    .our-team-success .flag {
        font-size: 16px;
    }

    .international-trips ul li.halfwidth,
    .international-trips ul li.onethitd {
        width: 100%;
    }

    .testimonial-slider-content-wrap {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .heading-style {
        font-size: 26px;
    }


    /* TI Row — single column on very small screens */
    .ti-row {
        grid-template-columns: 1fr;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Our Team Success — single column */
    .our-team-success .cards-grid {
        grid-template-columns: 1fr;
    }

    .our-team-success .card-title {
        font-size: 42px;
    }

    /* Team — single column */
    .team-grid {
        grid-template-columns: 1fr;
    }

    .member-photo {
        height: 200px;
    }

    /* Achievement */
    .achivment__inner {
        padding: 16px;
    }

    /* Ready to work */
    .ready-to-work-overlay h1 {
        font-size: 20px;
    }

    .tc-link-card {
        flex-direction: row;
        align-items: center;
    }

    /* CTA */
    .cta__inner {
        padding: 24px 16px;
    }

    ul.reviews-list {
        grid-template-columns: 1fr;
    }

    .features li {
        gap: 14px;
    }

    .cta-left p br {
        display: none;
    }

    .features .icon {
        width: 46px;
        height: 46px;
        border-radius: 10px;
    }

    /* Identity image */
    .identity-left img {
        border-radius: 12px;
    }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* CEO / testimonial */
    .ceo-card {
        gap: 16px;
    }


    .dots-decoration {
        left: -16px;
    }

    .grid-decoration {
        right: -10px;
        bottom: -6px;
    }

    .stories-section .stories-process .our-stories {
        display: flex;
        flex-wrap: wrap;
    }

    .stories-section .stories-process .our-stories .our-stories-col {
        width: 100%;
    }
}

/* ── 360px ── */
@media (max-width: 360px) {

    /* Heading */
    .heading-style {
        font-size: 18px;
    }

    /* Banner */
    .banner h1 {
        font-size: 20px;
    }

    .banner h1 strong,
    .banner h1~strong {
        font-size: 13px;
    }

    /* Buttons */
    .common-btn {
        font-size: 13px;
        padding: 11px 14px;
    }

    /* TI */
    .ti-title {
        font-size: 14px;
    }

    .icon-box {
        width: 46px;
        height: 46px;
    }

    /* Stats card */
    .our-team-success .card-title {
        font-size: 36px;
    }

    /* CTA */
    .cta__inner {
        padding: 20px 14px;
    }

    /* Achievement */
    .achivment__heading {
        font-size: 16px;
    }

    .achivment__inner {
        padding: 14px;
    }

    /* Ticker */
    .our-team-success .ticker-item {
        font-size: 11px;
        padding: 5px 10px 5px 7px;
    }

    /* Features */
    .features .icon {
        width: 42px;
        height: 42px;
    }

    .content h3 {
        font-size: 15px;
    }
}