/* ===================== THEME / VARIABLES ===================== */
:root {
    --brand-blue: #2E5BFF;
    --brand-blue-dark: #1E45D9;
    --navy: #0F1B4C;
    --green: #22C55E;
    --green-dark: #16A34A;
    --soft-blue-bg: #F5F8FF;
    --light-border: #E5EAF7;
    --gray-600: #6c757d;
    --muted-text: #2b2f32;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/Roboto-Regular.woff2') format('woff2'),
        url('../fonts/roboto/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/Roboto-Medium.woff2') format('woff2'),
        url('../fonts/roboto/Roboto-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/Roboto-SemiBold.woff2') format('woff2'),
        url('../fonts/roboto/Roboto-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/Roboto-Bold.woff2') format('woff2'),
        url('../fonts/roboto/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Light.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}



body {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
}

.eyebrow {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--muted-text);
    text-transform: uppercase;
}

.btn-brand {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.btn-brand:hover {
    background-color: var(--brand-blue-dark);
    border-color: var(--brand-blue-dark);
    color: #fff;
}

.btn.btn-outline-navy {
    border: 1px solid var(--green);
    ;
    color: var(--green);
    font-weight: 600;
    font-size: 14px;
    background: #fff;
}

.btn.btn-outline-navy:hover {
    background: #f8f9fa;
    color: var(--green);
}

.btn-green {
    background: linear-gradient(90deg, var(--green), var(--green-dark));
    border: none;
    color: #fff;
    font-weight: 600;
}

.btn-green:hover {
    background: var(--green-dark);
    color: #fff;
}

.section-pad {
    padding: 64px 0;
}

.bg-soft {
    background: var(--soft-blue-bg);
}

.text-brand {
    color: var(--brand-blue) !important;
}

.text-navy {
    color: var(--navy) !important;
}

/* ===================== NAVBAR ===================== */
.navbar-brand-logo img {
    width: 160px;
    height: auto;
    max-width: 100%;
}

.navbar-brand-logo span {
    color: #4ADE80;
}

.navbar .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    padding: .5rem .9rem;
    display: inline-block;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    border-bottom: 2px solid var(--green);
}

.hero .bi-airplane::before {
    transform: rotate(90deg);
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 12px 30px rgba(15, 27, 76, .12);
    border-radius: 10px;
    padding: .5rem;
}

.navbar .dropdown-item {
    font-size: 13.5px;
    border-radius: 8px;
    padding: .55rem .8rem;
}

.navbar .dropdown-item:hover {
    background: var(--soft-blue-bg);
    color: var(--brand-blue);
}

/* Hover-to-open dropdown on desktop, click on mobile */
@media (min-width:992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn .15s ease-in-out;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================== HERO ===================== */
.hero {
    background: linear-gradient(180deg, var(--soft-blue-bg), #fff);
    padding-top: 80px;
    padding-bottom: 64px;
}

.badge-soft {
    color: var(--brand-blue);
    border: 1px solid #C7D8FF;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .05em;
    border-radius: 100px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy);
}

.hero .badge-soft {
    color: var(--brand-blue);
}

.hero span {
    color: var(--green);
}

.hero-check-list li {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
}

.hero-check-list i {
    color: var(--green);
}

.avatar-stack img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    margin-left: -10px;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.stat-mini {
    border: 1px solid #eef0f6;
    border-radius: 10px;
    padding: 10px;
}

.stat-mini .label {
    font-size: 9px;
    color: var(--gray-600);
}

.stat-mini .value {
    font-size: 15px;
    font-weight: 700;
}

.stat-mini .change {
    font-size: 9px;
    color: var(--green);
    font-weight: 600;
}

/* ===================== TRUSTED BY ===================== */
.trusted-strip {
    border-top: 1px solid #f1f1f4;
    border-bottom: 1px solid #f1f1f4;
}

.trusted-strip .brand-word {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-600);
}

.trusted-strip span img {
    max-height: 70px;
    width: auto;
}

/* ===================== WHO WE ARE / STATS ===================== */
.stats-card {
    background: #fff;
    border: 1px solid var(--light-border);
    border-radius: 10px;
    text-align: center;
    padding: 16px 8px;
    border-radius: 8px;
    box-shadow: 0 5px 12px rgba(20, 30, 70, .1);
}

.main-label div {
    display: inline-block;
}

.stats-card .value {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-blue);
}

.stats-card .label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.stats-card .sub {
    font-size: 12px;
    color: var(--gray-600);
}

/* mobile stats carousel controls */
.stats-carousel .carousel-control-prev,
.stats-carousel .carousel-control-next {
    width: 32px;
    height: 32px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid var(--light-border);
    border-radius: 50%;
    opacity: 1;
}

.stats-carousel .carousel-control-prev-icon,
.stats-carousel .carousel-control-next-icon {
    filter: invert(15%) sepia(60%) saturate(4000%) hue-rotate(224deg);
    width: 14px;
    height: 14px;
}

/* ===================== SERVICES ===================== */
.service-card {
    background: #fff;
    box-shadow: 0px 4px 12px 1px rgba(20, 30, 70, .1);
    border-radius: 14px;
    padding: 22px;
    height: 100%;
    transition: .25s;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card:hover {
    box-shadow: 0 14px 30px rgba(15, 27, 76, .08);
    border-color: rgba(46, 91, 255, .2);
    transform: translateY(-3px);
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #E8F0FF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    font-size: 20px;
    margin-bottom: 14px;
    transition: .25s;
    flex: 0 0 18%;
}

.service-right-block {
    flex: 0 0 73%;
    font-size: 14px;
}

.service-right-block h3 {
    font-size: 16px;
}

.service-card:hover .service-icon {
    background: var(--brand-blue);
    color: #fff;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
}

.service-card ul li {
    color: var(--gray-600);
    margin-bottom: 6px;
}

.service-card ul li::before {
    content: "•";
    color: var(--brand-blue);
    margin-right: 6px;
}

.service-add-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: var(--brand-blue);
    color: #fff;
    font-size: 14px;
    margin-left: auto;
}

/* ===================== PROCESS ===================== */
.process-step {
    text-align: center;
}

.process-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(46, 91, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    position: relative;
    font-size: 22px;
    color: var(--brand-blue);
}

.process-icon-wrap .num-badge {
    position: absolute;
    left: 0px;
    right: 0px;
    margin: auto;
    bottom: -9px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-line {
    position: absolute;
    top: 34%;
    left: 8%;
    right: 8%;
    height: 2px;
    background-image: repeating-linear-gradient(to right, var(--brand-blue) 0px, var(--brand-blue) 6px, transparent 6px, transparent 12px);
    opacity: .3;
}

/* ===================== INDUSTRIES ===================== */
.industry-item {
    text-align: center;
    cursor: pointer;
    width: 130px;
    border-radius: 12px;
    border: 1px solid var(--light-border);
    margin-inline: 10px;
    padding: 10px;
    box-shadow: 0px 4px 12px 1px rgba(20, 30, 70, .1);
}

.industry-icon {
    width: 56px;
    height: 56px;
    border-radius: 100px;
    border: 1px solid var(--light-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 20px;
    color: var(--brand-blue);
    transition: .25s;
}

.industry-item:hover .industry-icon {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
}

.industry-item .label {
    font-size: 14px;
    font-weight: 600;
    word-break: break-word;
}

/* ===================== CASE STUDIES ===================== */
.demo-1 .case-card {
    background: #fff;
    border: 1px solid var(--light-border);
    border-radius: 14px;
    overflow: hidden;
    transition: .25s;
    height: 100%;
    display: flex;
    font-size: 12px;
    padding: 20px;
    box-shadow: 0px 4px 12px 1px rgba(20, 30, 70, .1);
}

.demo-1 .case-card h3 {
    font-size: 22px;
}

.demo-1 .case-card h3 span {
    color: var(--green);
}

.demo-1 .case-card:hover {
    box-shadow: 0 14px 30px rgba(15, 27, 76, .08);
}

.demo-1 .case-card img {
    height: 100%;
    width: 160px;
    object-fit: cover;
    border-radius: 12px;
    object-position: center;
}

.case-tag {
    background: #E8F0FF;
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    display: inline-block;
}

.demo-1 .case-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* ===================== BLOG ===================== */
.blog-card img {
    height: 145px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: .4s;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.blue-outline-btn {
    border: 1px solid var(--brand-blue);
    color: var(--brand-blue);
    font-weight: 600;
    border-radius: 0.375rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.blue-outline-btn:hover {
    background: var(--brand-blue);
    color: #fff !important;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--light-border);
    border-radius: 14px;
    overflow: hidden;
    transition: .25s;
    height: 100%;
    display: flex;
    font-size: 12px;
    box-shadow: 0px 4px 12px 1px rgba(20, 30, 70, .1);
}

.blog-card .blog-time {
    font-size: 14px;
}

.blog-card .blog-content {
    padding: 20px;
    font-size: 13px;
}

/* ===================== CTA ===================== */
.cta-box {
    background-image: url(../images/contact-bg.png);
    border: 1px solid var(--light-border);
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(15, 27, 76, .04);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.cta-box ul i {
    color: var(--green);
}

.cta-form-panel .contact-text {
    font-size: 16px;
}

.cta-form-panel {
    border-radius: 14px;
    padding: 24px;
}

.cta-box form input,
.cta-box form select {
    padding: 15px;
}

.form-control,
.form-select {
    font-size: 13px;
}

/* ===================== TESTIMONIALS ===================== */

.testimonialSwiper .swiper-slide {
    height: auto;
}

.testimonialSwiper .testimonial-card {
    height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    color: #0d6efd;
}

.swiper-pagination-bullet-active {
    background: var(--green);
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--light-border);
    border-radius: 14px;
    padding: 20px;
    height: 100%;
    transition: .25s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 24px rgba(15, 27, 76, .08);
}

.testimonial-card .quote-icon {
    position: relative;
}

.testimonial-card .quote-icon::before {
    content: "\f6b0";
    color: rgba(46, 91, 255, .25);
    font-size: 24px;
    position: absolute;
    top: 0;
    left: 5px;
    display: block;
    margin-top: -13px;
    margin-right: 5px;
    min-height: 100%;
    font-family: bootstrap-icons;
}

.testimonial-card p {
    font-size: 14px;
    color: #495057;
    padding-left: 42px;
}

.testimonial-card .auth-info .auth-label {
    font-size: 14px;
}

.testimonial-card .auth-info .auth-text {
    font-size: 13px;
}

.testimonial-section {
    padding-inline: 55px;
    position: relative;
}

.testimonial-card img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.star-row i {
    color: #FBBF24;
    font-size: 15px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 16px;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 8px;
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next,
.testimonial-section .swiper-button-next,
.testimonial-section .swiper-button-prev {
    width: 38px;
    height: 38px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0px 4px 12px 1px rgba(20, 30, 70, .1);
}

#testimonialCarousel .carousel-control-prev {
    left: -10px;
}

#testimonialCarousel .carousel-control-next {
    right: -10px;
}


.testimonial-section .swiper-button-prev {
    left: 0px;
}

.testimonial-section .swiper-button-next {
    right: 0px;
}

#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    filter: brightness(0) saturate(100%);
    width: 14px;
    height: 14px;
}

@media (max-width:991px) {
    #testimonialCarousel .carousel-control-prev {
        left: 0;
    }

    #testimonialCarousel .carousel-control-next {
        right: 0;
    }

    .service-icon {
        flex: 0 0 8%;
    }

    .service-right-block {
        flex: 0 0 88%;
    }

    .process-line {
        display: none;
    }

    .hero {
        padding-top: 40px;
    }
}

@media (max-width:767px) {
    .service-right-block {
        flex: 0 0 100%
    }
}

/* ===================== FOOTER ===================== */
footer {
    font-size: 15px;
}

footer .h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}

footer a {
    font-size: 15px;
    color: #6c757d;
}

footer a:not(.btn):hover {
    color: var(--brand-blue);
}

footer .navbar-brand-logo img {
    max-width: 100%;
    width: 160px;
    height: auto;
}

.social-btn {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: .2s;
}

.social-btn:hover {
    color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.dash-img img {
    max-width: 100%;
    width: 100%;
}

footer .btn {
    padding: 0 0 0 20px;
    display: inline-block;
    white-space: nowrap;
}

footer .btn span.box {
    padding: 10px 20px;
    background: #fff;
    display: inline-block;
    border: 1px solid var(--green);
    margin-left: 15px;
    border-top-right-radius: 4px;
    border-end-end-radius: 4px;
}

footer .btn span.box i {
    font-size: 20px;
    color: var(--green);
}

#about h2 span {
    color: var(--green);
}

#about h2 {
    font-size: 34px;
}

#about li {
    font-size: 15px;
}

#about li i {
    color: var(--green);
}

#about .bottom-author img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

#about .bottom-author-label {
    font-size: 15px;
}

#about .bottom-author-role {
    font-size: 13px;
}

.about-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: -18px;
}

#about .video-section {
    text-align: center;
}

.video-section {
    overflow: hidden;
    border-radius: 20px;
}

.video-section img,
.video-section video {
    width: 100%;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

#about .video-section img {
    border-radius: 10px;
    height: 280px;
    object-fit: cover;
    width: 90%;
    margin: auto;
}

.bg-primary-light {
    background: #fafbfd;
}

.process-step-label {
    font-size: 15px;
}

.process-step-text {
    font-size: 14px;
}

.why-div ul i {
    color: var(--green);
}

.why-ai-img img {
    max-width: 100%;
    width: 100%;
}