.breadcrumbs::after {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    position: absolute;
    background: linear-gradient(180deg, var(--base-color), #ababab);
    opacity: 0.5;
    z-index: 0;
}
.breadcrumbs > * {
    position: relative;
    z-index: 1;
}
.breadcrumbs a {
    color: #fff;
    text-decoration: underline;
}

.why-choose-us-section h5 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 0px;
  color: #000;
}

.technology-card-body {
  height: 480px !important;
}
.technology-title {
  height: 60px !important;
}
.technology-card-body ul li {
  width: 100% !important;
  padding: 0px !important;
  list-style-type: disc !important;
}
.offer-section {
  height: 160px;
  }
.industry-description ul li {
  list-style-type: disc !important;
}

.about h3 {
    font-size: 30px;
}
.about-card {
    background: #fff;
    padding: 25px 40px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 1px 0px 20px 0px #ececec;
}

.about-card p {
    margin-bottom: 0px;
}

/* -------------------------------------------------------------------------- */
/*                             WHY CHOOSE US PAGE                             */
/* -------------------------------------------------------------------------- */
.why-choose-us {
    padding: 100px 0;
    background: #f7f9fc;
}

.why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Intro */

.why-choose-us__intro {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.why-choose-us__intro h2 {
    margin: 0 0 20px;
    color: #16213e;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.why-choose-us__intro p {
    margin: 0;
    color: #667085;
    font-size: 17px;
    line-height: 1.8;
}

/* Grid */

.why-choose-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.why-choose-us__grid h3 {
    font-size: 30px;
    line-height: 2rem;
}
/* Item */

.why-choose-us__item {
    padding: 35px 30px;
    background: #fff;
    border: 1px solid #e7ebf2;
    border-radius: 16px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.why-choose-us__item:hover {
    transform: translateY(-6px);
    border-color: #d5dce8;
    box-shadow: 0 15px 40px rgba(22, 33, 62, 0.10);
}

/* Icon */

.why-choose-us__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;

    color: #fff;
    background: #16213e;
    border-radius: 14px;

    font-size: 24px;
}
/* ================================
   Tablet
================================ */

@media (max-width: 991px) {

    .why-choose-us {
        padding: 80px 0;
    }

    .why-choose-us__intro h2 {
        font-size: 36px;
    }

    .why-choose-us__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ================================
   Mobile
================================ */

@media (max-width: 600px) {

    .why-choose-us {
        padding: 60px 0;
    }

    .why-choose-us__intro {
        margin-bottom: 40px;
    }

    .why-choose-us__intro h2 {
        font-size: 30px;
    }

    .why-choose-us__intro p {
        font-size: 15px;
    }

    .why-choose-us__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-choose-us__item {
        padding: 28px 25px;
    }

}

/* ========================================
   Our Difference
======================================== */

.our-difference {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: #fff;
}

.our-difference .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.our-difference__wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

/* Content */

.our-difference__label {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--base-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.our-difference h2 {
    max-width: 650px;
    margin: 0 0 25px;
    color: #16213e;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
}

.our-difference h2 span {
    color: var(--base-color);
}

.our-difference__description {
    max-width: 650px;
    margin: 0;
    color: #667085;
    font-size: 18px;
    line-height: 1.8;
}

/* Highlight */

.our-difference__highlight {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    max-width: 620px;
    margin-top: 40px;
    padding: 25px 30px;
    background: #f5f8fc;
    border-left: 4px solid var(--base-color);
    border-radius: 0 12px 12px 0;
}

.our-difference__highlight p {
    margin: 0;
    color: #16213e;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 600;
    font-style: italic;
}

.our-difference__quote-icon {
    color: var(--base-color);
    font-size: 42px;
    line-height: 0.8;
    font-weight: 700;
}


/* ========================================
   Visual
======================================== */

.our-difference__visual {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 991px) {

    .our-difference {
        padding: 80px 0;
    }

    .our-difference__wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .our-difference__content {
        text-align: center;
    }

    .our-difference h2,
    .our-difference__description,
    .our-difference__highlight {
        margin-left: auto;
        margin-right: auto;
    }

    .our-difference__highlight {
        text-align: left;
    }

    .our-difference__visual {
        min-height: 380px;
    }
}

@media (max-width: 600px) {

    .our-difference {
        padding: 60px 0;
    }

    .our-difference h2 {
        font-size: 34px;
    }

    .our-difference__description {
        font-size: 16px;
    }

    .our-difference__highlight {
        padding: 20px;
    }

    .our-difference__highlight p {
        font-size: 16px;
    }

    .our-difference__visual {
        min-height: 350px;
    }

}

/* =========================================================
   SERVICES PAGE
========================================================= */

:root {
    --primary: #16213e;
    --primary-light: #24345d;
    --blue: #1677ff;
    --purple: #5b3df5;
    --text: #667085;
    --light: #f7f9fc;
    --border: #e5e9f0;
    --white: #ffffff;
}


/* =========================================================
   MAIN
========================================================= */

.services-page {
    padding: 100px 0;
    background: var(--light);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.services-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 60px;
    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.services-sidebar {
    position: sticky;
    top: 30px;
}

.services-sidebar__inner {
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(22, 33, 62, 0.06);
}

.services-sidebar__label {
    display: block;
    margin-bottom: 18px;
    color: var(--base-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.services-nav {
    display: flex;
    flex-direction: column;
}

.services-nav__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    padding: 15px 10px;

    color: var(--text);
    border-bottom: 1px solid #eef1f5;

    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;

    transition: all 0.25s ease;
}

.services-nav__link:last-child {
    border-bottom: 0;
}

.services-nav__link i {
    flex-shrink: 0;
    color: #aab3c2;
    font-size: 12px;

    transition: transform 0.25s ease,
                color 0.25s ease;
}

.services-nav__link:hover,
.services-nav__link.active {
    color: var(--base-color);
}

.services-nav__link:hover i,
.services-nav__link.active i {
    color: var(--base-color);
    transform: translateX(4px);
}


/* Sidebar CTA */

.services-sidebar__cta {
    margin-top: 25px;
    padding: 25px;
    color: var(--white) !important;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
    border-radius: 14px;
}

.services-sidebar__cta > i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;
    margin-bottom: 18px;

    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;

    color: var(--white) !important;
}

.services-sidebar__cta h4 {
    margin: 0 0 18px;
    color: var(--white) !important;
    font-size: 17px;
    line-height: 1.4;
}

.services-sidebar__cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--white) !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.services-sidebar__cta a i {
    transition: transform 0.25s ease;
}

.services-sidebar__cta a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   MOBILE NAV
========================================================= */

.services-mobile-nav {
    display: none;
}


/* =========================================================
   SERVICE SECTION
========================================================= */

.service-section {
    scroll-margin-top: 40px;
    padding: 70px 0;
    border-bottom: 1px solid var(--border);
}

.service-section:first-child {
    padding-top: 0;
}

.service-section:last-child {
    border-bottom: 0;
}


/* =========================================================
   HEADER
========================================================= */

.service-header__eyebrow {
    display: inline-block;
    margin-bottom: 15px;

    color: var(--base-color);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-header h2 {
    max-width: 900px;
    margin: 0;

    color: var(--primary);

    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
}

.service-header__line {
    width: 70px;
    height: 4px;
    margin: 25px 0 30px;

    background: linear-gradient(
        90deg,
        var(--base-color),
        #cbd9e4
    );

    border-radius: 10px;
}

.service-intro {
    max-width: 900px;

    color: var(--text);

    font-size: 17px;
    line-height: 1.85;
}

.service-intro strong {
    color: var(--primary);
}


/* =========================================================
   CONTENT BLOCK
========================================================= */

.service-block {
    margin-top: 55px;
}

.service-block__heading {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 25px;
}

.service-block__heading h3 {
    margin: 0;

    color: var(--primary);

    font-size: 26px;
    line-height: 1.3;
}

.service-block__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    color: var(--white) !important;

    background: linear-gradient(
        135deg,
        var(--base-color),
        #cbd9e4
    );

    border-radius: 12px;

    box-shadow: 0 8px 20px rgba(22, 119, 255, 0.15);
}


/* =========================================================
   SERVICES LIST
========================================================= */

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 17px 18px;

    color: var(--text);
    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 10px;

    font-size: 14px;
    line-height: 1.55;

    transition: all 0.25s ease;
}

.service-list__item:hover {
    border-color: rgba(22, 119, 255, 0.3);
    box-shadow: 0 8px 25px rgba(22, 33, 62, 0.06);
    transform: translateY(-2px);
}

.service-list__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    flex-shrink: 0;

    margin-top: 1px;

    color: var(--base-color);
    background: rgba(22, 119, 255, 0.08);

    border-radius: 50%;

    font-size: 9px;
}


/* =========================================================
   BENEFITS
========================================================= */

.service-benefits {
    padding: 35px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 18px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.benefit-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    flex-shrink: 0;

    margin-top: 2px;

    color: var(--base-color);
    background: rgba(22, 119, 255, 0.08);

    border-radius: 50%;

    font-size: 10px;
}

.benefit-item p {
    margin: 0;

    color: var(--text);

    font-size: 14px;
    line-height: 1.65;
}

.benefit-item strong {
    color: var(--primary);
}


/* =========================================================
   DELIVERY MODELS
========================================================= */

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.delivery-card {
    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 16px;

    transition: all 0.3s ease;
}

.delivery-card:hover {
    transform: translateY(-4px);

    border-color: rgba(22, 119, 255, 0.25);

    box-shadow: 0 15px 35px rgba(22, 33, 62, 0.08);
}

.delivery-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 20px;

    color: var(--base-color);
    background: rgba(22, 119, 255, 0.08);

    border-radius: 12px;
}

.delivery-card h4 {
    margin: 0 0 10px;

    color: var(--primary);

    font-size: 18px;
}

.delivery-card p {
    margin: 0;

    color: var(--text);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CLOSING
========================================================= */

.service-closing {
    margin-top: 60px;

    overflow: hidden;

    background: var(--primary);

    border-radius: 22px;
}

.service-closing__content {
    position: relative;

    padding: 45px;

    color: var(--white) !important;
}

.service-closing__content::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -180px;
    right: -100px;

    background: rgba(22, 119, 255, 0.15);

    border-radius: 50%;
}

.service-closing__icon {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    margin-bottom: 20px;

    background: linear-gradient(
        135deg,
        var(--base-color),
        #cbd9e4
    );

    border-radius: 13px;
}

.service-closing h3 {
    position: relative;

    max-width: 750px;

    margin: 0 0 18px;

    color: var(--white) !important;

    font-size: 30px;
    line-height: 1.3;
}

.service-closing__content p {
    position: relative;

    max-width: 850px;

    margin: 0;

    color: rgba(255, 255, 255, 0.75);

    font-size: 15px;
    line-height: 1.8;
}

.service-closing__content strong {
    color: var(--white) !important;
}


/* =========================================================
   CTA
========================================================= */

.service-cta {
    padding: 35px 45px;

    background: linear-gradient(
        135deg,
        var(--base-color),
        #cbd9e4
    );
}

.service-cta h4 {
    margin: 0 0 10px;

    color: var(--white) !important;

    font-size: 21px;
}

.service-cta p {
    max-width: 800px;

    margin: 0 0 25px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 14px;
    line-height: 1.7;
}

.service-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 22px;

    color: var(--primary);

    background: var(--white);

    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.25s ease;
}

.service-cta__button:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-cta__button i {
    transition: transform 0.25s ease;
}

.service-cta__button:hover i {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .services-layout {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 35px;
    }

    .service-header h2 {
        font-size: 38px;
    }

    .service-list,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .services-page {
        padding: 60px 0;
    }

    .services-container {
        padding: 0 20px;
    }

    .services-layout {
        display: block;
    }

    /* Hide desktop sidebar */

    .services-sidebar {
        display: none;
    }

    /* Mobile selector */

    .services-mobile-nav {
        display: block;
        margin-bottom: 35px;
    }

    .services-mobile-nav label {
        display: block;

        margin-bottom: 10px;

        color: var(--primary);

        font-size: 13px;
        font-weight: 700;
    }

    .services-mobile-nav select {
        width: 100%;

        padding: 14px 16px;

        color: var(--primary);
        background: var(--white);

        border: 1px solid var(--border);
        border-radius: 10px;

        font-size: 14px;

        outline: none;
    }

    /* Content */

    .service-section {
        padding: 55px 0;
    }

    .service-section:first-child {
        padding-top: 0;
    }

    .service-header h2 {
        font-size: 32px;
    }

    .service-intro {
        font-size: 15px;
        line-height: 1.8;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-benefits {
        padding: 25px 20px;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
    }

    .service-closing__content {
        padding: 30px 25px;
    }

    .service-closing h3 {
        font-size: 25px;
    }

    .service-cta {
        padding: 30px 25px;
    }
}

.service-swiper img {
    position: relative;
    height: 400px;
    object-fit: cover;
}


.bg-gradient-gray-light-dark-transparent {
    background-image: -webkit-gradient(linear, left bottom, left top, from(var(--base-color)), to(transparent));
    background-image: linear-gradient(to top, var(--base-color) 10%, #00000080 50%);
}

.career-area .feature-box:hover i, .career-area .feature-box:hover span {
    color: var(--base-color) !important;
}

.privacy-policy h1, .cookie-policy h1 {
    font-size: 45px;
}

.privacy-policy h2, .cookie-policy h2 {
    font-size: 30px;
}

.privacy-policy ul li, .cookie-policy ul li{
    list-style: disc;
}

.privacy-policy h2, .cookie-policy h3 {
    font-size: 20px;
}