/* Avenir Light */
@font-face {
    font-family: "Avenir";
    src: url("fonts/Avenir-Light.woff2") format("woff2");
    font-weight: 300;
}

/* Avenir Regular */
@font-face {
    font-family: "Avenir";
    src: url("fonts/Avenir-Roman.woff2") format("woff2");
    font-weight: 400;
}

/* Avenir Medium */
@font-face {
    font-family: "Avenir";
    src: url("fonts/Avenir-Medium.woff2") format("woff2");
    font-weight: 500;
}

/* Avenir Heavy */
@font-face {
    font-family: "Avenir";
    src: url("fonts/Avenir-Heavy.woff2") format("woff2");
    font-weight: 700;
}

html {
    scroll-behavior: smooth;
}

:root {
    --brand: #66358b;
    --brand-dark: #200e42;
    --brand-mid: #591486;
    --text-primary: #1a1a2e;
    --text-secondary: #333333;
    --text-muted: #888;
    --border: #e8e8f0;
    /* --bg-page: #f8f8fc;
            --bg-card: #ffffff; */
    --sidebar-w: 280px;
    --content-max: 780px;
}


body {
    font-family: "Avenir", sans-serif;
    overflow-x: hidden;
    /* prevents horizontal scroll */
}

/* Global Paragraph & List Item Color Override */
p:not(.approach-title, .approach-title *, [class*="highlight"], [class*="highlight"] *, header *, footer *, .contact-text, .cookie-text, .cookie-text *, .rosoi-stage-bar p),
li:not(.approach-title, .approach-title *, [class*="highlight"], [class*="highlight"] *, header *, footer *, .contact-text, .cookie-text, .cookie-text *) {
    color: #333333 !important;
}

.cookie-text p,
p.cookie-text {
    color: #ffffff !important;
}

/* HEADER */
/* ================= HEADER ================= */
.main-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* LOGO */
/* Default (desktop) */
.logo-img {
    height: 45px;
}

/* Mobile devices */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 40px;
    }
}

.highlight {
    color: #66358b;
}

/* NAVBAR */

.navbar {
    padding: 5px 0;
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    margin: 0 20px;
    color: #333333 !important;
    padding: 0 20px !important;

}

.nav-link:hover {

    color: #591487 !important;
    /* font-weight: 500; */
}

.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* Mobile devices */


/* BUTTON */

.btn-consult {
    background: #591487;
    color: #fff;
    border-radius: 25px;
    padding: 10px 22px;
    font-weight: 500;
    text-decoration: none;
    transition: .3s;
}

.btn-consult:hover {
    background: #4b7f3b;
    color: #fff;
}

/* OFFCANVAS */

/* =============================
   OFFCANVAS / MOBILE MENU FIX
============================= */

.offcanvas {
    width: 310px !important;
}

.offcanvas-header {
    padding: 20px 25px 10px;
    border-bottom: 1px solid #f0f0f0;
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    padding: 20px 25px;
}

/* =============================
   MOBILE MENU LIST
============================= */

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu>li {
    margin-bottom: 2px;
    width: 100%;
}

/* =============================
   SIMPLE LINKS (Home, Blogs, Contact)
============================= */

.mobile-menu>li>a {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 22px;
    font-weight: 500;
    color: #333;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    line-height: 1.3;
}

.mobile-menu>li>a:hover {
    background: #f6f3fa;
    color: #591487;
}

/* =============================
   DROPDOWN BUTTON (Company, Services)
   — Remove the inner <a> wrapper glitch
============================= */

.mobile-dropdown {
    width: 100%;
}

/* The button itself IS the clickable row — full width, proper look */
.dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    font-size: 22px;
    font-weight: 500;
    color: #333;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    line-height: 1.3;
    /* Remove any default button weirdness */
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    box-shadow: none;
}

.dropdown-btn:hover,
.dropdown-btn.active {
    background: #f6f3fa;
    color: #591487;
}

/* The inner link inside dropdown-btn must be invisible/passive */
.dropdown-btn .dropdown-link {
    display: contents;
    /* renders children inline, no extra box */
    color: inherit;
    text-decoration: none;
    pointer-events: none;
    /* click handled by button, not the anchor */
}

/* =============================
   MENU LABEL (text + arrow)
============================= */

.menu-label {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

/* ARROW */
.arrow-icon {
    font-size: 13px;
    margin-left: auto;
    /* push arrow to right */
    transition: transform 0.3s;
}

.dropdown-btn.active .arrow-icon {
    transform: rotate(180deg);
}

/* =============================
   DROPDOWN CONTENT
============================= */

.dropdown-content {
    display: none;
    list-style: none;
    padding: 4px 0 4px 12px;
    margin: 0;
}

.dropdown-content.show {
    display: block;
}

/* =============================
   SERVICES MOBILE LIST (with icons)
============================= */

.services-mobile-list {
    padding-left: 8px;
}

.services-mobile-item {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px !important;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s;
    width: 100%;
}

.services-mobile-item:hover {
    background: #f6f3fa;
    color: #591487;
}

.services-mobile-list .services-icon-wrap {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-mobile-list .services-icon-wrap img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.services-mobile-list .services-item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.services-mobile-list .services-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
}

.services-mobile-list .services-item-desc {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
}

/* =============================
   MOBILE CONTACT INFO
============================= */

.mobile-contact {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333333;
}

.mobile-contact p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.mobile-contact strong {
    display: block;
    color: #222;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.mobile-contact .email-link {
    color: #591487;
    text-decoration: none;
}

.mobile-contact .email-link:hover {
    text-decoration: underline;
}

.mobile-icon {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.mobile-icon a {
    font-size: 22px;
    color: #333333;
    transition: color 0.3s;
}

.mobile-icon a.linkedin:hover {
    color: #0077b5;
}

/* LINE */

.line {
    border: none;
    height: 1px;
    width: 100%;
    background: #e5e5e5;
    margin: 20px 0;
}

/* CONTACT */

.mobile-contact {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.mobile-contact p {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333333;
    margin-left: 10px;
}

.mobile-contact a {
    color: #591487;
    text-decoration: none;
}

/* SOCIAL */

.mobile-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}


.mobile-social {
    display: flex;
    flex-direction: column;
    /* This stacks text on top of icons */
    align-items: flex-start;
    /* Aligns everything to the left */
}



.mobile-icon {
    display: flex;
    gap: 10px;
}

.mobile-icon a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-left: 10px;
}

/* LinkedIn */
.mobile-icon a.linkedin {
    background-color: #deeefd;
    /* light blue */
}

.mobile-icon a.linkedin i {
    color: #0A66C2;
}

/* Facebook */
.mobile-icon a.facebook {
    background-color: #deeefd;
    /* light blue */
}

.mobile-icon a.facebook i {
    color: #1877F2;
}


/* form flag input */
.iti {
    width: 100%;
}

.phone-input {
    height: 48px;
}

.iti__flag-box,
.iti__country-name {
    margin-right: 8px;
    color: black;
}

.iti__dial-code {
    color: #100e0e;
}

/* MOBILE */

@media (max-width:991px) {

    .desktop-btn {
        display: none;
    }

    .navbar-collapse {
        display: none;
    }

}

.dropdown-menu {
    border-radius: 10px;
    padding: 10px 0;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: #f5f5f5;
    color: #591487;
}


/* Hover dropdown only for desktop */

@media (min-width: 992px) {

    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

}

/* ── SERVICES DROPDOWN ── */
.services-dropdown {
    min-width: 320px;
    padding: 12px 8px;
}

.services-item {
    display: flex !important;
    align-items: center;
    gap: 14px;
    padding: 10px 14px !important;
    border-radius: 10px;
    transition: background 0.2s;
}

.services-item:hover {
    background: #f6f3fa !important;
    color: inherit !important;
}

.services-icon-wrap {
    width: 48px;
    height: 48px;
    background: #f9f4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.services-icon-wrap img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.services-item-text {
    display: flex;
    flex-direction: column;
}

.services-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
}

.services-item-desc {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
    line-height: 1.4;
}

/* ── MOBILE SERVICES LIST ── */
.services-mobile-list {
    padding-left: 0 !important;
}

.services-mobile-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 10px !important;
    border-radius: 10px;
    font-size: 16px !important;
    text-decoration: none;
    color: #333 !important;
    transition: background 0.2s;
}

.services-mobile-item:hover {
    background: #f6f3fa !important;
    color: #591487 !important;
}

.services-mobile-item .services-icon-wrap {
    width: 42px;
    height: 42px;
}

.services-mobile-item .services-item-title {
    font-size: 15px;
}

/* HERO */


/* TITLE */

.hero-title {
    font-size: 50px;
    font-weight: 550;
    color: #36005a;
    line-height: 1.3;
}

.hero-title span {
    color: #36005a;
    font-style: italic;
    font-weight: 850;
}

/* TEXT */

.hero-desc {
    margin-top: 20px;
    font-size: 16px;
    color: #333333;
    max-width: 480px;
}

/* BUTTONS */

.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-consult {
    background: #fff;
    color: #000;
    padding: 5px 22px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid #000 !important;
    transition: 0.3s ease;
}

.btn-consult:hover {
    background: #67368c;
    color: #fff;
    border-color: #67368c;
}

.btn-talk {
    border: 2px solid #66358b;
    color: #66358b;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-talk:hover {
    background: #4b7f3b;
    color: #fff;
}

/* IMAGE */

.hero-image {
    max-width: 450px;
}

/* LOGO SLIDER */

.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: scroll 25s linear infinite;
}

.logo-track img {
    height: 40px;
    /* opacity: 0.7; */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* RESPONSIVE */

@media (max-width:991px) {

    .hero-title {
        font-size: 36px;
        text-align: center;
    }

    .hero-desc {
        text-align: center;
        margin: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-left {
        text-align: center;
    }

}

@media (max-width:576px) {

    .hero-title {
        font-size: 32px;
    }

    .hero-image {
        max-width: 330px;
    }

    .logo-track {
        gap: 40px;
    }

}

/* Title */



@media (max-width: 500px) {
    .approach-title {
        font-size: 25px !important;
        font-weight: 700;
        color: #2b0a5c;
        margin-bottom: 5px;
    }
}

/* SECTION */
/* SECTION */
.impact-section {
    padding: 30px 20px;
    background: linear-gradient(180deg, #F4F4F7 0%, #EFEFF3 100%);
    text-align: center;
}

/* HORIZONTAL LAYOUT */
.impact-stats {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto 40px auto;
    gap: 100px;
}

/* ITEM */
.impact-item {
    flex: 1;
    transition: transform 0.3s ease;
}

/* NUMBER */
.impact-item h3 {
    font-size: 54px;
    font-weight: 700;
    color: #66358b;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    line-height: 1;
}



/* TEXT */
.impact-item p {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

/* BOTTOM TEXT */
.impact-text {
    margin-top: 20px;
}

.impact-text p {
    font-size: 16px;
    color: #333333;
}

/* HOVER */
.impact-item:hover {
    transform: translateY(-6px);
}

/* TABLET */
@media (max-width:768px) {
    .impact-stats {
        flex-wrap: wrap;
        gap: 40px;
    }

    .impact-item {
        width: 45%;
    }

    .impact-item h3 {
        font-size: 48px;
    }

    .symbol {
        font-size: 28px;
    }
}

/* MOBILE */
@media (max-width:480px) {
    .impact-item {
        width: 100%;
    }

    .impact-item h3 {
        font-size: 38px;
    }

    /* .symbol {
        font-size: 20px;
    } */

    .impact-item p {
        font-size: 13px;
    }
}

/* BUSINESS PROBLEMS */
.problem-card {
    background: #fff;
    border-radius: 40px;
    padding: 25px;
    height: 210px;
    position: relative;
    overflow: hidden;

    /* Default Border */
    border: 1px solid #ece4ff;

    /* Soft Shadow */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

    transition: all 0.35s ease;
}

/* Hover Effect */
.problem-card:hover {
    transform: translateY(-6px);

    /* Purple Border like image */
    border-color: #c084fc;

    /* Glow Shadow */
    box-shadow:
        0 12px 30px rgba(192, 132, 252, 0.22),
        0 0 0 4px rgba(192, 132, 252, 0.08);
}

/* Optional smooth glowing line */
.problem-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(192, 132, 252, 0.4),
            rgba(255, 255, 255, 0));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* Show border glow on hover */
.problem-card:hover::before {
    opacity: 1;
}

.problem-card h3 {
    font-size: 18px;
    font-weight: 550;
    color: #111;
    max-width: 160px;
    line-height: 1.4;
}

.problem-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: auto;
    object-fit: contain;
}

/* Mobile */
@media (max-width: 767px) {

    .problem-card {
        height: 190px;
        border-radius: 45px;
    }

    .last-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .last-card-title {
        font-size: 22px !important;
        margin-top: 50px !important;
    }

    .last-card-img {
        width: 170px !important;
    }
}

@media (max-width: 768px) {
    .faq-points li {
        text-align: start;
    }

    .custom-bullets {
        text-align: start;
    }
}

.mt-2 {
    margin-top: 1.5rem !important;
}

/* FOOTER */
.footer {
    position: relative;
    color: #fff;
}

.footer-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
}

.footer-overlay {
    background: rgba(10, 0, 40, 0.85);
    padding: 70px 0 30px;
}

.footer-logo {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* .footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #d4d4d4;
} */

.footer-title {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
}

.footer-links li::before {
    content: "\f111";
    /* Font Awesome circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 5px;
}

.footer-links a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #4b7f3b;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 20px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.footer-title+p a,
.col-lg-3 p a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}

.col-lg-3 p a:hover {
    color: #4b7f3b;
    /* green */
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #8f82824a;
    color: #fff;
    margin: 5px;
    transition: 0.3s;
}

/* LinkedIn */
.social-icons a:nth-child(3):hover {
    background: #0077b5;
}

/* Facebook */
.social-icons a:nth-child(4):hover {
    background: #0454a5;
}

/* Instagram */
.social-icons a:nth-child(5):hover {
    background: #f10856;
}


.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #8f82824a;
    color: #fff;
    margin: 5px;
    transition: 0.3s;
}



.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.footer-logo img {
    height: 50px;
}


/* flot icon */

.call-float {
    position: fixed;
    left: 20px;
    bottom: 40px;
    width: 60px;
    height: 60px;
    background: #66358b;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    line-height: 60px;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    animation: pulse 1.8s infinite;
    transition: 0.3s;
}

.call-float:hover {
    background: #1f7a34;
    transform: scale(1.1);
}

/* Pulse Animation */

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(89, 40, 167, 0.7);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* contact form  */

.contact-section {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
    padding: 75px 0;
    color: white;
}

.contact-title {
    font-size: 60px;
    font-weight: 550;
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact-text {
    font-size: 20px;
    max-width: 360px;
    opacity: .9;
}

.contact-section label {
    font-size: 14px;
    margin-bottom: 6px;
}

.custom-input {
    /* background: #d9d9d9; */
    border: none;
    border-radius: 8px;
    padding: 12px;
}

.custom-input:focus {
    box-shadow: none;
    outline: none;
}


.submit-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: #d9d9d9;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width:991px) {

    .contact-title {
        font-size: 42px;
    }

    .contact-text {
        max-width: 100%;
    }

}

@media (max-width:576px) {

    .contact-title {
        font-size: 34px;
    }

}

/* Industries We Serve */
/* ==========================================
   INDUSTRIES SECTION
========================================== */

.business-section {
    padding: 100px 0;
    background: #ffffff;
}

/* LEFT CONTENT */

.industries-title {
    font-size: 65px;
    line-height: 1;
    font-weight: 700;
    color: #2b0057;
    margin-bottom: 25px;
}

.industries-title span {
    font-style: italic;
}

.industries-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 520px;
    margin-bottom: 30px;
}

.industry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border: 1.5px solid #5b2ca0;
    border-radius: 50px;
    color: #5b2ca0;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
}

.industry-btn:hover {
    background: #5b2ca0;
    color: #fff;
}


/* ==========================================
   IMAGE GRID
========================================== */

.industry-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    grid-template-rows: 250px 250px;
    gap: 18px;
}

.industry-box {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
    background: #f3f3f3;
}

/* TOP LEFT */

.industry-box.small:first-child {
    grid-column: 1;
    grid-row: 1;
}

/* BOTTOM LEFT */

.industry-box.small:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

/* RIGHT TALL */

.industry-box.large {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.industry-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}


/* ==========================================
   OVERLAY
========================================== */

.industry-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 25px;

    background: linear-gradient(180deg,
            rgba(43, 0, 87, 0.05) 0%,
            rgba(43, 0, 87, 0.75) 70%,
            rgba(43, 0, 87, 0.95) 100%);

    opacity: 0;
    transition: .4s ease;
}

.industry-box:hover .industry-overlay {
    opacity: 1;
}

.industry-box:hover img {
    transform: scale(1.08);
}

.industry-overlay h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.know-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: fit-content;

    padding: 10px 22px;

    background: #fff;
    color: #2b0057;

    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;

    transition: .3s ease;
}

.know-more:hover {
    background: #f5f5f5;
    color: #2b0057;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .business-section {
        padding: 80px 0;
    }


    .industries-desc {
        font-size: 16px;
    }

    .industry-grid {
        margin-top: 40px;
        grid-template-columns: 1fr 1.1fr;
        grid-template-rows: 220px 220px;
    }

    .industry-overlay h4 {
        font-size: 22px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .business-section {
        padding: 60px 0;
    }

    .industries-desc {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    /* KEEP SAME FIGMA LAYOUT */

    .industry-grid {
        margin-top: 35px;

        grid-template-columns: 0.9fr 1.1fr;
        grid-template-rows: 130px 130px;

        gap: 10px;
    }

    .industry-box.small:first-child {
        grid-column: 1;
        grid-row: 1;
    }

    .industry-box.small:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .industry-box.large {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .industry-box {
        border-radius: 16px;
    }

    .industry-overlay {
        padding: 12px;
        opacity: 1;
    }

    .industry-overlay h4 {
        font-size: 15px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .know-more {
        padding: 6px 12px;
        font-size: 11px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {


    .industry-grid {
        grid-template-rows: 115px 115px;
        gap: 8px;
    }

    .industry-overlay h4 {
        font-size: 13px;
        text-align: left;
    }

    .know-more {
        padding: 5px 10px;
        font-size: 10px;
    }
}


/* faq */

.faq-section {
    background: #f8f8f8;
}

.faq-title {
    font-size: 70px;
    font-weight: 700;
    color: #5a1ea6;
}

.custom-faq .faq-card {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.faq-btn {
    background: #fff;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    padding: 14px 20px;
}

.faq-btn:not(.collapsed) {
    background: #fff;
    color: #5a1ea6;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    filter: hue-rotate(260deg);
}

.accordion-body {
    background: #fff;
    font-size: 15px;
    color: #333333;
}

.faq-description {
    font-size: 16px;
    color: #333333;
    margin-top: 15px;
    max-width: 320px;
    line-height: 1.6;
}

/* Arrow color */
.accordion-button::after {
    filter: invert(16%) sepia(84%) saturate(4000%) hue-rotate(265deg) brightness(80%) contrast(95%);
    transform: scale(1.3);
    /* makes arrow bold/bigger */
}

/* When accordion is open */
.accordion-button:not(.collapsed)::after {
    filter: invert(16%) sepia(84%) saturate(4000%) hue-rotate(265deg) brightness(80%) contrast(95%);
    transform: rotate(-180deg) scale(1.3);
}


/* testimonials */

.faq-points {
    padding-left: 18px;
    margin-bottom: 0;
}

.faq-points li {
    margin-bottom: 6px;
    color: #333333;
    line-height: 1.6;
}

/* Our technology */

/* Desktop */
.approach-section {
    padding-top: 0;
    padding-bottom: 50px;
}


/* Mobile & Tablet */
@media (max-width: 991px) {
    .approach-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

/* TITLE */


.approach-title span {
    font-style: italic;
    color: #2b0a5c;
    font-weight: 700;
}

@media (max-width: 767px) {
    .content-side {
        text-align: center;
    }

    .content-side .btn-consult {
        /* display: inline-flex; */
        justify-content: center;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {

    .col-lg-6,
    .col-lg-7 {
        text-align: center;
        padding: 0 15px;
    }

    .approach-title {
        font-size: 24px !important;
    }

    .approach-desc {
        font-size: 16px;
    }

    .btn-consult {
        display: inline-flex;
        margin: 15px auto 0;
    }
}

@media (max-width: 767px) {
    .mobile-center {
        text-align: center;
        padding: 0 15px;
    }

    .mobile-center .btn,
    .mobile-center .btn-consult {
        display: inline-flex;
        justify-content: center;
        margin: 15px auto 0;
    }

    .mobile-center br {
        display: none;
        /* removes forced line breaks */
    }
}

.contact-section label {
    font-size: 14px;
    margin-bottom: 6px;
    text-align: left;
    /* start alignment */
    display: block;
}

@media(max-width:768px) {

    .mobile-fixing-col {
        margin-left: 12px;
    }

    .contact-text {
        color: #2b0a5c;
        margin-top: 18px;
        font-size: 14px !important;
        line-height: 1.6;
    }
}



/* DESCRIPTION */

/* .approach-desc {
    color: #6c6c6c;
    font-size: 17px;
    max-width: 500px;
    margin-top: 15px;
    margin-bottom: 30px;
} */

/* ITEMS */

.approach-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* .approach-item i {
    color: #7c3aed;
    font-size: 20px;
    margin-top: 5px;
} */

.approach-item h6 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 18px;
    color: #1f1f1f;
}

/* .approach-item p {
    font-size: 14px;
    color: #6b6b6b;
    margin: 0;
    line-height: 1.6;
} */

/* IMAGE */

.approach-img {
    max-width: 450px;
}

@media (max-width: 500px) {
    .approach-img {
        max-width: 267px;
    }
}

/* MOBILE */

@media (max-width:768px) {

    .approach-title {
        font-size: 28px !important;
    }

    /* .approach-desc {
        font-size: 15px;
    } */

    .approach-item {
        gap: 12px;
    }

}


.approach-check {
    width: 40px;
    height: 40px;
    stroke: #5a1ea6;
    stroke-width: 2;
    padding: 8px;
    border-radius: 50%;
    /* background: rgba(90,30,166,0.08); */
    flex-shrink: 0;
}

/* our services section */

.mb-3 {
    margin-bottom: 2rem !important;
}

.services-section {
    background: #f5f5f7;
}

/* title */

.services-title {
    font-size: 40px;
    font-weight: 700;
    color: #2b0a4a;
}

.services-title span {
    color: #5a1ea6;
}

.services-subtitle {
    /* max-width: 520px; */
    margin: auto;
    color: #333333;
    font-size: 16px;
    margin-top: 10px;
}

/* card */

.service-card-box {
    position: relative;
    height: 280px;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
}

/* default card */

.service-card-default {
    background: #fff;
    border-radius: 22px;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all .4s ease;
}

.service-card-default h5 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
}

.service-card-default img {
    width: 155px;
    align-self: flex-end;
}

/* Mobile (all small devices) */
@media (max-width: 768px) {
    .service-card-default img {
        width: 90px;
    }
}

@media (max-width: 576px) {
    .service-card-default img {
        width: 90px;
    }
}

.email-link {
    color: #333333 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.email-link:hover {
    color: #5a1ea6 !important;
}

/* hover card */

.service-card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #5a2d91;
    color: #fff;
    border-radius: 22px;
    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    opacity: 0;
    transform: translateY(30px);
    transition: .4s;
}


.service-card-two-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #5a2d91;
    color: #fff;
    border-radius: 22px;
    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    /* center content */
    gap: 15px;
    /* auto spacing */

    opacity: 0;
    transform: translateY(30px);
    transition: .4s;
}

.service-card-two-hover p {
    font-size: 15px;
    line-height: 1.5;
}

.service-card-hover p {
    font-size: 15px;
    line-height: 1.5;
}

/* button */

.service-btn {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    /* font-style:italic; */
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 110px;
}

/* Mobile devices */
@media (max-width: 768px) {
    .service-btn {
        margin-left: 0px;
    }
}

.service-btn span {
    background: #fff;
    color: #5a2d91;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* hover effect */

.service-card-box:hover .service-card-hover {
    opacity: 1;
    transform: translateY(0);
}

.service-card-box:hover .service-card-default {
    transform: translateY(-10px);
}

/* responsive */

@media (max-width:991px) {

    .service-card-box {
        height: 210px;
    }

}

@media (max-width:576px) {

    .services-title {
        font-size: 30px;
    }

    .service-card-box {
        height: 212px;
    }

}



.strategy-section {
    background: #f5f6fa;
    /* light grey background */
}

/* Heading */

/* Card Container */
.strategy-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(51, 13, 168, 0.08);
    display: inline-block;
    max-width: 100%;
}

/* Image inside card */
.strategy-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}



/* SECTION */
.ts-services {
    background: #f5f5f7;
    padding: 70px 0;
}

/* TITLE */
.ts-title {
    font-size: 42px;
    font-weight: 700;
    color: #2b0a4a;
}

.ts-title span {
    color: #5a1ea6;
}

.ts-subtitle {
    font-size: 16px;
    color: #333333;
    max-width: 600px;
    margin: 10px auto 0;
}

/* CARD GRID FIX */
.ts-services .row>div {
    display: flex;
}

/* CARD */
.ts-simple-card {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 22px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    /* Default Border */
    border: 1px solid transparent;

    /* Default Shadow */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

    transition: all 0.35s ease;
}

/* Hover Effect */
.ts-simple-card:hover {

    transform: translateY(-6px);

    /* Border Color */
    border-color: #c084fc;

    /* Purple Glow Shadow */
    box-shadow:
        0 14px 35px rgba(192, 132, 252, 0.25),
        0 0 0 5px rgba(192, 132, 252, 0.08);
}

/* TITLE */
.ts-simple-card h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
}

/* BOTTOM AREA */
.ts-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

/* IMAGE */
.ts-card-bottom img {
    width: 110px;
}

/* BUTTON */
.ts-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    font-size: 14px;
    color: #5a2d91;
    text-decoration: none;
    font-weight: 500;
}

.ts-read-btn span {
    width: 28px;
    height: 28px;
    background: #5a2d91;
    color: #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .3s;
}

.ts-read-btn:hover span {
    transform: translateX(4px);
}

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

    .ts-title {
        font-size: 34px;
    }

    .ts-card-bottom img {
        width: 90px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .ts-services {
        padding: 50px 0;
    }

    .ts-title {
        font-size: 28px;
    }

    .ts-subtitle {
        font-size: 14px;
    }

    .ts-simple-card {
        padding: 18px;
    }

    .ts-simple-card h5 {
        font-size: 22px;
    }

    .ts-card-bottom {
        margin-top: 15px;
    }

    .ts-card-bottom img {
        width: 125px;
    }

    .ts-read-btn {
        margin-top: 8px;
        font-size: 18px;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 576px) {

    .ts-title {
        font-size: 24px;
    }

    .ts-card-bottom img {
        width: 125px;
    }

    .ts-read-btn span {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
    /* border: none; */
}

.choose-section {
    background: #f5f5f7;
}

/* title */

.choose-title {
    font-size: 42px;
    font-weight: 700;
    color: #2b0a4a;
}

.choose-title span {
    font-style: italic;
}

.choose-subtitle {
    max-width: 520px;
    margin: auto;
    margin-top: 10px;
    color: #333333;
    font-size: 16px;
}

/* card */

.choose-card {
    background: #fff;
    padding: 19px 28px;
    border-radius: 22px;
    height: 100%;

    /* Border */
    border: 1px solid transparent;

    /* Default Shadow */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);

    transition: all .35s ease;
}

/* Hover */
.choose-card:hover {

    transform: translateY(-8px);

    /* Purple Border */
    border-color: #c084fc;

    /* Glow Shadow */
    box-shadow:
        0 14px 32px rgba(192, 132, 252, 0.24),
        0 0 0 5px rgba(192, 132, 252, 0.08);
}

/* icon */

.choose-icon {
    width: 45px;
    margin-bottom: 18px;
}

/* text */

.choose-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.choose-card p {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
}

/* Mobile only */
@media (max-width: 768px) {
    .choose-card p {
        font-size: 12px;
    }
}

/* button */

.consult-btn {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 20px;
    border: 2px solid #5a1ea6;
    color: #5a1ea6;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.consult-btn:hover {
    background: #5a1ea6;
    color: #fff;
}

/* responsive */

@media (max-width:992px) {

    .choose-title {
        font-size: 34px;
    }

}

@media (max-width:576px) {

    .choose-title {
        font-size: 28px;
    }

    .choose-card {
        text-align: center;
    }

    .choose-icon {
        margin: auto;
        margin-bottom: 15px;
    }

}

/* business outcomes section */

.benefits-section {
    background: #f5f5f7;
}

/* row */

.benefits-row {
    align-items: center;
    justify-content: space-between;
}

/* item */

.benefit-item {
    padding: 20px 10px;
    position: relative;
}

/* vertical divider */

.benefit-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #cfcfcf;
}

/* icon */

.benefit-item img {
    width: 54px;
    margin-bottom: 13px;
}

/* text */

.benefit-item h6 {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    line-height: 1.4;
    margin: 0;
}

/* tablet */

@media (max-width:992px) {

    .benefit-item::after {
        display: none;
    }

}

/* mobile */

@media (max-width:576px) {

    .benefit-item {
        padding: 18px 10px;
    }

    .benefit-item img {
        width: 38px;
    }

    .benefit-item h6 {
        font-size: 14px;
    }

}


/* popup form */

/* Modal Design */
.consult-modal {
    border-radius: 20px;
    overflow: hidden;
    border: none;
}

/* LEFT PANEL */

.consult-left {
    background: linear-gradient(135deg, #2b0a5c, #6f42c1);
    color: white;
    padding: 40px;
    align-items: center;
}

.consult-info h3 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 55px;
}

.consult-info p {
    opacity: .9;
    margin-bottom: 20px;
}

.consult-info ul {
    list-style: none;
    padding: 0;
}

.consult-info li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* FORM */

.modal-title {
    font-weight: 700;
    color: #2b0a5c;
}

label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Inputs */

.input-group-text {
    background: #f3f3f7;
    border: none;
}

.form-control {
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 10px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #6f42c1;
}

.textarea {
    height: 110px;
}

/* Button */

.btn-consult-submit {
    background: linear-gradient(135deg, #6f42c1, #2b0a5c);
    color: #fff;
    padding: 12px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: .3s;
}

.btn-consult-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


.help-section {
    background: #f4f4f6;
}

.help-title {
    font-size: 38px;
    font-weight: 700;
    color: #2e0a46;
}

.help-title span {
    font-style: italic;
}

.help-subtitle {
    color: #333333;
    font-size: 16px;
}

.help-card {
    background: #fff;
    padding: 25px 18px;
    border-radius: 14px;

    /* ADD THIS */
    border: 1px solid transparent;

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    transition: all .35s ease;
    height: 100%;
}

.help-card:hover {
    transform: translateY(-6px);

    /* Border Color */
    border-color: #c084fc;

    /* Purple Glow Shadow */
    box-shadow:
        0 14px 35px rgba(192, 132, 252, 0.25),
        0 0 0 5px rgba(192, 132, 252, 0.08);
}

.help-icon {
    width: 42px;
    margin-bottom: 15px;
}

.help-card p {
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.5;
}


.contact-page-section {
    background: #f6f4f8;
}

.approach-title {
    font-size: 46px;
    font-weight: 700;
    color: #2b0a5c;
}



.contact-text {
    color: #2b0a5c;
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.contact-details {
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: #2b0a5c;
    font-size: 15px;
}

.contact-item i {
    font-size: 16px;
    margin-top: 4px;
}

.contact-form {
    background: #3b116757;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px #2b0a5c;
}



.custom-input {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.custom-input:focus {
    box-shadow: none;
    border-color: #5c2ca5;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 20px;
    border: 2px solid #1c1c1c;
    border-radius: 40px;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all .3s ease;
}


.contact-btn span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.contact-btn:hover {
    background: #5c2ca5;
    color: #fff;
}

.contact-btn:hover span {
    background: #fff;
    color: #5c2ca5;
}


.contact-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 22px;
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    font-size: 15px;
    font-weight: 500;
    transition: all .35s ease;
    text-decoration: none;
}

.contact-btn-white .service-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: #5c2ca5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease;
}

.contact-btn-white:hover {
    background: #fff;
    color: #5c2ca5;
    border-color: #fff;
    transform: translateY(-2px);
}

.contact-btn-white:hover .service-icon {
    background: #5c2ca5;
    color: #fff;
    transform: translateX(4px);
}

a[href^="tel"] {
    cursor: pointer;
}

.contact-item a {
    text-decoration: none;
    color: #36005A;
    /* same blue color like screenshot */
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #36005A;
}

p a[href^="tel"],
p a[href^="mailto"] {
    text-decoration: none;
    color: #36005A;
    transition: color 0.3s ease;
}

p a[href^="tel"]:hover,
p a[href^="mailto"]:hover {
    color: #5e2c91;
    /* hover color */
}

.form-error {
    color: red;
    font-size: 13px;
    margin-top: 4px;
    display: none;
}

.input-error {
    border: 1px solid red;
}

.custom-input {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    border: 1px solid #36005A;
}

.iti--allow-dropdown input.iti__tel-input,
.iti--allow-dropdown input.iti__tel-input[type=text],
.iti--allow-dropdown input.iti__tel-input[type=tel],
.iti--show-selected-dial-code input.iti__tel-input,
.iti--show-selected-dial-code input.iti__tel-input[type=text],
.iti--show-selected-dial-code input.iti__tel-input[type=tel] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0;
    border: 1px solid #36005A;
}

.g-recaptcha {
    margin: 20px 0;
}


/* country section */

.global-presence {
    background: #f5f6fa;
}

.presence-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.presence-subtitle {
    color: #333333;
    max-width: 600px;
    margin: auto;
}

/* OFFICE CARD */

.office-box {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: 0.3s;
    border: 1px solid #eee;
}

.office-box:hover {
    transform: translateY(-6px);

    /* Border Color */
    border-color: #c084fc;

    /* Purple Glow Shadow */
    box-shadow:
        0 14px 35px rgba(192, 132, 252, 0.25),
        0 0 0 5px rgba(192, 132, 252, 0.08);
}

/* HEADER */

.office-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

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

.office-header h5 {
    font-size: 20px;
    font-weight: 600;
    color: #5e2c91;
    margin: 0;
}


/* =========================================
   TECHNOLOGY BUILDING BLOCKS
========================================= */

.tech-blocks-section {
    background: #f7f5f8;
    overflow: hidden;
}

/* TITLE */
.tech-title {
    font-size: 56px;
    font-weight: 700;
    color: #2c004f;
    margin-bottom: 18px;
    line-height: 1.1;
}

.tech-title span {
    font-style: italic;
}

.tech-subtitle {
    max-width: 850px;
    margin: auto;
    font-size: 20px;
    line-height: 1.7;
    color: #3e2d4f;
}

/* CARD */
.tech-card {
    background: #f1edf4;
    border-radius: 28px;
    padding: 20px 20px 28px;
    height: 100%;
    min-height: 250px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    text-align: center;

    /* ADD BORDER */
    border: 2px solid transparent;

    transition: all 0.4s ease;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}




.tech-card:hover {

    transform: translateY(-6px);

    /* Border Color */
    border-color: #c084fc;

    /* Purple Glow Shadow */
    box-shadow:
        0 14px 35px rgba(192, 132, 252, 0.25),
        0 0 0 5px rgba(192, 132, 252, 0.08);
}

/* ICON */
.tech-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 25px;
}

/* CARD TITLE */
.tech-card h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    color: #2d1844;
    margin-bottom: 8px;
    min-height: 80px;
}


/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width: 1399px) {

    .tech-title {
        font-size: 48px;
    }

    .tech-card h4 {
        font-size: 24px;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .tech-title {
        font-size: 40px;
    }

    .tech-subtitle {
        font-size: 18px;
    }

    .tech-card {
        min-height: 250px;
        padding: 32px 18px 24px;
    }

    .tech-card h4 {
        font-size: 22px;
        min-height: auto;
    }

    .tech-icon {
        width: 65px;
        height: 65px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .tech-blocks-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .tech-title {
        font-size: 34px;
    }

    .tech-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .tech-card {
        border-radius: 22px;
        min-height: 220px;
        padding: 28px 14px 20px;
    }

    .tech-card h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .tech-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
    }


}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .tech-title {
        font-size: 28px;
    }

    .tech-card {
        min-height: 200px;
    }

    .tech-card h4 {
        font-size: 16px;
        line-height: 1.4;
    }


}



.challenge-modern-section {
    background: linear-gradient(180deg, #f8f7fc 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

/* Header */
.challenge-badge {
    background: rgba(45, 24, 68, 0.08);
    color: #2d1844;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.challenge-subtitle {
    max-width: 700px;
    margin: 15px auto 0;
    color: #333333;
    font-size: 18px;
    line-height: 1.7;
}

/* Card */
.challenge-box {
    background: #fff;
    border-radius: 30px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    border: 1px solid #ece8f3;
    transition: all 0.35s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}

.challenge-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(45, 24, 68, 0.12);
}

/* Icon */
.challenge-icon {
    width: 60px;
    height: 60px;
    background: #2d1844;
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

/* Image */
.challenge-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 25px;
}

.challenge-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.4s ease;
}

.challenge-box:hover .challenge-image {
    transform: scale(1.05);
}

/* Content */
.challenge-body h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2b0a5c;
    line-height: 1.4;
    margin-bottom: 20px;
}

.challenge-body ul {
    padding-left: 18px;
    margin: 0;
}

.challenge-body ul li {
    font-size: 16px;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Large Screen */
@media (max-width: 1199px) {

    .challenge-body h4 {
        font-size: 22px;
    }

    .challenge-image {
        height: 220px;
    }
}

/* Tablet */
@media (max-width: 991px) {

    .challenge-modern-section {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .challenge-subtitle {
        font-size: 16px;
    }

    .challenge-box {
        padding: 20px;
    }

    .challenge-body h4 {
        font-size: 21px;
    }

    .challenge-image {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .challenge-modern-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .section-header {
        margin-bottom: 40px !important;
    }

    .challenge-subtitle {
        font-size: 15px;
        line-height: 1.6;
        padding: 0 10px;
    }

    .challenge-box {
        border-radius: 24px;
        padding: 18px;
    }

    .challenge-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
        border-radius: 14px;
    }

    .challenge-image {
        height: 200px;
    }

    .challenge-body h4 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .challenge-body ul li {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .challenge-box {
        padding: 16px;
    }

    .challenge-image {
        height: 180px;
        border-radius: 18px;
    }

    .challenge-body h4 {
        font-size: 18px;
    }

    .challenge-body ul li {
        font-size: 14px;
    }
}



/* BODY */

.office-body p {
    font-size: 15px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.office-phone {
    font-weight: 600;
    color: #333;
}

.office-phone i {
    color: #5e2c91;
    margin-right: 6px;
}

.office-phone a {
    color: #5e2c91;
    text-decoration: none;
    font-weight: 600;
    margin-left: 6px;
}

.office-phone a:hover {
    color: #36005A;
}

/* business problem we solve (Services) */
/* SECTION */

.bpw-section {
    background: #f3f3f3;
}

/* MAKE SAME HEIGHT */

.bpw-col {
    display: flex;
}

/* CARD */

.bpw-card {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 190px;
}

/* TEXT AREA */

.bpw-text {
    width: 75%;
    position: relative;
    padding: 30px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .bpw-text {
        padding: 0 !important;
    }
}


/* HOVER PANEL */

.bpw-hover {
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: #6d3fa7;
    transition: 0.45s ease;
    z-index: 1;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}

.bpw-card:hover .bpw-hover {
    left: 0;
}

/* CONTENT */

.bpw-content {
    position: relative;
    z-index: 2;
}

.bpw-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.bpw-content p {
    font-size: 16px;
    color: #333333;
    margin: 0;
    line-height: 1.6;
}

/* TEXT COLOR CHANGE */

.bpw-card:hover .bpw-content h4,
.bpw-card:hover .bpw-content p {
    color: #fff;
}

/* IMAGE */

.bpw-image {
    width: 25%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 15px;
}

.bpw-image img {
    width: 120px !important;
}

/* CTA LAST CARD */

.bpw-card-cta {
    background: #6d3fa7;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 25px;
}

/* BUTTON */

.bpw-cta-btn {
    background: #fff;
    color: #6d3fa7;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

/* RESPONSIVE */

@media (max-width:992px) {

    .bpw-card {
        flex-direction: column;
    }

    .bpw-text {
        width: 100%;
    }

    .bpw-image {
        width: 100%;
        justify-content: flex-end;
    }

    .bpw-image img {
        width: 70px;
    }

    .bpw-card {
        min-height: auto;
    }

    .bpw-card-cta {
        height: 140px;
    }

}

/* SECTION */

.cta-ex-section {
    padding: 80px 0;
    background: #f3f3f3;
}

/* CARD */
/* SECTION */

.cta-pro-section {
    padding: 30px 0;
    background: #f4f4f4;
}

/* CARD */

.cta-pro-card {

    position: relative;
    border-radius: 30px;
    padding: 20px 40px;
    text-align: center;
    overflow: hidden;

    /* background image */

    background:
        url("assets/shape-6.png") right center / cover no-repeat,
        linear-gradient(180deg, #f2eef6, #e6e2ea);

}

/* LEFT ILLUSTRATION */

.cta-pro-illustration {

    position: absolute;
    left: 20px;
    bottom: 26;
}

.cta-pro-illustration img {
    width: 250px;
}

/* CONTENT */

.cta-pro-content {
    max-width: 700px;
    margin: auto;
}

/* TITLE */

.cta-pro-content h2 {

    font-size: 42px;
    font-weight: 700;
    color: #2a0c42;
    margin-bottom: 10px;
}

/* TEXT */

.cta-pro-content p {

    font-size: 16px;
    color: #333333;
    margin-bottom: 15px;
}

/* BUTTON GROUP */

.cta-pro-buttons {

    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* BUTTON */

.cta-pro-btn {

    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}

/* PRIMARY */

.cta-pro-btn.primary {
    background: #6d3fa7;
    color: #fff;
}

/* SECONDARY */

.cta-pro-btn.secondary {
    border: 2px solid #6d3fa7;
    color: #6d3fa7;
}

/* HOVER */

.cta-pro-btn.primary:hover {
    background: #56308a;
}

.cta-pro-btn.secondary:hover {
    background: #6d3fa7;
    color: #fff;
}

/* RESPONSIVE */

@media (max-width:992px) {

    .cta-pro-card {
        padding: 70px 30px;
    }

    .cta-pro-content h2 {
        font-size: 34px;
    }

    .cta-pro-illustration img {
        width: 100px;
    }

}

@media (max-width:768px) {

    .cta-pro-illustration {
        display: none;
    }

    .cta-pro-content h2 {
        font-size: 28px;
    }

}

@media (max-width:480px) {

    .cta-pro-buttons {
        flex-direction: column;
    }

    .cta-pro-btn {
        width: 100%;
    }

}

@media (max-width: 768px) {
    .footer-mobile-padding {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.py-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* How the framework works (Services) */
.framework-section {
    padding: 30px 0;
    background: #f5f5f7;
}

.framework-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 80px;
}

/* container */
.stack-container {
    max-width: 900px;
    margin: auto;
}

/* cards */
.stack-card {
    position: sticky;
    top: 120px;
    background: linear-gradient(180deg, #f3f3f6, #e9e9ee);
    padding: 50px;
    border-radius: 30px;
    margin-bottom: 40px;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.08);
    transition: height .4s ease;
}

/* stacking spacing */
.stack-card:nth-child(2) {
    top: 150px;
}

.stack-card:nth-child(3) {
    top: 150px;
}

/* number */
.card-number {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 46px;
    height: 46px;
    border: 2px solid #5c3fa3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #5c3fa3;
}

.stack-card h3 {
    color: #2b0a5c;
    margin-bottom: 10px;
    font-weight: 600;
}

/* responsive */
@media(max-width:768px) {
    .framework-title {
        font-size: 30px;
    }

    .stack-card {
        padding: 30px;
        top: 100px;
    }
}

/* operating model section (Services) */
/* SECTION BACKGROUND */

.operating-model-section {
    background: #f7f7f9;
}


/* IMAGE */

.framework-image {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.framework-image img {
    max-width: 100%;
}


/* TIMELINE WRAPPER */

.timeline-wrapper {
    position: relative;
    padding-left: 80px;

}


/* BASE DOTTED LINE */

.timeline-wrapper::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    border-left: 2px dashed #b1b0b0;
}


/* ANIMATED PROGRESS LINE */

.timeline-progress {
    position: absolute;
    left: 30px;
    top: 0;
    width: 3px;
    height: 0;

    /* background: linear-gradient(to bottom,
            #6a4cff,
            #9a63ff,
            #ff7bd5,
            #ff9a4a,
            #ffc94a,
            #3ddc97); */

    transition: height .8s cubic-bezier(.22, .61, .36, 1);
}


/* TIMELINE ITEM */

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 45px;
}


/* CIRCLE */

.timeline-circle {

    position: absolute;
    left: -70px;

    width: 42px;
    height: 42px;

    border-radius: 50%;
    background: #fff;

    border: 2px solid #66358b;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 600;
    color: #66358b;

    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);

    transition: all .35s ease;
}


/* CONTENT */

.timeline-content h5 {
    font-weight: 600;
    margin-bottom: 6px;
    transition: .3s;
}

.timeline-content p {
    font-size: 14px;
    color: #333333;
    margin: 0;
    line-height: 1.6;
    transition: .3s;
}


/* ACTIVE STATE */

.timeline-item.active .timeline-circle {
    /* background:#66358b; */
    color: #000000;
    /* box-shadow:0 0 18px rgba(102,53,139,.7); */
    transform: scale(1.15);
}

.timeline-item.active h5 {
    color: #66358b;
    text-align: start;
}

.timeline-item.active p {
    color: #333;
    text-align: start;
}


/* HOVER EFFECT */

.timeline-item:hover .timeline-circle {
    transform: scale(1.12);
    box-shadow: 0 0 15px rgba(102, 53, 139, .5);
}

.timeline-item:hover h5 {
    color: #66358b;
}


/* RESPONSIVE TABLET */

@media(max-width:992px) {

    .framework-image {
        margin-bottom: 40px;
    }

    .timeline-wrapper {
        padding-left: 70px;
    }

}


/* RESPONSIVE MOBILE */

@media(max-width:576px) {

    .timeline-wrapper {
        padding-left: 70px;
    }

    .timeline-circle {
        left: -55px;
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .timeline-item {
        margin-bottom: 35px;
    }

    .timeline-content h5 {
        font-size: 16px;
    }

    .timeline-content p {
        font-size: 13px;
    }

}


/* .story-section {
    background: #efefef;
} */
.journey-section {
    background: #fafafa;
    padding: 80px 0;
}

.journey-timeline {
    position: relative;
}

.journey-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: #e4e4e4;
    transform: translateX(-50%);
}

.journey-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 90px;
    position: relative;
    opacity: 0;
    transform: translateY(60px);
    transition: .8s;
}

.journey-item.show {
    opacity: 1;
    transform: translateY(0);
}

.journey-item.reverse {
    flex-direction: row-reverse;
}

/* circle */

.journey-item::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: #66358b;
    border-radius: 50%;
    animation: journeyPulse 2s infinite;
    z-index: 2;
}

@keyframes journeyPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 53, 139, .5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(102, 53, 139, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(102, 53, 139, 0);
    }
}

/* image */

.journey-img {
    width: 44%;
    overflow: hidden;
    border-radius: 12px;
}

.journey-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .6s;
}

.journey-img:hover img {
    transform: scale(1.08);
}

/* card */

.journey-card {
    position: relative;
    width: 44%;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    cursor: pointer;
    transition: .4s;
}

.journey-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #66358b;
    z-index: -1;
    transition: .5s;
}

.journey-card:hover::before {
    width: 100%;
}

.journey-card:hover {
    color: #fff;
    transform: translateY(-6px);
}

.journey-highlight {
    color: #66358b;
    /* font-weight: 600; */
    font-size: 19px;
}

.journey-card:hover .journey-highlight {
    color: #fff;
}

/* mobile */

@media(max-width:991px) {

    .journey-timeline::before {
        left: 20px;
    }

    .journey-item {
        flex-direction: column;
        padding-left: 30px;
    }

    .journey-item.reverse {
        flex-direction: column;
    }

    .journey-item::before {
        left: 20px;
    }

    .journey-img,
    .journey-card {
        width: 100%;
    }

    .journey-img img {
        height: 200px;
        margin-bottom: 20px;
    }

}

/* Mobile */
@media (max-width:991px) {

    .story-img {
        height: 240px;
        margin-bottom: 20px;
    }

    .story-text {
        text-align: left;
    }

}

.quote-section {
    background: #efefef;
}

.quote-box {
    text-align: left;
    padding: 20px 0;
}

.quote-text {
    font-size: 20px;
    font-weight: 600;
    color: #2b0a5c;
    line-height: 1.4;
    margin-bottom: 15px;
}

.quote-author {
    font-size: 16px;
    color: #6b6b6b;
    font-style: italic;
}

@media (max-width:768px) {

    .quote-text {
        font-size: 22px;
    }

    .quote-author {
        font-size: 14px;
    }

}



.mt-5 {
    margin-top: 5rem !important;
}

/* scroll to top */

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border: none;
    background: #66358b;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#scrollTopBtn:hover {
    background: #7a45a3;
    transform: translateY(-4px);
}

#scrollTopBtn i {
    line-height: 48px;
}


/* about page hi amigo */

/* Technology Excellence Section */
.tech-excellence-section {
    position: relative;
    background: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
    /* IMPORTANT: prevents overflow issues */
}

.tech-excellence-section i {
    color: #000;
}

.tech-excellence-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.side-decor {
    position: absolute;
    top: 33%;
    transform: translateY(-50%);
    width: 230px;
    max-width: 20%;
    opacity: 0.15;
    /* subtle look */
    pointer-events: none;
}

/* LEFT */
.left-decor {
    left: 0;
}

/* RIGHT */
.right-decor {
    right: 0;
}

.tech-excellence-section .goal-box {
    max-width: 800px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    color: #4B0082;
    /* deep purple text */
    font-weight: 600;
    font-size: 1.1rem;
}

.goal-box {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

.goal-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: #591487;
    z-index: -1;
    transition: width 0.4s ease;
}

/* Hover Effect */
.goal-box:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.goal-box:hover {
    color: #ffffff;
}

.py-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

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

@media (max-width: 767.98px) {
    .tech-excellence-section p {
        font-size: 0.95rem;
    }

    .tech-excellence-section .goal-box {
        font-size: 1rem;
        padding: 20px;
    }
}

/* about us transforming business */

/* inception-section */
.main-img {
    max-height: 300px;
    object-fit: contain;
}

/* Progress Bar */
.progress-wrapper {
    width: 100%;
}

.progress-line {
    position: absolute;
    top: 9px;
    /* adjust to align with circles */
    left: 0;
    width: 100%;
    height: 4px;
    background: #ddd;
    z-index: 1;
}

.steps {
    position: relative;
    z-index: 2;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

/* Circle */
.circle {
    width: 18px;
    height: 18px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.circle.active {
    background: #6f42c1;
    transform: scale(1.2);
    animation: pulse 1.2s infinite;
}

/* Step Title Under Circle */
.step-title {
    margin-top: 8px;
    font-size: 12px;
    color: #333333;
    text-align: center;
    white-space: nowrap;
}

.circle.active+.step-title {
    font-weight: 600;
    color: #6f42c1;
}

/* Keyframe pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(111, 66, 193, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(111, 66, 193, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(111, 66, 193, 0);
    }
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .main-img {
        max-height: 200px;
    }

    .circle {
        width: 14px;
        height: 14px;
    }

    .step-title {
        font-size: 10px;
    }

    .progress-line {
        position: absolute;
        top: 5px;
        /* adjust to align with circles */
        left: 0;
        width: 100%;
        height: 4px;
        background: #ddd;
        z-index: 1;
    }



}

@media (max-width: 576px) {
    .benefits-row .benefit-item p {
        font-size: 11px;
    }
}

.highlight-text {
    color: #4B0082;
    font-weight: 600;
    /* optional for emphasis */
}

#stepText {
    color: #333333 !important;
    /* nice professional gray */
    font-size: 16px;
    font-weight: 500;

}


/* What We are building */

.build-section {
    /* padding: 60px 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.build-container {
    max-width: 800px;
    margin: 0 auto;
}

/* New classes */
.build-text {
    font-size: 18px;
    margin-top: 20px;
}

.build-highlight {
    font-size: 20px;
    font-weight: 600;
    color: #591487;
    margin: 20px 0;
}

.build-description {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
}

.approach-subtitle {
    font-size: 16px;
    color: #333333;
}

/* Responsive */
@media (max-width: 768px) {
    .approach-title {
        font-size: 32px;
    }

    .approach-subtitle {
        font-size: 16px;
    }

    .build-highlight {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .approach-title {
        font-size: 26px;
    }

    .build-text,
    .build-description {
        font-size: 14px;
    }
}

/* blog section */

.blog-section {
    background: #f9f9f9;
}

.blog-title {
    font-size: 32px;
    font-weight: 600;
}

/* Card */
.blog-card {
    text-align: center;
}

.blog-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* or 4/3 depending on your design */
    overflow: hidden;
    border-radius: 15px;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text */
.blog-heading {
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
}

.blog-text {
    font-size: 14px;
    color: #333333;
}

/* featured blog */

/* Section */
.featured-blog {
    background: #f9f9f9;
}

/* Tabs Wrapper */
.tab-wrapper {
    background: #eee;
    border-radius: 50px;
    padding: 6px;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    flex-wrap: wrap;
}


.tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 15px;
    border-radius: 30px;
    color: #333333;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}


.tab-btn:hover {
    color: #6f42c1;
    background: transparent;
}


.tab-btn.active {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    color: #fff;
}

/* Blog Content */
.blog-category {
    color: #333333;
    font-size: 14px;
}

.blog-heading {
    font-size: 32px;
    font-weight: 600;
    margin: 10px 0;
}

.sub-blog-heading {
    font-size: 20px;
    font-weight: 600;
    margin: 28px 0;
}

.blog-desc {
    color: #333333;
    margin-bottom: 20px;
}

/* Image */
.featured-img-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Responsive */
@media (max-width: 768px) {
    .tab-wrapper {
        border-radius: 20px;
    }

    .tab-btn {
        flex: 100%;
    }

    .blog-heading {
        font-size: 24px;
    }

    .featured-img-wrapper {
        height: 250px;
    }
}

.blog-link,
.blog-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Image default state */
.blog-img {
    transition: transform 0.6s ease;
    transform: scale(1);
}

/* Hover: Zoom In */
.blog-card:hover .blog-img {
    transform: scale(1.08);
}

/* Optional: subtle zoom-out when leaving (handled automatically by transition) */


/* Title hover */
.blog-title-link .sub-blog-heading {
    transition: color 0.3s ease;
}

.blog-title-link:hover .sub-blog-heading {
    color: #4B0082;
}


/* blog details page */

.blog-details-v2 {
    background: #f9f9fb;
}

/* HERO */
.bdv2-hero {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.bdv2-hero img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* subtle zoom hover */
.bdv2-hero:hover img {
    transform: scale(1.03);
}

/* Overlay */
.bdv2-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: #fff;
}


.bdv2-meta {
    font-size: 14px;
    opacity: 0.85;
}


.bdv2-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #333333;
}

/* Highlight */
.bdv2-highlight {
    font-size: 18px;
    font-weight: 600;
    background: #f1ecff;
    padding: 18px 22px;
    border-left: 5px solid #6f42c1;
    border-radius: 12px;
}

/* Headings */
.bdv2-content h3 {
    margin-top: 35px;
    font-weight: 600;
}

/* Quote */
.bdv2-quote {
    margin: 25px 0;
    padding: 18px 22px;
    background: #fff;
    border-left: 5px solid #6f42c1;
    font-style: italic;
    border-radius: 12px;
}

/* List */
.bdv2-list {
    padding-left: 20px;
}

.bdv2-list li {
    margin-bottom: 12px;
}

/* ========================= */
/* 📱 RESPONSIVE DESIGN */
/* ========================= */

@media (max-width: 992px) {
    .bdv2-title {
        font-size: 32px;
    }

    .bdv2-overlay {
        padding: 30px;
    }

    .bdv2-hero img {
        height: 70vh;
    }
}

@media (max-width: 768px) {
    .bdv2-title {
        font-size: 26px;
    }

    .bdv2-meta {
        font-size: 13px;
    }

    .bdv2-overlay {
        padding: 20px;
    }

    .bdv2-hero img {
        height: 60vh;
    }

    .bdv2-highlight {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .bdv2-title {
        font-size: 22px;
    }

    .bdv2-hero img {
        height: 50vh;
    }

    .bdv2-content {
        padding: 0 10px;
    }
}

/* career teams cards */

/* CARD */
.teams-card {
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    /* border: 2px solid #000; ✅ BORDER ADDED */
}

.teams-card-lg {
    height: 220px;
}

/* IMAGE */
.teams-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MOBILE SLIDER */
.teams-slider {
    display: none;
}

/* SLIDE */
.teams-slide {
    min-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

/* BUTTONS */
.teams-slider-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #6f42c1;
    color: #fff;
    border: none;
    padding: 5px 14px;
    border-radius: 50%;
    z-index: 5;
}

.teams-prev-btn {
    left: 10px;
}

.teams-next-btn {
    right: 10px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

    .teams-desktop-grid {
        display: none;
    }

    .teams-slider {
        display: flex;
        overflow: hidden;
        scroll-behavior: smooth;
    }

    .teams-slider-btn {
        display: block;
    }
}

.text-muted {
    --bs-text-opacity: 1;
    color: rgb(33 37 41) !important;
}

/* process section */

/* Section */
.process-section {
    background: #f5f7ff;
    padding: 70px 0;
}

/* Phase Card */
.phase-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    border-left: 6px solid #6a11cb;
}

.phase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Phase Label */
.phase-label {
    font-size: 14px;
    font-weight: 600;
    color: #6a11cb;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Title */
.phase-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c54;
    margin-bottom: 15px;
}

/* Subtitle */
.phase-subtitle {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333333;
}

/* Paragraph */
.phase-card p {
    font-size: 16px;
    color: #333333;
    margin-bottom: 10px;
}

/* List */
.phase-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.phase-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333333;
}

.phase-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 2px;
    color: #6a11cb;
    font-size: 10px;
}



/* Responsive */
@media (max-width: 767px) {
    .phase-card {
        padding: 20px;
    }
}

.blog-card a {
    text-decoration: none;
    color: inherit;
}

.blog-card a:hover {
    text-decoration: none;
}

.blog-details-v2 {
    background: #f9f9fb;
    padding: 30px 30px 30px;
}

.blog-img {
    transition: transform 0.6s ease;
    transform: scale(1);
    margin-bottom: 30px;
}


/* BLOG DETAILS */
.blog-content {
    background: #f9fafc;
}

.bdv2-hero img {
    border-radius: 16px;
    max-height: 550px;
    object-fit: cover;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
}

.bdv2-content {
    margin: auto;
    font-size: 17px;
    line-height: 1.8;
    color: #66358b;
}

/* Headings inside blog */
.bdv2-content h1,
.bdv2-content h2,
.bdv2-content h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #111;
}

/* Paragraph spacing */
.bdv2-content p {
    margin-bottom: 16px;
}

/* Add nice spacing */
.bdv2-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

/* META */
.bdv2-meta {
    color: #777;
    font-size: 14px;
}

/* TITLE */
.blog-title {
    font-size: 36px;
    font-weight: 700;
}

.featured-blog {
    background: #f9fafc;
}

.featured-img-wrapper {
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Left content */
.blog-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-desc {
    color: #333333;
    font-size: 16px;
    margin-bottom: 20px;
}

/* benifits */

.benefits-section {
    background: #f9fafc;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1rem;
}

.benefit-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-6px);

    /* Purple Border */
    border-color: #c084fc;

    /* Glow Shadow */
    box-shadow:
        0 15px 40px rgba(192, 132, 252, 0.24),
        0 0 0 5px rgba(192, 132, 252, 0.08);
}

.benefit-number {
    font-size: 30px;
    font-weight: 700;
    color: #f0e5f7;
    position: absolute;
    top: 10px;
    right: 20px;
}

.benefit-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #333333;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .benefit-number {
        font-size: 30px;
    }
}



/* how we oprate section (services) */



.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d0c57;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #333333;
    font-size: 16px;
}

.content-box h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.content-box .label {
    color: #66358b;
    font-weight: 600;
    margin-bottom: 8px;
}

.content-box p {
    font-size: 16px;
    color: #333333;
}

.content-box ul {
    padding-left: 18px;
    margin-top: 10px;
}

.content-box ul li {
    font-size: 16px;
    margin-bottom: 6px;
    color: #333333;
}

/* Image placeholder styling */
.image-box {
    /* background: #e9e9ec; */
    border-radius: 36px;
    padding: 40px;
    text-align: center;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-box img {
    max-width: 100%;
    height: auto;
    border-radius: 36px;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .section-title {
        font-size: 1.8rem;
    }

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

    .content-box ul {
        text-align: left;
        display: inline-block;
    }
}

@media (max-width: 576px) {
    .image-box {
        padding: 25px;
        min-height: 200px;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }
}

/* ================================
   TECHNOLOGY MATURITY SECTION
================================ */

.maturity-model-section {
    position: relative;
    /* background: #f5f5f5; */
    padding: 90px 20px;
    overflow: hidden;
}

/* =================================
   DECORATIVE SHAPES
================================= */

.maturity-shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 2.05;
}

/* LEFT SHAPE */

.maturity-left-shape {
    left: -90px;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
}

/* RIGHT SHAPE */

.maturity-right-shape {
    right: -90px;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
}

/* =================================
   CONTAINER
================================= */

.maturity-model-section .container {
    position: relative;
    z-index: 2;
    max-width: 920px;
}

/* =================================
   HEADER
================================= */

.maturity-header {
    text-align: center;
}

/* =================================
   SUBTITLE
================================= */

.maturity-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #2b0a5c;
    margin-bottom: 8px;
    line-height: 1.2;
}

/* =================================
   DESCRIPTION
================================= */

.maturity-description {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
    font-weight: 400;
}

/* =================================
   HIGHLIGHT BOX
================================= */

.maturity-highlight-box {
    max-width: 720px;
    margin: 35px auto 0;
    background: linear-gradient(180deg, #7b00c7 0%, #3d005f 100%);
    border-radius: 50px;
    padding: 20px 28px;
    box-shadow: 0 12px 25px rgba(61, 0, 95, 0.12);
    text-align: center;
    position: relative;
    z-index: 2;
}

.maturity-highlight-box p {
    margin: 0;
    color: #fff;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
}

/* ===================================
   TABLET
=================================== */

@media (max-width: 991px) {

    .maturity-model-section {
        padding: 75px 20px;
    }

    .maturity-description {
        font-size: 16px;
    }

    .maturity-highlight-box {
        max-width: 650px;
        border-radius: 35px;
    }

    .maturity-left-shape,
    .maturity-right-shape {
        width: 160px;
    }

    .maturity-left-shape {
        left: -70px;
    }

    .maturity-right-shape {
        right: -70px;
    }
}

/* ===================================
   MOBILE
=================================== */

@media (max-width: 767px) {

    .maturity-model-section {
        padding: 60px 15px;
    }

    .maturity-subtitle {
        font-size: 18px;
    }

    .maturity-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .maturity-highlight-box {
        margin-top: 28px;
        border-radius: 22px;
        padding: 16px 18px;
    }

    .maturity-highlight-box p {
        font-size: 15px;
    }

    .maturity-left-shape,
    .maturity-right-shape {
        width: 100px;
        opacity: 0.03;
    }

    .maturity-left-shape {
        left: -40px;
    }

    .maturity-right-shape {
        right: -40px;
    }
}

/* =========================================
   ROSOI FRAMEWORK SECTION
========================================= */

.rosoi-framework-section {
    position: relative;
    padding: 50px 20px;
    overflow: hidden;
}

/* Decorative Shapes */

.rosoi-bg-shape {
    position: absolute;
    opacity: 0.06;
    z-index: 1;
    pointer-events: none;
}

.rosoi-shape-left {
    left: -120px;
    top: 120px;
    width: 260px;
}

.rosoi-shape-right {
    right: -100px;
    bottom: 120px;
    width: 240px;
}

/* Container */

.rosoi-framework-section .container {
    position: relative;
    z-index: 2;
    max-width: 1250px;
}

/* Left Content */

.rosoi-content-area {
    padding-right: 20px;
}

.rosoi-main-heading {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.05;
    color: #1a0027;
    margin-bottom: 35px;
}

.rosoi-main-heading span {
    font-style: italic;
}

.rosoi-description {
    font-size: 18px;
    line-height: 1.45;
    color: #333333;
    margin-bottom: 28px;
    max-width: 360px;
}

/* Right Image */

.rosoi-graph-wrapper {
    text-align: center;
}

.rosoi-graph-image {
    width: 100%;
    max-width: 760px;
    height: auto;
    object-fit: contain;
}

/* Purple Bar */

.rosoi-stage-bar {
    margin: 55px auto 30px;
    max-width: 1080px;
    background: linear-gradient(90deg, #32004e 0%, #7400b8 100%);
    border-radius: 60px;
    padding: 18px 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(84, 0, 132, 0.12);
}

.rosoi-stage-bar p {
    margin: 0;
    color: #fff;
    font-size: 18px;
}

/* Feature List */

/* ==========================
   FEATURE LIST
========================== */

.rosoi-feature-list {
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 18px;
    margin: 40px auto;
}

/* FEATURE ITEM */

.rosoi-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 14px 22px;
    border-radius: 50px;

    /* Border */
    border: 1px solid rgba(82, 0, 128, 0.08);

    /* Default Shadow */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);

    min-height: 64px;
    white-space: nowrap;

    transition: all 0.35s ease;
}

/* Hover Effect */
.rosoi-feature-item:hover {

    transform: translateY(-4px);

    /* Purple Border */
    border-color: #c084fc;

    /* Glow Shadow */
    box-shadow:
        0 12px 28px rgba(192, 132, 252, 0.22),
        0 0 0 5px rgba(192, 132, 252, 0.08);
}

/* ICON */

.rosoi-feature-item i {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: linear-gradient(180deg, #7b00c7 0%, #3d005f 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

/* TEXT */

.rosoi-feature-item span {
    font-size: 16px;
    color: #1f1f1f;
    font-weight: 600;
    line-height: 1.3;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {

    .rosoi-feature-list {
        gap: 14px;
    }

    .rosoi-feature-item {
        padding: 12px 18px;
    }

    .rosoi-feature-item span {
        font-size: 15px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {

    .rosoi-feature-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
    }

    .rosoi-feature-item {
        width: 100%;
        padding: 12px 14px;
        border-radius: 18px;
        min-height: 58px;
        gap: 10px;
    }

    .rosoi-feature-item i {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 13px;
    }

    .rosoi-feature-item span {
        font-size: 13px;
        white-space: normal;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px) {

    .rosoi-feature-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .rosoi-feature-item {
        padding: 10px 12px;
    }

    .rosoi-feature-item span {
        font-size: 12px;
    }
}

/* Button */

.rosoi-consult-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #6d00a8;
    color: #6d00a8;
    padding: 12px 34px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.rosoi-consult-btn:hover {
    background: #6d00a8;
    color: #fff;
}

/* =========================================
   LARGE SCREEN
========================================= */

@media (max-width: 1400px) {

    .rosoi-main-heading {
        font-size: 54px;
    }

    .rosoi-description {
        font-size: 18px;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .rosoi-framework-section {
        padding: 80px 20px;
    }

    .rosoi-content-area {
        text-align: center;
        padding-right: 0;
    }

    .rosoi-main-heading {
        font-size: 48px;
        margin-bottom: 24px;
    }

    .rosoi-description {
        max-width: 100%;
        font-size: 17px;
        margin-left: auto;
        margin-right: auto;
    }

    .rosoi-graph-wrapper {
        margin-top: 10px;
    }

    .rosoi-stage-bar {
        margin-top: 45px;
        padding: 16px 22px;
    }

    .rosoi-stage-bar p {
        font-size: 18px;
    }

    .rosoi-feature-list {
        gap: 18px 26px;
    }

    .rosoi-feature-list span {
        font-size: 16px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .rosoi-framework-section {
        padding: 65px 15px;
    }

    .rosoi-main-heading {
        font-size: 38px;
    }

    .rosoi-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .rosoi-stage-bar {
        border-radius: 24px;
        padding: 14px 16px;
        margin-top: 35px;
        margin-bottom: 24px;
    }

    .rosoi-stage-bar p {
        font-size: 15px;
        line-height: 1.5;
    }

    .rosoi-feature-list {
        gap: 14px 18px;
        margin-bottom: 35px;
    }

    .rosoi-feature-list span {
        font-size: 14px;
    }

    .rosoi-consult-btn {
        width: 100%;
        max-width: 280px;
        font-size: 16px;
        padding: 11px 24px;
    }

    .rosoi-shape-left,
    .rosoi-shape-right {
        width: 120px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .rosoi-main-heading {
        font-size: 32px;
    }

    .rosoi-description {
        font-size: 14px;
    }

    .rosoi-feature-list {
        justify-content: flex-start;
    }

    .rosoi-feature-list span {
        font-size: 13px;
    }
}

/* ===================================
    INDUSTRY UNDERSTANDING SECTION
    =================================== */

.industry-understanding-section {
    background: #ffffff;
    overflow: hidden;
    padding: 50px 0 !important;
}

.industry-understanding-box {
    background: #f4eef9;
    border-radius: 22px;
    padding: 28px 24px;
}

/* TITLE */

.industry-understanding-title {
    font-size: 28px;
    line-height: 1.35;
    font-weight: 700;
    color: #333333;
    max-width: 900px;
    margin-bottom: 10px;
}

.industry-understanding-subtitle {
    font-size: 17px;
    color: #333333;
    margin-bottom: 20px;
}

/* CARD */

.industry-understanding-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    border: 1px solid #ebe4f3;
    transition: all 0.35s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

/* HOVER EFFECT */

.industry-understanding-card:hover {
    transform: translateY(-5px);

    border-color: #c084fc;

    box-shadow:
        0 10px 25px rgba(192, 132, 252, 0.22),
        0 0 0 4px rgba(192, 132, 252, 0.08);
}

/* DOT */

.industry-dot {
    width: 7px;
    height: 7px;
    min-width: 7px;
    border-radius: 50%;
    background: #6d3fa7;
}

.industry-understanding-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.industry-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

/* TEXT */

.industry-understanding-card span:last-child {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #333333;
}

/* BOTTOM TEXT */

.industry-understanding-bottom-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333333;
    text-align: center;
    max-width: 850px;
    margin: 22px auto 0;
}

/* ===================================
    RESPONSIVE
    =================================== */

@media (max-width: 991px) {

    .industry-understanding-box {
        padding: 24px 18px;
    }

    .industry-understanding-title {
        font-size: 24px;
    }

}

@media (max-width: 767px) {

    .industry-understanding-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .industry-understanding-box {
        padding: 18px 14px;
        border-radius: 18px;
    }

    .industry-understanding-title {
        font-size: 19px;
        line-height: 1.4;
    }

    .industry-understanding-subtitle {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .industry-understanding-card {
        padding: 10px 10px;
        border-radius: 10px;
        gap: 8px;
        min-height: 56px;
    }

    .industry-dot {
        width: 6px;
        height: 6px;
        min-width: 6px;
    }

    .industry-understanding-card span:last-child {
        font-size: 11px;
        line-height: 1.3;
    }

    .industry-understanding-bottom-text {
        font-size: 12px;
        line-height: 1.6;
        margin-top: 18px;
    }

}

@media (max-width: 575px) {

    .industry-understanding-card span:last-child {
        font-size: 10.5px;
    }

}

/* ===================================
    BUSINESS CHALLENGES SECTION
    =================================== */

.biz-challenges-section {
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

/* TITLE */


/* CARD */

.biz-challenge-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 32px 28px;
    height: 100%;
    border: 1.5px solid #dcc8ef;

    transition: all 0.35s ease;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.06),
        0 3px 8px rgba(124, 58, 237, 0.08);
}

/* HOVER */

.biz-challenge-card:hover {
    transform: translateY(-8px);

    border-color: #a855f7;

    box-shadow:
        0 18px 45px rgba(124, 58, 237, 0.18),
        0 0 0 5px rgba(168, 85, 247, 0.08);
}

/* ICON */

.biz-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #f5ecff;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;
    overflow: hidden;
}

.biz-icon-wrap img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

/* HEADING */

.biz-card-title {
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
    color: #34105e;
    margin-bottom: 14px;
}

/* TEXT */

.biz-card-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 0;
}

/* ===================================
    LAPTOP
    =================================== */

@media (max-width: 1399px) {



    .biz-card-title {
        font-size: 24px;
    }

}

/* ===================================
    TABLET
    =================================== */

@media (max-width: 991px) {



    .biz-challenge-card {
        padding: 26px 22px;
        border-radius: 22px;
    }

    .biz-icon-wrap {
        width: 58px;
        height: 58px;
        border-radius: 16px;
        margin-bottom: 18px;
    }

    .biz-card-title {
        font-size: 22px;
    }

    .biz-card-text {
        font-size: 15px;
    }

}

/* ===================================
    MOBILE
    =================================== */

@media (max-width: 767px) {

    .biz-challenges-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }



    .biz-challenges-section .row {
        --bs-gutter-x: 14px;
        --bs-gutter-y: 14px;
    }

    .biz-challenge-card {
        padding: 20px 18px;
        border-radius: 18px;
    }

    .biz-icon-wrap {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        margin-bottom: 16px;
    }

    .biz-icon-wrap img {
        width: 28px;
        height: 28px;
    }

    .biz-card-title {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .biz-card-text {
        font-size: 14px;
        line-height: 1.6;
    }

}

/* ===================================
    SMALL MOBILE
    =================================== */

@media (max-width: 575px) {

    .biz-challenges-title {
        font-size: 26px;
    }

    .biz-challenge-card {
        padding: 18px 16px;
    }

    .biz-icon-wrap {
        width: 48px;
        height: 48px;
    }

    .biz-card-title {
        font-size: 17px;
    }

    .biz-card-text {
        font-size: 13px;
    }

}

/* ============================= */
/* BUSINESS OUTCOMES */
/* ============================= */

.bo-section {
    background: #f8f8f8;
    overflow: hidden;
}

/* LEFT CONTENT */

.bo-content {
    max-width: 420px;
}

.bo-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin: 0;
}

/* RIGHT WRAPPER */

.bo-wrapper {
    background: #f3edf8;
    border-radius: 28px;
    padding: 28px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* CARD */

.bo-card {
    background: #fff;
    border-radius: 16px;
    padding: 18px 22px;

    display: flex;
    align-items: flex-start;
    gap: 14px;

    min-height: 88px;

    border: 2px solid transparent;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.08);

    transition: all 0.35s ease;
}

/* ICON */

.bo-card img {
    width: 40px;
    height: 40px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* TEXT */

.bo-card span {
    font-size: 16px;
    line-height: 1.45;
    color: #333333;
    font-weight: 500;
}

/* HOVER */

.bo-card:hover {
    transform: translateY(-6px);

    border-color: #c084fc;

    box-shadow:
        0 14px 35px rgba(192, 132, 252, 0.25),
        0 0 0 4px rgba(192, 132, 252, 0.08);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1199px) {

    .bo-desc {
        font-size: 18px;
    }
}

@media (max-width: 991px) {

    .bo-content {
        max-width: 100%;
        text-align: center;
        margin: auto;
    }

    .bo-desc {
        font-size: 17px;
    }

    .bo-wrapper {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {

    .bo-wrapper {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
        gap: 14px;
    }

    .bo-desc {
        font-size: 16px;
        line-height: 1.6;
    }

    .bo-card {
        min-height: auto;
        padding: 14px;
        gap: 10px;
    }

    .bo-card span {
        font-size: 13px;
        line-height: 1.4;
    }

    .bo-card img {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 480px) {

    .bo-wrapper {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 22px;
        padding: 14px;
        gap: 10px;
    }

    .bo-card {
        border-radius: 14px;
        gap: 8px;
        padding: 12px;
    }

    .bo-card img {
        width: 14px;
        height: 14px;
    }

    .bo-card span {
        font-size: 12px;
    }
}