.testimonial-card {
    position: absolute;
    inset: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding-right: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.testimonial-card.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.partner-track {
    overflow: hidden;
    position: relative;
}

.partner-track::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f4f7fe 0%, rgba(244, 247, 254, 0) 15%, rgba(244, 247, 254, 0) 85%, #f4f7fe 100%);
    pointer-events: none;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.text-white-60 {
    color: rgba(255, 255, 255, 0.6) !important;
}

/********** Template CSS **********/
:root {
    --primary: #1363C6;
    --secondary: #15ACE1;
    --light: #F4F7FE;
    --dark: #14183E;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.logo {
    width: 100px;
    border-radius: 100%;
}

/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 11px 0 !important;
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 0;
    color: rgba(255, 255, 255, .7);
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgba(255, 255, 255, 1);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 1rem 0;
        background: rgba(19, 99, 198, 0.95);
        align-items: stretch;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 0.65rem 0;
    }

    .language-switcher {
        flex-direction: row;
        justify-content: center;
    }
}

.language-switcher .nav-link {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
    margin-left: 0.35rem;
    margin-right: 0.35rem;
}

.navbar-brand .logo {
    width: 72px;
    height: 72px;
    object-fit: cover;
}

.navbar-brand h2 {
    font-size: 1.3rem;
    margin: 0;
    padding-top: 4px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-top: -75px;
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
    padding-top: 80px;
}

.hero-home {
    position: relative;
    overflow: hidden;
    height: 100dvh;
}

.hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19, 99, 198, 0.9), rgba(21, 172, 225, 0.75));
}

.hero-home>.container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35) !important;
}

.hero-subheading {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-value-pills {
    max-width: 520px;
}

.hero-subheading,
.hero-value-pills {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {

    .hero-home .hero-subheading,
    .hero-home .hero-value-pills {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-pill {
    border-radius: 999px;
    padding: 0.4rem 1rem;
    background-color: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.hero-cta-group .btn-light {
    color: var(--primary);
}

.hero-cta-group .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.65);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

@media (max-width: 767.98px) {
    .hero-home {
        padding-top: 3rem !important;
    }

    .hero-home>.container {
        padding-top: 3rem !important;
    }

    .hero-home .row {
        padding-top: 2rem !important;
    }
}


.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
/* .section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
} */




/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.tech-media {
    padding: 0;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
}

.tech-media img {
    display: block;
    width: 100%;
    height: auto;
}

.tech-content {
    background: #ffffff;
    border-radius: 26px;
    padding: 2.5rem;
    box-shadow: 0 25px 55px rgba(19, 99, 198, 0.12);
    border: 1px solid rgba(19, 99, 198, 0.12);
}

.tech-points {
    display: grid;
    gap: 0.85rem;
}

.tech-point {
    margin-bottom: 0;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    background: rgba(19, 99, 198, 0.08);
    color: rgba(20, 24, 62, 0.78);
}

.tech-summary {
    color: rgba(20, 24, 62, 0.7);
}

.advanced-overview {
    background: linear-gradient(180deg, rgba(244, 247, 254, 0.8), rgba(244, 247, 254, 0));
}

@media (max-width: 991.98px) {
    .tech-content {
        padding: 2rem;
    }
}

@media (max-width: 575.98px) {
    .tech-content {
        padding: 1.75rem;
    }

    .tech-point {
        padding: 0.65rem 0.75rem;
    }
}

.about-badge {
    border-color: rgba(19, 99, 198, 0.2) !important;
    background-color: rgba(19, 99, 198, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
}

.about-lead {
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-text {
    line-height: 1.7;
}

.about-list .about-point {
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    font-weight: 500;
}

.about-list .about-point i {
    margin-top: 0.15rem;
}

.about-metrics {
    border-top: 1px solid rgba(19, 99, 198, 0.15);
    padding-top: 1.75rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
}

.metric-item {
    background: #ffffff;
    border: 1px solid rgba(19, 99, 198, 0.1);
    border-radius: 16px;
    padding: 1.35rem 1.5rem;
    box-shadow: 0 12px 26px rgba(19, 99, 198, 0.12);
}

.metric-item h3 {
    color: var(--primary);
    font-size: 1.8rem;
}

.metric-item span {
    font-size: 0.9rem;
    color: rgba(20, 24, 62, 0.65);
    display: block;
    margin-top: 0.35rem;
}

.text-dark-75 {
    color: rgba(20, 24, 62, 0.75) !important;
}

@media (max-width: 767.98px) {
    .about-metrics {
        gap: 2rem;
    }
}

/* .about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
} */


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: #FFFFFF;
    transition: .5s;
}

.custom-service-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: start;
    /* keep centered horizontally */
    justify-content: flex-start;
    /* make content start from top */
}


.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    color: var(--primary);
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-icon {
    background: #FFFFFF;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: var(--light);
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Feature ***/
.feature {
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
}


/*** Newsletter ***/
.newsletter {
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Home Enhancements ***/
.section-header {
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: rgba(20, 24, 62, 0.65);
    font-size: 1rem;
    line-height: 1.8;
}

.card-elevated {
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(20, 24, 62, 0.08);
}

.service-card {
    text-align: left;
    padding: 2.25rem 2rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(244, 247, 254, 0.8), #ffffff);
    box-shadow: 0 10px 30px rgba(19, 99, 198, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card-ar {
    padding: 2.25rem 2rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(244, 247, 254, 0.8), #ffffff);
    box-shadow: 0 10px 30px rgba(19, 99, 198, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-card-ar p {
    color: rgba(20, 24, 62, 0.7);
    margin-bottom: 1.5rem;
    text-align: right;
}

.service-card-ar h5 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark);
    text-align: right;
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.service-card p {
    color: rgba(20, 24, 62, 0.7);
    margin-bottom: 1.5rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(19, 99, 198, 0.18);
}

.service-card-ar:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(19, 99, 198, 0.18);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(19, 99, 198, 0.12);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card:hover .card-icon {
    background: var(--primary);
    color: #ffffff;
}

.service-card-ar:hover .card-icon {
    background: var(--primary);
    color: #ffffff;
}

.cta-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}
.service-card-ar .cta-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: end;
    gap: 0.5rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}
.cta-link:hover {
    gap: 0.75rem;
}

.feature-gradient {
    background: linear-gradient(120deg, rgba(19, 99, 198, 0.95), rgba(21, 172, 225, 0.85));
}

.feature-badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.feature-item h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.feature-item p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.75);
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.1rem;
}

.experience-card {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 26px;
    padding: 2.5rem;
    backdrop-filter: blur(5px);
}

.experience-header h3 {
    font-weight: 600;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}

.experience-stats .stat span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.experience-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.experience-footer .avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

/* ----------------------------------------------
   About page enhancements
---------------------------------------------- */
.about-overview {
    background: linear-gradient(180deg, rgba(244, 247, 254, 0.65), rgba(244, 247, 254, 0));
}

.about-media {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 0;
}

.about-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19, 99, 198, 0.05), rgba(19, 99, 198, 0.35));
    opacity: 0.4;
}

.about-media img {
    width: 100%;
    display: block;
    border-radius: inherit;
    position: relative;
    z-index: 1;
}

.about-media .media-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: rgba(19, 99, 198, 0.92);
    color: #ffffff;
    padding: 1.25rem 1.5rem;
    border-radius: 18px;
    max-width: 260px;
    box-shadow: 0 15px 40px rgba(19, 99, 198, 0.28);
    z-index: 2;
}

.about-media .media-badge span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-highlights {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(19, 99, 198, 0.08);
    border-radius: 16px;
    color: rgba(20, 24, 62, 0.78);
}

.highlight-item i {
    color: var(--primary);
    margin-top: 0.2rem;
}

.about-pillars {
    background: #ffffff;
}

.pillar-card {
    border-radius: 22px;
    min-height: 100%;
}

.pillar-card .card-icon {
    background: rgba(19, 99, 198, 0.12);
    color: var(--primary);
}

.pillar-card p {
    color: rgba(20, 24, 62, 0.7);
}

.pillar-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.5rem;
}

.pillar-list li {
    position: relative;
    padding-left: 1.4rem;
    color: rgba(20, 24, 62, 0.7);
    font-size: 0.95rem;
}

.pillar-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--primary);
}

.about-journey {
    background: linear-gradient(180deg, #ffffff 0%, rgba(244, 247, 254, 0.65) 100%);
}

.mission-card {
    border-radius: 22px;
}

.mission-card p {
    color: rgba(20, 24, 62, 0.68);
}

.journey-timeline {
    position: relative;
    padding-left: 2.5rem;
    display: grid;
    gap: 1.75rem;
}

.journey-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 21px;
    width: 2px;
    background: rgba(19, 99, 198, 0.18);
}

.journey-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
}

.journey-step h5 {
    margin-bottom: 0.25rem;
}

.journey-step p {
    color: rgba(20, 24, 62, 0.7);
}

.step-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(19, 99, 198, 0.25);
}

.about-differentiators {
    background: #ffffff;
}

.value-card {
    border-radius: 22px;
    padding: 2.25rem;
    color: rgba(20, 24, 62, 0.75);
}

.value-card h5 {
    color: var(--dark);
}

.value-card p {
    color: rgba(20, 24, 62, 0.7);
}

@media (max-width: 991.98px) {
    .about-media {
        margin: 0 auto;
        max-width: 520px;
    }

    .about-media .media-badge {
        left: 16px;
        bottom: 16px;
    }

    .journey-timeline {
        padding-left: 2rem;
    }
}

@media (max-width: 767.98px) {
    .about-media .media-badge {
        position: static;
        margin: 1.25rem;
    }

    .about-highlights {
        gap: 0.75rem;
    }

    .journey-timeline {
        padding-left: 1.5rem;
    }

    .value-card {
        padding: 2rem;
    }
}

.testimonial-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-slider {
    flex: 1;
    background: linear-gradient(180deg, rgba(244, 247, 254, 0.65), #ffffff);
    border-radius: 24px;
    padding: 2.75rem 3rem;
    position: relative;
    min-height: 360px;
}

.testimonial-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding-right: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.testimonial-card.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.testimonial-quote-icon {
    color: var(--primary);
    font-size: 2rem;
}

.testimonial-card p {
    color: rgba(20, 24, 62, 0.75);
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #f6b500;
    font-size: 0.9rem;
}

.testimonial-rating span {
    color: rgba(20, 24, 62, 0.65);
    font-weight: 600;
    margin-left: 0.25rem;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-meta img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 4px solid rgba(19, 99, 198, 0.12);
}

.testimonial-card[data-index="0"]::after,
.testimonial-card[data-index="1"]::after,
.testimonial-card[data-index="2"]::after {
    content: attr(data-index);
    display: none;
}

.testimonial-meta strong {
    color: var(--dark);
    display: block;
}

.testimonial-meta span {
    color: rgba(20, 24, 62, 0.6);
    font-size: 0.9rem;
}

.testimonial-nav {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(19, 99, 198, 0.12);
    color: var(--primary);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.testimonial-nav:hover {
    background: var(--primary);
    color: #ffffff;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(19, 99, 198, 0.2);
    border: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-dot.is-active {
    background: var(--primary);
    transform: scale(1.2);
}


/* From Uiverse.io by Yaya12085 */
.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 1);
    padding: 20px;
    max-width: 320px;
}

.stars {
    display: flex;
    grid-gap: 0.125rem;
    gap: 0.125rem;
    color: rgb(238, 203, 8);
}

.star {
    height: 1.25rem;
    width: 1.25rem;
}

.infos {
    margin-top: 1rem;
}

.date-time {
    color: rgba(7, 63, 216, 1);
    font-size: 12px;
    font-weight: 600;
}

.description {
    margin-top: 0.4rem;
    line-height: 1.625;
    color: rgba(107, 114, 128, 1);
}

.author {
    margin-top: 1.3rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgba(107, 114, 128, 1);
}

.partner-track {
    overflow: hidden;
    position: relative;
}

.partner-track::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f4f7fe 0%, rgba(244, 247, 254, 0) 15%, rgba(244, 247, 254, 0) 85%, #f4f7fe 100%);
    pointer-events: none;
}

.partner-grid {
    display: inline-flex;
    align-items: center;
    gap: 2.25rem;
}

.partner-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2.5rem 2.75rem;
    box-shadow: 0 18px 40px rgba(20, 24, 62, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
    min-width: 220px;
}

.partner-card img {
    max-height: 170px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.92;
}

.contact-cta {
    background: linear-gradient(115deg, rgba(19, 99, 198, 0.95), rgba(21, 172, 225, 0.9));
    color: #ffffff;
}

.cta-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.cta-card h5 {
    font-weight: 600;
}

.cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    gap: 0.75rem;
}

.cta-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-list i {
    color: #ffffff;
}

.cta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 600;
}

.cta-badge i {
    font-size: 1rem;
}

.site-footer {
    background: #0d122f;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 4rem;
}

.footer-brand .brand-mark {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand .brand-mark span {
    color: var(--primary);
}

.footer-brand p {
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: grid;
    place-items: center;
    color: #ffffff;
    transition: background 0.3s ease, color 0.3s ease;
}

.social-link:hover {
    background: #ffffff;
    color: var(--primary);
}

.site-footer h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links,
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.footer-links a,
.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-links a:hover,
.footer-list a:hover {
    color: #ffffff;
}

.footer-list i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding: 1.5rem 0;
    color: rgba(255, 255, 255, 0.55);
}

.footer-menu {
    display: flex;
    gap: 1.25rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-menu a:hover {
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .testimonial-wrapper {
        flex-direction: column;
    }

    .testimonial-nav {
        position: static;
    }

    .testimonial-slider {
        width: 100%;
        padding: 2.25rem 1.75rem;
    }
}

@media (max-width: 575.98px) {

    .card-elevated,
    .service-card,
    .testimonial-slider {
        padding: 1.75rem;
    }

    .testimonial-card {
        padding-right: 0;
    }

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

    .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
}


/*** Case Study ***/
.case-item img {
    transition: .5s;
}

.case-item:hover img {
    transform: scale(1.2);
}

.case-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(20, 24, 62, 0), var(--dark));
    z-index: 1;
}

.case-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: #FFFFFF;
    background: rgba(20, 24, 62, .7);
    border-radius: 25px;
    margin-bottom: 15px;
}

.case-overlay span.btn:hover {
    color: var(--primary);
    background: #FFFFFF;
    border-color: #FFFFFF;
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Testimonial ***/
.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 40px;
    height: 100%;
    top: calc(50% - 50px);
    left: -21px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 5px 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 40px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    margin-left: 3rem;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}


/*** Team ***/
.team-item {
    transition: .5s;
    border: 1px solid transparent;
    transition: .5s;
}

.team-item:hover {

    border-color: var(--primary);
}


/*** Footer ***/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link-ar {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: right;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
}

.footer .btn.btn-link-ar:hover {
    color: #FFFFFF;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link-ar::before {
    position: relative;
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link-ar:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255, 255, 255, .5);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 10px;
    /* keep the divider on the last item so the visual separator is consistent */
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.brand-item {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* keeps aspect ratio */
}

/* ----------------------------------------------
   Contact page enhancements
---------------------------------------------- */
.contact-overview {
    background: linear-gradient(180deg, rgba(244, 247, 254, 0.85), rgba(244, 247, 254, 0));
}

.contact-card {
    padding: 2rem;
    text-align: center;
    border-radius: 20px;
    border: 1px solid rgba(19, 99, 198, 0.1);
    box-shadow: 0 18px 45px rgba(19, 99, 198, 0.12);
    height: 100%;
}

.contact-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 1rem;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(19, 99, 198, 0.12);
    color: var(--primary);
    font-size: 1.4rem;
}

.contact-link {
    color: inherit;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: #ffffff;
}

.contact-form-card {
    padding: 3rem;
    border-radius: 26px;
    border: 1px solid rgba(19, 99, 198, 0.12);
    box-shadow: 0 25px 55px rgba(20, 24, 62, 0.12);
}

.contact-form-card h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
}

@media (max-width: 767.98px) {
    .contact-card {
        padding: 1.75rem;
    }

    .contact-form-card {
        padding: 2.25rem;
    }
}

@media (max-width: 575.98px) {
    .contact-card {
        padding: 1.5rem;
    }

    .contact-form-card {
        padding: 1.9rem;
    }
}