:root {
    --primary-color: #1B5FD4;
    --secondary-color: #ffffff;
    --white-color: #ffffff;
    --black-color: #050505;
    --brown-color: #64B5F6;
    --primary-text-color: #111827;
    --gradient-color: linear-gradient(110deg, #1B5FD4 2.73%, #64B5F6 97.27%);
    --secondary-gradient-color: linear-gradient(140deg, #1B5FD4 1.26%, #90E0EF 100%);
    --site-bg: linear-gradient(135deg, #0A0B1D 0%, #131994 100%);
    --light-bg: #F5F8FC;
    --border-color: #E8EDF5;
    --text-muted: #5C6678;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    overflow-x: clip;
}

img,
svg,
video {
    max-width: 100%;
}

h1 {
    font-size: 60px;
    line-height: 1.15;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 34px;
}

h5 {
    font-size: 28px;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.fw-regular {
    font-weight: 400 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.site-btn {
    padding: 12px 25px;
    border-radius: 50px;
    background: var(--gradient-color);
    color: var(--white-color);
    min-width: 160px;
    cursor: pointer;
    border: 0;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.site-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.phone-cta-btn {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    background: var(--gradient-color);
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
}

.phone-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 154, 40, 0.4);
    color: var(--white-color);
}

.primary-btn {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
}

.primary-btn:hover {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.secondary-btn {
    background: var(--white-color);
    border: 1px solid var(--white-color);
    color: var(--primary-color);
}

.secondary-btn:hover {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--secondary-color);
}

.owl-carousel .owl-nav button {
    width: 30px !important;
    height: 30px !important;
    border-radius: 100% !important;
    background: var(--white-color) !important;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-50%);
}

.owl-carousel .owl-nav button.owl-next {
    right: -15px;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 15px;
}

.border-white-btn {
    background: transparent;
    border: 1px solid var(--white-color);
    color: var(--white-color);
}

.border-white-btn:hover {
    background: var(--white-color);
    border: 1px solid var(--white-color);
    color: var(--black-color);
}

.border-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.border-btn:hover {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
}

.site-input {
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #EEEEEE;
    background: var(--white-color);
    width: 100%;
    font-size: 14px;
    color: var(--black-color);
    resize: none;
}

textarea.site-input {
    border-radius: 20px;
}

.site-input::placeholder {
    color: #333333;
}

:focus {
    outline: none;
}

.site-input:focus {
    border-color: var(--primary-color);
}

.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.white-color {
    color: var(--white-color);
}

.black-color {
    color: var(--black-color);
}

.primary-text-color {
    color: var(--primary-text-color);
}

a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* legacy header - overridden by .site-header */
header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.site-logo {
    width: 260px;
}

.mnw-0 {
    min-width: 0 !important;
}

.section-padding {
    padding: 70px 0;
}

.gradient-text {
    display: inline-block;
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.intl-tel-input {
    width: 100%;
}

.left-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.form-check-input:focus {
    box-shadow: none;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.faq-accordion .accordion-body,
.faq-accordion .accordion-button {
    background: transparent;
    box-shadow: none !important;
    padding: 0;
    border-radius: 0;
    border: 0;
}

.faq-accordion .accordion-button {
    color: var(--black-color);
    font-size: 17px;
    font-weight: 600;
    padding-right: 40px;
}

.faq-accordion .accordion-button::after {
    width: 16px;
    height: 16px;
    background-size: 16px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='%23111111' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-item {
    background: transparent;
    border: 0;
    padding: 22px 4px;
    border-bottom: 1px solid #E3E3E3;
    border-radius: 0;
}

.faq-accordion .accordion-item:first-child {
    border-top: 1px solid #E3E3E3;
}

.faq-accordion .accordion-body {
    padding-top: 16px;
}

.faq-accordion .accordion-body p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.faq-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--black-color);
    margin-bottom: 14px;
}

.faq-list li:last-child {
    margin-bottom: 0;
}

.faq-list li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* FAQ left intro column */
.faq-heading {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--black-color);
    margin-bottom: 18px;
}

.faq-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 360px;
    margin-bottom: 30px;
}

.faq-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.faq-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    color: var(--black-color);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.faq-phone:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

@media (max-width: 575px) {
    .faq-heading {
        font-size: 34px;
    }
}

footer {
    background: var(--black-color);
    color: var(--white-color);
}

footer a {
    color: var(--white-color);
}

footer a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid var(--white-color);
    background: var(--black-color);
    padding: 10px 0;
}

.footer-rating {
    background: #F5F5F7;
    border-radius: 8px;
    color: var(--black-color);
    padding: 15px;
}

.talk-to-expert-btn {
    animation: blur-effect 1s ease-in-out infinite alternate;
}

@keyframes blur-effect {
    0% {
        opacity: 1;
    }

    100% {
        opacity: .5;
    }
}

.terms-of-use {
    background: rgb(233 244 238 / 1);
    color: var(--primary-text-color);
}

.content-header {
    padding: 130px 0 30px 0;
    background: var(--site-bg);
    color: var(--white-color);
}

.chat-icon {
    background: var(--gradient-color);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

#getInTouchModal .site-input {
    border-color: #d5d5d5;
    color: black;
    font-weight: 500;
}

#getInTouchModal .site-input::placeholder {
    color: #333333;
}

#getInTouchModal h3 {
    color: var(--white-color);
    background: var(--primary-color);
    padding: 10px 20px;
    font-size: 30px;
}

button.close-btn {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    background: var(--primary-color);
    color: white;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 2;
}

.black_friday {
    width: 290px;
    height: 100px;
    color: #fff;
    position: fixed;
    bottom: 30px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px solid #fff;
    border-radius: 15px;
    box-shadow: 0 0 1px 2px #f9a636, 0 0 1px 2px #f9a636 inset;
    filter: drop-shadow(0 0 5px #fc0505);
    z-index: 9;
    cursor: pointer;
    animation: 1s linear infinite bf-animate;
}

.black_friday .black_friday_top {
    width: 187px;
    height: 34px;
    background: 0 0;
    color: #fff;
    border: 2px solid #fcffeb;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 0 1px 2px #f9a636, 0 0 1px 2px #f9a636 inset;
    filter: drop-shadow(0 0 5px #003870);
    margin-bottom: 5px;
    animation: 1s linear infinite bf-animate-2;
}

.black_friday .black_friday_top p {
    font-size: 20px !important;
    margin-bottom: 0;
    color: #fff;
    font-family: Yantramanav, sans-serif;
    padding: 0;
}

.black_friday h2 {
    font-size: 23px !important;
    -webkit-text-stroke: 1.5px #f9a636;
    text-shadow: 1px 2px 15px #fc0505;
    filter: drop-shadow(0 0 25px #fc0505);
    font-weight: 500;
    margin: 6px 0 0;
    color: #fff;
    font-family: Yantramanav, sans-serif;
}

.black_friday h2 span {
    padding-left: 5px;
    -webkit-text-stroke: 1px #fff;
    text-shadow: 1px 2px 15px #fff;
    filter: drop-shadow(0 0 25px #003870);
    color: #fff;
    font-family: Yantramanav, sans-serif;
}

@keyframes bf-animate {

    0%,
    100% {
        filter: drop-shadow(0 0 5px #fc0505);
        transform: translateY(-5px);
    }

    50% {
        filter: drop-shadow(0 0 5px #003870);
        box-shadow: 0 0 1px 2px #643c05, 0 0 1px 2px #ab6c17 inset;
        border-color: #be6e02;
        transform: translateY(0);
    }

    80% {
        filter: drop-shadow(0 0 5px #003870);
        box-shadow: 0 0 1px 2px #ece10a, 0 0 1px 2px #d2ec25 inset;
        border-color: #dac609;
    }
}

@keyframes bf-animate-2 {

    0%,
    100% {
        filter: drop-shadow(0 0 5px #fc0505);
    }

    50% {
        filter: drop-shadow(0 0 5px #003870);
        box-shadow: 0 0 1px 2px #e8ff26, 0 0 1px 2px #f8ff09 inset;
        border-color: #000;
        transform: translateX(0);
    }

    80% {
        filter: drop-shadow(0 0 5px #003870);
        box-shadow: 0 0 1px 2px #e9ff30, 0 0 1px 2px #c3ff2f inset;
        border-color: #000;
    }
}

@media screen and (max-width: 1399.5px) {
    h1 {
        font-size: 43px;
    }
}

@media screen and (max-width: 1199.5px) {
    h1 {
        font-size: 38px;
    }

    h5 {
        font-size: 24px;
    }
}

@media screen and (max-width: 991.5px) {
    br {
        display: none;
    }

    body {
        font-size: 14px;
    }

    h1 {
        font-size: 42px;
    }

    h2,
    h3 {
        font-size: 35px;
    }

    .fs-18 {
        font-size: 16px;
    }

    .fs-20 {
        font-size: 18px;
    }

    .fs-22 {
        font-size: 20px;
    }

    .fs-24 {
        font-size: 22px;
    }

    .section-padding {
        padding: 56px 0;
    }
}

@media screen and (max-width: 575.5px) {
    h1 {
        font-size: 32px;
    }

    h2,
    h3 {
        font-size: 25px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 20px;
    }

    .fs-18 {
        font-size: 15px;
    }

    .fs-20 {
        font-size: 16px;
    }

    .fs-22 {
        font-size: 18px;
    }

    .fs-24 {
        font-size: 19px;
    }

    .section-padding {
        padding: 40px 0;
    }
}

/* ===== App Nest Studios ===== */
body {
    color: var(--black-color);
    background: var(--white-color);
}

.site-header {
    top: 0;
    z-index: 1050;
    padding: 0;
}

.site-header .navbar {
    padding: 14px 0;
}

.site-logo {
    width: 180px;
    height: auto;
}

.site-header .nav-link {
    color: var(--black-color);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 14px !important;
    border-radius: 8px;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--primary-color);
}

.site-header .navbar-toggler {
    padding: 4px 8px;
}

.site-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (min-width: 992px) {

    .has-megamenu:hover>.dropdown-menu,
    .has-megamenu.show>.dropdown-menu {
        display: block;
    }
}

.header-phone {
    color: var(--black-color);
    font-weight: 500;
    font-size: 15px;
    padding: 12px 20px;
    border: 1px solid var(--black-color);
    border-radius: 50px;
    text-decoration: none;
}

.header-phone:hover {
    background: var(--black-color);
    color: var(--white-color);
}

.megamenu {
    left: 50% !important;
    transform: translateX(-50%);
    width: min(1200px, 96vw);
    margin-top: 0 !important;
    padding-top: 16px !important;
    background: transparent !important;
    border-radius: 20px !important;
    box-shadow: none;
    overflow: visible;
}

.megamenu-compact {
    width: min(720px, 96vw);
}

.megamenu-inner {
    padding: 38px 40px;
    background: linear-gradient(108deg, #1f63d6 0%, #2f7be0 48%, #5aa6ec 100%);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(27, 95, 212, 0.25);
}

.megamenu-featured {
    background: transparent;
    padding: 0 28px 0 0;
}

.megamenu-label {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
}

.megamenu-featured-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 0;
}

.megamenu-featured-img {
    max-height: 180px;
    object-fit: cover;
    width: 100%;
}

.megamenu-links {
    padding: 0 0 0 12px;
}

.megamenu-col {
    margin-bottom: 26px;
}

.megamenu-col h6 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
}

.megamenu-col h6 a {
    color: #fff;
}

.megamenu-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megamenu-col ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 9px;
}

.megamenu-col ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
}

.megamenu-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    display: block;
}

.megamenu-col ul li a:hover {
    color: #fff;
}

.megamenu-service-nav .megamenu-featured {
    padding: 0 28px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.megamenu-service-nav .megamenu-links {
    padding: 0 0 0 12px;
}

.megamenu-col-wide {
    margin-bottom: 0;
}

.megamenu-col-wide h6 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #fff;
}

.industries-nav-scrol-bar {
    max-height: 300px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.45) transparent;
}

.industries-nav-scrol-bar::-webkit-scrollbar {
    width: 6px;
}

.industries-nav-scrol-bar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.45);
    border-radius: 999px;
}

.industries-nav-scrol-bar li a i {
    margin-right: 8px;
    font-size: 11px;
    opacity: 0.85;
}

/* invisible bridge so cursor can travel from link to menu without closing */
.has-megamenu .megamenu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 18px;
}

.hero-section, .page-hero {
    padding: 150px 0 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: url(../images/hero-bg.png) no-repeat 100% 100%;
    background-size: 100% 100%;
}

.hero-title {
    font-family: 'Karla', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 400;
    color: var(--black-color);
}

.hero-title .gradient-text {
    font-weight: 700;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 520px;
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    display: block;
}

.hero-phone-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 1px solid var(--black-color);
    border-radius: 50px;
    color: var(--black-color);
    font-weight: 500;
    font-size: 17px;
    text-decoration: none;
}

.hero-phone-outline:hover {
    background: var(--black-color);
    color: var(--white-color);
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.section-title {
    font-family: 'Karla', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 500;
}

.section-title .highlight {
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
}

.stat-card h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.about-company-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.ac-stat {
    background: #F6F6F6;
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ac-stat-text {
    flex: 0 0 50%;
    padding: 30px;
}

.ac-stat-text h3 {
    font-size: 40px;
    font-weight: 700;
    color: var(--black-color);
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}

.ac-stat-text p {
    font-size: 16px;
    color: #050505;
    margin: 0;
}

.ac-stat-img {
    flex: 0 0 50%;
    align-self: stretch;
}

.ac-stat-img img {
    width: 100%;
    height: 250px;
    border-radius: 16px;
    margin: -1px;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #F6F6F6;
}
.terms-bg{
    background: var(--gradient-color);
}
.white-text{
    color: #fff !important;
}
.ac-text {
    display: flex;
    align-items: flex-start;
    padding: 20px 24px;
}

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

.text-dark {
    color: #050505 !important;
}

.ac-text p {
    font-size: 18px;
    line-height: 1.25;
    color: #050505;
    margin: 0;
}

.build-apps-section {
    background: #050505;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

.build-apps-content {
    position: relative;
    z-index: 2;
    max-width: 770px;
}

.build-apps-title {
    font-family: 'Karla', sans-serif;
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 24px;
    max-width: 720px;
}

.build-apps-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    max-width: 540px;
    margin-bottom: 16px;
}

.build-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 30px 24px;
    height: 100%;
}

.build-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: var(--white-color);
    font-size: 24px;
    margin-bottom: 24px;
}

.build-card-icon i {
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.build-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.build-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.build-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
}
.computer-icon{
    width: 50px;
}
.build-card ul li:last-child {
    margin-bottom: 0;
}
.speed-card:hover .computer-icon, .speed-card.is-active .computer-icon{
    filter: brightness(0) invert(1);
}

.build-card ul li i {
    color: var(--primary-color);
    font-size: 13px;
}

.build-apps-mockup {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 48%;
    object-fit: cover;
    object-position: left center;
    z-index: 1;
}

/* Speed & Standards card grid */
.speed-card {
    position: relative;
    overflow: hidden;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 48px 54px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.speed-card .speed-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.speed-card-body {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.speed-card-body h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.speed-card-body p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.speed-card .speed-watermark {
    position: absolute;
    top: 0;
    right: 40px;
    font-size: 150px;
    line-height: 1;
    color: rgba(27, 95, 212, 0.04);
    z-index: 1;
    width: 100px;
    pointer-events: none;
}

.speed-card .speed-arrow {
    position: absolute;
    bottom: 40px;
    right: 54px;
    width: 56px;
    height: 44px;
    border-radius: 10px;
    background: var(--gradient-color);
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 2;
    transition: all 0.3s ease;
}

.speed-card .speed-arrow:hover {
    color: var(--white-color);
    transform: translateX(4px);
}

/* highlighted: first card (active) + hover */
.speed-card.is-active,
.speed-card:hover {
    background: var(--gradient-color);
    border-color: transparent;
    color: var(--white-color);
}

.speed-card.is-active .speed-icon,
.speed-card.is-active .speed-card-body h5,
.speed-card:hover .speed-icon,
.speed-card:hover .speed-card-body h5 {
    color: var(--white-color);
}

.speed-card.is-active .speed-card-body p,
.speed-card:hover .speed-card-body p {
    color: rgba(255, 255, 255, 0.85);
}

.speed-card.is-active .speed-watermark,
.speed-card:hover .speed-watermark {
    color: rgba(255, 255, 255, 0.15);
}

.speed-card.is-active .speed-arrow,
.speed-card:hover .speed-arrow {
    background: var(--white-color);
    color: var(--primary-color);
}

/* Speed & Standards horizontal expanding accordion */
.speed-accordion {
    display: flex;
    gap: 16px;
    width: 100%;
    min-height: 320px;
}

.speed-panel {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: var(--white-color);
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

/* vertical collapsed label */
.sp-vertical {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    writing-mode: vertical-rl;
    white-space: nowrap;
    font-size: 17px;
    font-weight: 700;
    color: var(--black-color);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* expanded content */
.sp-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 46px 50px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease 0.15s;
}

.sp-text {
    max-width: 460px;
}

.sp-text h3 {
    color: var(--white-color);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    white-space: nowrap;
}

.sp-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-width: 360px;
}

.sp-image {
    align-self: flex-end;
}

.sp-image img {
    width: 230px;
    max-width: 40vw;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* expanded state: hover (desktop) or active (default first / touch) */
.speed-panel:hover,
.speed-panel.is-active {
    flex: 6 1 0;
    border-color: transparent;
    background: var(--gradient-color);
    box-shadow: 0 24px 50px rgba(27, 95, 212, 0.25);
}

/* when any panel is hovered, the active one collapses */
.speed-accordion:hover .speed-panel.is-active:not(:hover) {
    flex: 1 1 0;
    background: var(--white-color);
    border-color: var(--border-color);
    box-shadow: none;
}

.speed-panel:hover .sp-vertical,
.speed-panel.is-active .sp-vertical {
    opacity: 0;
}

.speed-accordion:hover .speed-panel.is-active:not(:hover) .sp-vertical {
    opacity: 1;
}

.speed-panel:hover .sp-content,
.speed-panel.is-active .sp-content {
    opacity: 1;
    visibility: visible;
}

.speed-accordion:hover .speed-panel.is-active:not(:hover) .sp-content {
    opacity: 0;
    visibility: hidden;
}

/* Bento (Simple / Clean / Integrated) */
.bento {
    position: relative;
    width: 100%;
    aspect-ratio: 1520 / 750;
}

.bento-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bento-dot {
    position: absolute;
    width: 13px;
    height: 13px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 0 6px rgba(27, 95, 212, 0.15), 0 0 14px 2px rgba(27, 95, 212, 0.5);
}

.bento-card {
    position: absolute;
    overflow: hidden;
    border-radius: 28px;
    padding: 34px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.bento-icon {
    font-size: 30px;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.bento-text {
    position: relative;
    z-index: 2;
}

.bento-text h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.bento-text p {
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.bento-watermark {
    position: absolute;
    width: calc(80% - 30px);
    right: 15px;
    bottom: 15px;
    z-index: 1;
    pointer-events: none;
}
.speed-standards{
    background: #F9F9F9;
}
.bento-watermark img{
    width: 100%;
    object-fit: contain;
}
/* dark cards: Simple + Integrated */
.bento-simple,
.bento-integrated {
    background: #0A0A0A;
    color: var(--white-color);
}

.bento-simple .bento-icon,
.bento-integrated .bento-icon {
    color: var(--white-color);
}

.bento-simple .bento-text p,
.bento-integrated .bento-text p {
    color: rgba(255, 255, 255, 0.62);
}

.bento-simple .bento-watermark,
.bento-integrated .bento-watermark {
    color: rgba(255, 255, 255, 0.04);
}

/* center card: Clean */
.bento-clean {
    background: linear-gradient(145deg, #1F6FE0 0%, #3B8FE8 45%, #86D6EF 100%);
    color: var(--white-color);
}

.bento-clean .bento-icon {
    color: var(--white-color);
}

.bento-clean .bento-text p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 430px;
}

.bento-clean .bento-watermark {
    color: rgba(255, 255, 255, 0.12);
    font-size: 300px;
}

/* desktop positions (mapped from Figma 1520x750 coordinate space) */
.bento-simple {
    left: 0;
    top: 3.07%;
    width: 24.01%;
    height: 48.67%;
}

.bento-clean {
    left: 25.33%;
    top: 3.07%;
    width: 49.34%;
    height: 86.67%;
}

.bento-integrated {
    left: 75.99%;
    top: 41.07%;
    width: 24.01%;
    height: 48.67%;
}

@media screen and (max-width: 991.5px) {
    .bento {
        aspect-ratio: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .bento-watermark{
        display: none;
    }
    .bento-lines,
    .bento-dot {
        display: none;
    }

    .bento-card {
        position: static;
        width: 100% !important;
        height: auto !important;
    }

    .bento-watermark {
        font-size: 180px;
    }
}

/* ===== Tap Into Our Game-Changing Insights ===== */
.insights-section {
    background: linear-gradient(100.15deg, #1B5FD4 2.6%, #90E0EF 100%);
    padding: 90px 0 100px;
    color: #fff;
}

.insights-header {
    max-width: 720px;
    margin: 0 auto 50px;
}

.insights-title {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.insights-subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.insight-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(10, 40, 90, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10, 40, 90, 0.18);
}

.insight-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.insight-card-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.insight-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insight-card-body h5 {
    font-size: 20px;
    font-weight: 700;
    color: #001C4C;
    margin-bottom: 12px;
}

.insight-card-body p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex: 1;
}

.insight-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--black-color);
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.insight-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

.insight-link i {
    font-size: 13px;
}

.insights-show-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 14px 36px;
    background: #fff;
    color: var(--black-color);
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insights-show-more:hover {
    color: var(--black-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
    .insights-title {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .insights-section {
        padding: 60px 0 70px;
    }

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

    .insight-card-body {
        padding: 22px 24px 26px;
    }
}

/* ===== CTA: Let's Bring Your Vision to Life ===== */
.vision-cta {
    position: relative;
    overflow: hidden;
    background: #0a0a0c;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 47% 53%;
    align-items: center;
    min-height: 360px;
    padding-top: 20px;
}

.vision-cta-visual {
    position: relative;
    align-self: stretch;
    min-height: 360px;
}

.vision-cta-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vision-cta-content {
    padding: 60px 70px 80px 70px;
}

.vision-cta-content h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.vision-cta-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.6;
    max-width: 420px;
    margin-bottom: 34px;
}

.vision-cta-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.vision-cta-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.vision-cta-phone:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
    .vision-cta {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .vision-cta-visual {
        min-height: 240px;
    }

    .vision-cta-content {
        padding: 40px 30px;
    }

    .vision-cta-content h2 {
        font-size: 32px;
    }
}

.contact-info-card {
    background: var(--white-color);
    border: 1px solid #e6e9ef;
    border-radius: 20px;
    padding: 34px 32px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.contact-info-card:hover {
    border-color: transparent;
    box-shadow: 0 18px 44px rgba(20, 50, 100, 0.1);
    transform: translateY(-4px);
}

.ci-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gradient-color);
    color: var(--white-color);
    font-size: 22px;
    margin-bottom: 26px;
}

.ci-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 12px;
}

.ci-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 26px;
    flex: 1;
}

.ci-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border-radius: 12px;
    background: var(--gradient-color);
    color: var(--white-color);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ci-btn:hover {
    color: var(--white-color);
    opacity: 0.92;
    transform: translateY(-1px);
}

/* ===== Contact: What Can We Build Together form ===== */
.build-form-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--black-color);
}

.build-form .field-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 10px;
}

.build-form .site-input {
    border-radius: 10px;
    border: 1px solid #E6E6E6;
    padding: 15px 18px;
}

.build-form textarea.site-input {
    border-radius: 12px;
}

.build-form .site-input::placeholder {
    color: #9AA1AC;
}

.build-form .site-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.build-form .site-btn {
    border-radius: 12px;
    font-size: 16px;
}

@media (max-width: 575px) {
    .build-form-title {
        font-size: 32px;
    }
}

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

.site-footer {
    background: #000000;
    color: var(--white-color);
    padding-top: 70px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--white-color);
}

.site-footer h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 22px;
    color: var(--white-color);
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer ul li {
    margin-bottom: 15px;
}

/* top row: brand + socials */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-brand .site-logo {
    height: 42px;
    width: auto;
    margin-bottom: 22px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
    max-width: 340px;
    margin: 0;
}

.footer-social-block h6 {
    margin-bottom: 16px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #161616;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* main row: contact + link columns */
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
    margin-top: 55px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.fc-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #161616;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.fc-mail {
    color: #EA4335;
}

.fc-teams {
    color: #7B83EB;
}

.fc-phone {
    color: #3b82f6;
}

.fc-text {
    display: flex;
    flex-direction: column;
}

.fc-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 6px;
}

.fc-text a {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}

.fc-text a:hover {
    color: var(--primary-color);
}

.footer-address {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 16px 20px;
    margin-top: 6px;
    max-width: 400px;
}

.footer-flag {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #161616;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
}

.footer-address p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: contents;
}

/* bottom bar */
.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 24px 0;
    margin-top: 55px;
}

.footer-copy {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-policies {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
}

@media (max-width: 575px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--black-color);
}

.brands-strip {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.brands-marquee {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brands-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: brands-scroll 30s linear infinite;
}

.brands-strip:hover .brands-track {
    animation-play-state: paused;
}

.brand-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 167px;
    padding: 20px;
}

.brand-logo img {
    max-width: 100%;
    object-fit: contain;
}

@keyframes brands-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.estimation-cta {
    background: var(--gradient-color);
    color: var(--white-color);
    text-align: center;
}

@media screen and (max-width: 991.5px) {

    /* collapsed mobile nav: keep it inside the viewport and scrollable */
    .site-header .navbar-collapse {
        max-height: calc(100vh - 78px);
        overflow-y: auto;
        overflow-x: hidden;
        margin-top: 12px;
        padding-bottom: 8px;
    }

    .site-header .navbar-nav {
        gap: 2px;
    }

    .site-header .nav-link {
        padding: 10px 12px !important;
    }

    .megamenu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        min-width: 0;
        box-shadow: none;
        margin-top: 0 !important;
        padding-top: 8px !important;
    }

    .megamenu-inner {
        padding: 20px;
        box-shadow: none;
    }

    .megamenu-inner .row {
        --bs-gutter-x: 16px;
    }

    .megamenu-featured {
        border-radius: 16px;
        margin-bottom: 16px;
        padding: 0 0 4px;
    }

    .megamenu-featured-img {
        max-height: 150px;
    }

    .megamenu-links {
        padding: 0;
    }

    .megamenu-col {
        margin-bottom: 18px;
    }

    .megamenu-service-nav .megamenu-featured,
    .megamenu-service-nav .megamenu-links {
        padding: 0;
        border: 0;
    }

    .megamenu-service-nav .megamenu-featured {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .industries-nav-scrol-bar {
        max-height: none;
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-company-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 240px;
    }

    .ac-text {
        grid-column: span 2;
    }

    /* full-width CTA in the collapsed menu */
    .header-cta {
        margin-top: 14px;
        padding-bottom: 8px;
        width: 100%;
        flex-wrap: wrap;
    }

    .header-cta .site-btn,
    .header-cta .header-phone {
        flex: 1 1 100%;
        text-align: center;
        justify-content: center;
    }

    .build-apps-mockup {
        position: static;
        width: 100%;
        height: auto;
        margin-top: 40px;
        border-radius: 16px;
    }

    .build-apps-section {
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 575.5px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-company-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .ac-stat {
        min-height: 180px;
    }

    .speed-card {
        padding: 32px 28px;
        min-height: 260px;
    }

    .speed-card .speed-arrow {
        right: 28px;
        bottom: 28px;
    }

    .speed-card .speed-watermark {
        right: 20px;
        font-size: 110px;
    }

    .speed-accordion {
        flex-direction: column;
        min-height: 0;
        gap: 14px;
    }

    .speed-panel,
    .speed-panel:hover,
    .speed-panel.is-active {
        flex: none;
        width: 100%;
        min-height: 70px;
    }

    .speed-panel.is-active {
        min-height: 300px;
    }

    .sp-vertical {
        writing-mode: horizontal-tb;
        transform: translate(-50%, -50%);
        font-size: 16px;
    }

    .sp-content {
        position: relative;
        padding: 30px 26px;
        gap: 20px;
    }

    .sp-text h3 {
        white-space: normal;
        font-size: 22px;
    }

    .sp-image img {
        max-width: 70vw;
    }

    /* on mobile keep the active panel open (no hover); tap not required */
    .speed-accordion:hover .speed-panel.is-active:not(:hover) {
        flex: none;
        background: var(--gradient-color);
        border-color: transparent;
    }

    .speed-accordion:hover .speed-panel.is-active:not(:hover) .sp-vertical {
        opacity: 0;
    }

    .speed-accordion:hover .speed-panel.is-active:not(:hover) .sp-content {
        opacity: 1;
        visibility: visible;
    }

    .ac-text {
        grid-column: span 1;
    }

    .hero-section,
    .page-hero {
        padding: 140px 0 100px;
    }
}

/* ===== Build the Apps you Need with Freedom (blue accordion + phone) ===== */
.freedom-section {
    position: relative;
    background: linear-gradient(100.15deg, #1B5FD4 2.6%, #90E0EF 100%);
    overflow: hidden;
    padding: 110px 0;
}
.freedom-sec-img{
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
}

.freedom-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    gap: 40px;
}

.freedom-content {
    max-width: 742px;
}

.freedom-title {
    color: #fff;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 22px;
}

.freedom-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 38px;
}

.freedom-accordion {
    margin-top: 10px;
}

.freedom-accordion .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.freedom-accordion .accordion-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.freedom-accordion .accordion-header {
    margin: 0;
}

.freedom-accordion .accordion-button {
    background: transparent;
    box-shadow: none;
    padding: 22px 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.freedom-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: #fff;
    box-shadow: none;
}

.freedom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.freedom-accordion .accordion-button::after {
    width: 14px;
    height: 14px;
    background-size: 14px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.freedom-accordion .accordion-body {
    padding: 0 4px 24px;
}

.freedom-accordion .accordion-body p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    max-width: 600px;
}

.freedom-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.freedom-visual img {
    width: 100%;
    max-width: 430px;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .freedom-section {
        padding: 70px 0;
    }

    .freedom-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .freedom-title br {
        display: none;
    }

    .freedom-visual {
        justify-content: center;
        order: -1;
    }

    .freedom-visual img {
        max-width: 320px;
    }
}

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

/* ===== Industries We Serve ===== */
.industries-serve {
    background: #F9F9F9;
}
.white-bg{
    background: #fff !important;
}
.dark-blue-text{
    color: #001C4C;
}
.industries-serve .section-tab {
    display: inline-block;
    width: 46px;
    height: 6px;
    border-radius: 6px;
    background: var(--primary-color, #2f7be0);
}

.industries-serve .section-title {
    font-weight: 700;
    font-size: 44px;
    letter-spacing: -0.5px;
}

.industry-card {
    height: 100%;
    background: #fff;
    border: 1px solid #ececef;
    border-radius: 14px;
    padding: 34px 32px;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.industry-card:hover {
    border-color: transparent;
    box-shadow: 0 18px 40px rgba(20, 50, 100, 0.1);
    transform: translateY(-4px);
}

.industry-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color, #14181f);
    margin-bottom: 14px;
}

.industry-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted, #6b7280);
    margin: 0;
}

@media (max-width: 575px) {
    .industries-serve .section-title {
        font-size: 30px;
    }

    .industry-card {
        padding: 26px 24px;
    }
}

/* ===== About: What We Do / Mission / Vision ===== */
.wwd-title {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--black-color);
    margin-bottom: 24px;
}

.wwd-intro p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 22px;
    max-width: 1080px;
}

.wwd-intro p.wwd-highlight {
    color: var(--primary-color);
}

.wwd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 30px;
}

.wwd-visual img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
}

.wwd-block+.wwd-block {
    margin-top: 34px;
}

.wwd-block h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 16px;
}

.wwd-block p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.wwd-block p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .wwd-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wwd-title {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .wwd-title {
        font-size: 30px;
    }

    .wwd-block h3 {
        font-size: 26px;
    }
}

/* ===== About: Core Values ===== */
.cv-title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--black-color);
}

.cv-card-wrapper {
    background: var(--gradient-color);
    border-radius: 18px;
    padding: 1px;
}

.cv-card {
    height: 100%;
    background: var(--white-color);
    border-radius: 18px;
    padding: 36px 34px;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.cv-card:hover {
    border-color: transparent;
    box-shadow: 0 18px 44px rgba(20, 50, 100, 0.1);
    transform: translateY(-4px);
}

.cv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--black-color);
    margin-bottom: 26px;
}

.cv-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 14px;
}

.cv-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 575px) {
    .cv-title {
        font-size: 30px;
    }

    .cv-card {
        padding: 28px 26px;
    }
}

/* ===== Service: Future-Ready Software ===== */
.fr-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--black-color);
    margin-bottom: 18px;
    max-width: 620px;
}

.fr-amp {
    color: var(--primary-color);
}

.fr-accent {
    color: var(--primary-color);
}

.fr-subtitle {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 40px;
}

.fr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.fr-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.fr-stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgb(27, 95, 212, .05);
    border-radius: 30px;
    border: 1px solid #1B5FD4;
    padding: 40px 36px;
    min-height: 180px;
}

.fr-stat-num {
    font-size: 46px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 18px;
}

.fr-stat-label {
    font-size: 25px;
    font-weight: 300;
    color: #050505;
    line-height: 1.3;
}

.fr-visual {
    border-radius: 24px;
    overflow: hidden;
}

.fr-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .fr-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 575px) {
    .fr-stats {
        grid-template-columns: 1fr;
    }

    .fr-title {
        font-size: 27px;
    }

    .fr-stat-card {
        min-height: 150px;
        padding: 32px 28px;
    }
}

/* ===== Service: Business App Development ===== */
.biz-app-visual {
    display: flex;
    justify-content: center;
}

.biz-app-visual img {
    max-width: 100%;
    height: auto;
}

.biz-app-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--black-color);
    margin-bottom: 24px;
}

.biz-app-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.biz-app-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 36px;
    margin-top: 26px;
}

.biz-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--black-color);
}

.biz-check i {
    color: var(--primary-color);
    font-size: 17px;
}
.blue-text{ 
    color: #1B5FD4 !important;
}
@media (max-width: 991px) {
    .biz-app-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .biz-app-title {
        font-size: 27px;
    }
}

/* ===== Responsive spacing normalization ===== */
@media (max-width: 991px) {

    .hero-section, .page-hero {
        padding: 140px 0 100px;
    }

    .build-apps-section {
        padding: 64px 0;
    }

    .insights-section {
        padding: 64px 0 72px;
    }

    .insights-header {
        margin-bottom: 36px;
    }

    .vision-cta {
        padding-top: 0;
    }
}

@media (max-width: 575px) {

    .hero-section, .page-hero {
        padding: 140px 0 100px;
    }

    .build-apps-section {
        padding: 48px 0;
    }

    .build-apps-mockup {
        margin-top: 28px;
    }

    .freedom-section {
        padding: 56px 0;
    }

    .insights-section {
        padding: 48px 0 56px;
    }

    .footer-main {
        margin-top: 40px;
    }

    .footer-bottom-bar {
        margin-top: 36px;
    }

    .cv-card,
    .industry-card,
    .contact-info-card {
        padding: 26px 24px;
    }
}