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

:root {
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --blue-light: #3b82f6;
    --deep-sky: #4F8FF7;
    --light-sky: #3375a8;
    --sky: #e8f0fe;
    --sky2: #dbeafe;
    --text: #1e293b;
    --text2: #64748b;
    --text3: #94a3b8;
    --white: #ffffff;
    --border: #e2e8f0;
    --card-bg: #f8fafc;
    --shadow: 0 4px 24px rgba(37, 99, 235, 0.08);
    --shadow2: 0 2px 12px rgba(0, 0, 0, 0.07);
}
/*  */
/* ── CORE VARIABLES ── */
:root {
    --brand-blue: #3b82f6;
    --brand-blue-dark: #2563eb;
    --brand-light: #eff6ff;
    --text-main: #0f172a;
    --text-sub: #64748b;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;

    /* Variables for the "Why Choose" Section */
    --wc-title: #233a69;
    --wc-blue: #5d9cff;
    --wc-text: #5d6f93;
    --wc-card-bg: rgba(255, 255, 255, .34);
    --wc-card-border: rgba(255, 255, 255, .55);
    --wc-shadow: 0 8px 30px rgba(87, 121, 190, .10);
    --wc-radius: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    margin: 0;
    background: #fff;
    color: var(--text-main);
    overflow-x: hidden;
}
/*  */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

body.js-enhanced .reveal-on-scroll {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

body.js-enhanced .reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}
/*  */
.heading{
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    /* letter-spacing: -1.5px; */
    color: var(--its-text-dark);
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
    /* font-family: var(--font-heading); */
    font-family: 'Manrope', sans-serif !important;
}
.xl_heading{ font-size: 60px;}
.lg_heading{ font-size: 40px; font-family: 'Manrope', sans-serif !important;}
.md_heading{ font-size: 30px; font-family: 'Manrope', sans-serif !important;}
.sm_heading{ font-size: 24px; font-family: 'Manrope', sans-serif !important;}
.xs_heading{ font-size: 20px; font-family: 'Manrope', sans-serif !important;}
/* ── NAVBAR ── */
nav .container .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    background: var(--white);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    text-decoration: none;
}

.nav-logo img,
.footer-logo img {
    width: 188px;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin-bottom: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text2);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-cta {
    background-image: linear-gradient(to right, var(--blue), #1e293b);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background-image .3s;
}

.nav-cta:hover {
    background-image: linear-gradient(to left, var(--blue), #1e293b);
}

/* Common */
.section_gap {
    padding: 70px 0;
}

.its-cta-section.section_gap {
    padding-bottom: 0;
}

/* End Common */
/* ── HERO ── */
.hero {
    /* background: linear-gradient(135deg, #eef4ff 0%, #f0f7ff 40%, #e8f3ff 100%); */
    padding: 90px 0 40px;
    /* display: flex;
    align-items: center; */
    gap: 40px;
    overflow: hidden;
    position: relative;
    min-height: calc(100vh - 72px);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero>.container:first-child {
    min-height: clamp(500px, 62vh, 720px);
}

.hero .container {
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    flex: 1;
    /* max-width: 520px; */
}

/* .hero-content h1 {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 18px;
    animation: fadeInUp 0.8s ease-out forwards;
} */

/* .hero-content h1 span {
    color: var(--blue);
} */

.hero-content p {
    font-size: 0.95rem;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 400px;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-btns {
    display: flex;
    gap: 16px;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.btn-primary {
    background-image: linear-gradient(to right, var(--blue), #1e293b);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background-image .3s, transform .15s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    color: var(--white);
    background-image: linear-gradient(to left, var(--blue), #1e293b);
    transform: translateY(-1px);
}

.btn-outline {
    background: #fff;
    color: var(--text);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 1.5px solid var(--border);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: border-color .2s, color .2s;
    text-decoration: none;
    display: inline-block;
}

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

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* .hero-visual img {
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
} */

/* Laptop mockup */
.laptop-wrap {
    position: relative;
    width: 380px;
}

.laptop {
    background: #1e293b;
    border-radius: 16px 16px 4px 4px;
    padding: 12px 12px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22), 0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
}

.laptop-screen {
    background: var(--white);
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.screen-bar {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
}

.screen-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.screen-dot:nth-child(1) {
    background: #ff5f57;
}

.screen-dot:nth-child(2) {
    background: #ffbd2e;
}

.screen-dot:nth-child(3) {
    background: #28ca41;
}

.screen-content {
    background: linear-gradient(135deg, #eef4ff, #f8faff);
    border-radius: 6px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px;
    text-align: center;
}

.screen-content h3 {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 8px;
}

.screen-content p {
    font-size: 0.5rem;
    color: var(--text2);
    margin-bottom: 10px;
}

.screen-btns {
    display: flex;
    gap: 6px;
}

.screen-btn-blue {
    background: var(--blue);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.42rem;
    font-weight: 600;
}

.screen-btn-white {
    background: #fff;
    color: var(--text);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.42rem;
    font-weight: 600;
    border: 1px solid var(--border);
}

.laptop-base {
    height: 18px;
    background: #2d3748;
    border-radius: 0 0 4px 4px;
    margin: 0 -12px;
}

.laptop-stand {
    width: 80px;
    height: 8px;
    background: #3d4a5c;
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
}

.laptop-foot {
    width: 130px;
    height: 5px;
    background: #2d3748;
    border-radius: 3px;
    margin: 0 auto;
}

/* Rocket */
.rocket {
    position: absolute;
    top: -20px;
    right: -30px;
    font-size: 3rem;
    transform: rotate(30deg);
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.3));
}

@keyframes float {

    0%,
    100% {
        transform: rotate(30deg) translateY(0)
    }

    50% {
        transform: rotate(30deg) translateY(-10px)
    }
}

/* Floating badge */
.badge-float {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--white);
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float2 3.5s ease-in-out infinite;
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

.badge-float .badge-icon {
    font-size: 1.4rem;
}

.badge-float .badge-text {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.badge-float .badge-sub {
    font-size: 0.58rem;
    color: var(--text2);
    font-weight: 400;
}

/* ── PARTNERS STRIP ── */
.partners ul {
    padding: 80px 60px 20px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    background: transparent;
}

.partner-logo {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text3);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.partner-logo .ico {
    font-size: 1.1rem;
}

.partner-logo.dribbble {
    color: #ea4c89;
    font-style: italic;
    font-family: Georgia, serif;
    font-weight: 700;
}

.partner-logo.upwork {
    color: #6fda44;
    font-weight: 800;
}

/* ── SERVICES ── */

.services_sec {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.section-header h2 {
    /* font-size: 45px;
    font-weight: 700;
    color: var(--text); */
    margin-bottom: 25px;
    position: relative;
}

.section-header h2::after {
    content: "";
    width: 15%;
    height: 2px;
    background-color: #dcdcdc;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    animation: expandWidth 0.8s ease-out 0.5s forwards;
}

.section-header p {
    font-size: 16px;
    color: var(--text2);
}

.services-grid {
    display: flex;
    align-items: stretch;
    gap: 18px;
}

.service-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 18px;
    border: 1px solid rgba(72, 108, 204, 0.15);
    box-shadow: 0 10px 26px rgba(50, 72, 129, 0.12);
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
    /* pin Learn More to bottom */
    display: flex;
    flex-direction: column;
}

.service-card.is-active {
    flex: 1;
    background: linear-gradient(140deg, #1545bf 0%, #1f5ddd 45%, #2a6cff 100%);
    border-color: rgba(130, 189, 255, 0.7);
    box-shadow: 0 16px 40px rgba(34, 78, 184, 0.38), inset 0 0 0 2px rgba(187, 232, 255, 0.45);
}



.service-card:nth-child(1) {
    animation-delay: 0.3s;
}

.service-card:nth-child(2) {
    animation-delay: 0.5s;
}

.service-card:nth-child(3) {
    animation-delay: 0.7s;
}

.service-card:nth-child(4) {
    animation-delay: 0.9s;
}

.service-card:not(.is-active):hover {
    box-shadow: 0 18px 36px rgba(37, 63, 126, 0.18);
}

/* Keep hover effects in Our Services without changing layout height/width */
.services_sec .services-grid {
    align-items: stretch;
}

.services_sec .service-card {
    flex: 1;
    min-height: 430px;
    will-change: transform, box-shadow;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.services_sec .service-card.is-active {
    transform: translateY(-4px);
}

.services_sec .service-card:not(.is-active):hover {
    transform: translateY(-2px);
}

.icon_content_wrap {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-bottom: 15px;
}

.icon_wrap {
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .icon_wrap,
.service-card.is-active .icon_wrap {
    transform: scale(1.1) rotate(5deg);
}

.icon_wrap img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.service-card:hover .icon_wrap img,
.service-card.is-active .icon_wrap img {
    filter: brightness(1.1);
}

.service-card h4 {
    transition: color 0.3s ease;
}

.service-card:hover h4,
.service-card.is-active h4 {
    color: var(--deep-sky);
}

.service-points {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}

.service-points li {
    font-size: 14px;
    line-height: 1.65;
    color: #5d6a87;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.service-points li::before {
    content: "\2713";
    color: #4b81ff;
    font-weight: 700;
    font-size: 12px;
    margin-top: 3px;
}

.learn-more {
    color: #2e6cf8;
    background: #eef4ff;
    border: 1px solid #dbe8ff;
    border-radius: 12px;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    align-self: flex-start;
    transition: gap 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.learn-more .lm-arrow {
    font-size: 18px;
    line-height: 1;
}

.learn-more:hover {
    gap: 14px;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes expandWidth {
    from {
        width: 0%;
    }

    to {
        width: 15%;
    }
}

.icon_content_wrap {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-bottom: 15px;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.si-blue {
    background: #dbeafe;
}

.si-purple {
    background: #ede9fe;
}

.si-sky {
    background: #e0f2fe;
}

.si-orange {
    background: #ffedd5;
}

.icon-box {
    width: 50px;
    height: 55px;
    margin: 0 auto;
    border-radius: 15px;
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 28px;
    color: #3b82f6;
}

.icon_content_wrap .icon_wrap {
    width: 24%;
}

.icon_wrap img {
    width: 55px;
    object-fit: cover;
}

.service-card h4 {
    /* font-size: 20px;
    font-weight: 600; */
    color: #2c2f48;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.65;
    margin-bottom: 16px;
}

.card-side-arrows {
    position: absolute;
    right: 16px;
    bottom: 39px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 36px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-side-arrows span {
    transform: scaleY(0.9);
}

.service-card.is-active .card-side-arrows {
    opacity: 1;
    transform: translateX(0);
}

.service-card.is-active h4,
.service-card.is-active p,
.service-card.is-active .service-points li {
    color: #ffffff;
}

.service-card.is-active .service-points li::before {
    color: #b9d7ff;
}

.service-card.is-active .learn-more {
    color: #ffffff;
    background: rgba(31, 102, 255, 0.25);
    border-color: rgba(174, 212, 255, 0.58);
}

/* ── TRUSTED BY ── */
.trusted {
    background: #f8fafc;
    padding: 30px 0 0;
}

.trusted h2 {
    font-size: 30px;
    text-align: center;
    padding-bottom: 10px;
    color: var(--text);
    font-weight: 500;
}

.trusted h2 span {
    color: #000;
    font-weight: 700;
}

.trusted .partners ul {
    padding: 10px 60px;
}

.trusted-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trusted-inner .label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-right: 20px;
}

.trusted-inner .label span {
    color: var(--blue);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text2);
    padding: 6px 16px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--border);
}

/* ── New PROCESS ── */
.its-process__section {
    --its-blue: #1d6bf3;
    --its-blue-light: #4d8ef7;
    --its-blue-pale: #e8f1ff;
    --its-blue-mid: #bdd4ff;
    --its-navy: #0a1628;
    --its-slate: #1e293b;
    --its-muted: #64748b;
    --its-line: #dde8f8;
    --its-white: #ffffff;
    --its-bg: #f0f6ff;
}

/* ── SECTION ── */
.its-process__section {
    position: relative;
    overflow: hidden;
    background: var(--its-bg);
}

.its-process__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.its-process__amb-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .55;
}

.its-process__amb-blob--1 {
    width: 500px;
    height: 500px;
    background: rgba(29, 107, 243, .12);
    top: -100px;
    /* right: -80px;
    position: relative; */
}

.its-process__amb-blob--2 {
    width: 400px;
    height: 400px;
    background: rgba(96, 165, 250, .1);
    bottom: -80px;
    /* left: -60px;
    position: relative; */
}

.its-process__amb-blob--3 {
    width: 300px;
    height: 300px;
    background: rgba(147, 197, 253, .08);
    top: 40%;
    /* left: 30%;
    position: relative; */
}

.its-process__grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(29, 107, 243, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(29, 107, 243, .04) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Section heading */
.its-process__heading-wrap {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.its-process__heading-wrap h2 {
    font-size: 45px;
    font-weight: 700;
    color: var(--its-slate);
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
}

.its-process__heading-wrap h2::after {
    content: "";
    width: 15%;
    height: 2px;
    background-color: #dcdcdc;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.its-process__heading-wrap p {
    font-size: 16px;
    color: var(--its-muted);
    font-family: 'Poppins', sans-serif;
}

/* ── MAIN LAYOUT ── */
.its-process__layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

/* ── LEFT NAV ── */
.its-process__left-nav {
    position: sticky;
    top: 80px;
}

.its-process__nav-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--its-muted);
    margin-bottom: 20px;
    padding-left: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.its-process__nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    cursor: pointer;
    margin-bottom: 4px;
    transition: all .3s ease;
    border: 1.5px solid transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-width: max-content;
}

.its-process__nav-item:hover {
    background: rgba(29, 107, 243, .05);
}

.its-process__nav-item.its-process__nav-item--active {
    background: var(--its-white);
    border-color: rgba(29, 107, 243, .15);
    box-shadow: 0 4px 24px rgba(29, 107, 243, .1);
}

.its-process__nav-num {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--its-muted);
    min-width: 22px;
    transition: color .3s;
}

.its-process__nav-item--active .its-process__nav-num {
    color: var(--its-blue);
}

.its-process__nav-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--its-blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s;
}

.its-process__nav-item--active .its-process__nav-icon-wrap {
    background: var(--its-blue);
    box-shadow: 0 4px 12px rgba(29, 107, 243, .3);
}

.its-process__nav-icon-wrap svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--its-blue);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .3s;
}

.its-process__nav-item--active .its-process__nav-icon-wrap svg {
    stroke: #fff;
}

.its-process__nav-text {
    flex: 1;
}

.its-process__nav-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--its-slate);
    display: block;
    line-height: 1.2;
}

.its-process__nav-sub {
    font-size: 11px;
    font-weight: 400;
    color: var(--its-muted);
    display: block;
    margin-top: 2px;
}

.its-process__nav-arrow {
    opacity: 0;
    transform: translateX(-4px);
    transition: all .3s;
    color: var(--its-blue);
    font-size: 14px;
}

.its-process__nav-item--active .its-process__nav-arrow {
    opacity: 1;
    transform: translateX(0);
}

.its-process__nav-progress {
    margin-top: 28px;
    padding: 0 16px;
}

.its-process__np-label {
    font-size: 11px;
    color: var(--its-muted);
    margin-bottom: 8px;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.its-process__np-track {
    height: 4px;
    background: var(--its-line);
    border-radius: 4px;
    overflow: hidden;
}

.its-process__np-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--its-blue), #38bdf8);
    border-radius: 4px;
    width: 20%;
    transition: width .6s cubic-bezier(.4, 0, .2, 1);
}

/* ── RIGHT CONTENT ── */
.its-process__content-area {
    min-height: 460px;
}

.its-process__step-panel {
    display: none;
    animation: itsProcessPanelIn .45s cubic-bezier(.34, 1.4, .64, 1) forwards;
}

.its-process__step-panel.its-process__step-panel--active {
    display: block;
}

@keyframes itsProcessPanelIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(.99);
    }

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

/* ── SERVICE CARD ── */
.its-process__card {
    background: var(--its-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(29, 107, 243, .1);
    border: 1.5px solid rgba(29, 107, 243, .08);
    display: flex;
    align-items: stretch;
    min-height: 260px;
}

.its-process__card-accent {
    width: 6px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #1d6bf3, #38bdf8);
}

.its-process__card-body {
    padding: 40px 44px;
    display: flex;
    align-items: center;
    gap: 48px;
    flex: 1;
}

.its-process__card-info {
    flex: 1;
}

.its-process__card-icon-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.its-process__card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--its-blue-pale);
    border: 1.5px solid var(--its-blue-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.its-process__card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--its-blue);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.its-process__card-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--its-blue);
    background: var(--its-blue-pale);
    border: 1px solid var(--its-blue-mid);
    border-radius: 100px;
    padding: 4px 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.its-process__card-title {
    /* font-family: 'Outfit', sans-serif; */
    /* font-size: 28px;
    font-weight: 800; */
    letter-spacing: -0.5px;
    color: var(--its-navy);
    margin-bottom: 20px;
    line-height: 1.15;
}

.its-process__card-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    padding: 0;
}

.its-process__card-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--its-slate);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.its-process__bullet-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--its-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.its-process__bullet-check svg {
    width: 10px;
    height: 10px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.its-process__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-image: linear-gradient(to right, var(--blue), #1e293b);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(29, 107, 243, .35);
    transition: background-image .3s, box-shadow .3s, transform .3s;
    text-decoration: none;
}

.its-process__cta-btn:hover {
    background-image: linear-gradient(to left, var(--blue), #1e293b);
    box-shadow: 0 6px 28px rgba(29, 107, 243, .45);
    transform: translateY(-2px);
    color: #fff;
}


.its-process__cta-btn svg {
    width: 15px;
    height: 15px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Right visual / stats block */
.its-process__card-visual {
    flex-shrink: 0;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.its-process__mockup-wrap {
    position: relative;
    width: 200px;
}

.its-process__mockup-screen {
    width: 160px;
    height: 100px;
    background: linear-gradient(135deg, #e8f1ff 0%, #dbeafe 100%);
    border-radius: 10px;
    border: 2px solid var(--its-blue-mid);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(29, 107, 243, .15);
}

.its-process__mockup-screen::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--its-blue), #38bdf8);
    opacity: .5;
}

.its-process__mockup-screen::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 8px;
    right: 28px;
    height: 5px;
    border-radius: 3px;
    background: var(--its-blue-mid);
}

.its-process__mockup-bar {
    position: absolute;
    left: 8px;
    right: 48px;
    height: 5px;
    border-radius: 3px;
    background: var(--its-blue-mid);
    opacity: .6;
}

.its-process__mockup-bar:nth-child(3) {
    top: 36px;
    right: 32px;
}

.its-process__mockup-bar:nth-child(4) {
    top: 48px;
    right: 56px;
    opacity: .4;
}

.its-process__mockup-phone {
    width: 56px;
    height: 90px;
    background: linear-gradient(135deg, #e8f1ff, #dbeafe);
    border-radius: 8px;
    border: 2px solid var(--its-blue-mid);
    position: absolute;
    right: 0;
    bottom: -10px;
    box-shadow: 0 6px 16px rgba(29, 107, 243, .18);
    overflow: hidden;
}

.its-process__mockup-phone::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--its-blue), #38bdf8);
    opacity: .5;
}

.its-process__stat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 8px;
}

.its-process__stat-pill {
    background: var(--its-blue-pale);
    border: 1px solid var(--its-blue-mid);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--its-blue);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── BOTTOM NAV ── */
.its-process__bottom-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 36px auto 0;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.its-process__bnav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--its-white);
    border: 1.5px solid var(--its-line);
    border-radius: 14px;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 700;
    color: var(--its-slate);
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all .25s;
}

.its-process__bnav-btn:hover {
    border-color: var(--its-blue);
    color: var(--its-blue);
    box-shadow: 0 4px 16px rgba(29, 107, 243, .1);
}

.its-process__bnav-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.its-process__bnav-btn--primary {
    background: linear-gradient(135deg, var(--its-blue), #38bdf8);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 20px rgba(29, 107, 243, .35);
}

.its-process__bnav-btn--primary:hover {
    box-shadow: 0 8px 32px rgba(29, 107, 243, .45);
    transform: translateY(-1px);
    color: #fff;
}

.its-process__bnav-steps {
    display: flex;
    align-items: center;
    gap: 8px;
}

.its-process__bnav-step {
    width: 32px;
    height: 6px;
    border-radius: 6px;
    background: var(--its-line);
    cursor: pointer;
    transition: all .3s;
}

.its-process__bnav-step--done {
    background: rgba(29, 107, 243, .3);
}

.its-process__bnav-step--active {
    background: var(--its-blue);
    width: 48px;
}

/* ── End PROCESS ── */
/* ── PROCESS ── */

.process {
    background: var(--white);
}

.process .section-header {
    animation: fadeInUp 0.8s ease-out forwards;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.process-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow2);
    background: var(--white);
    transition: box-shadow .25s, transform .2s;
    cursor: default;
}

.process-card:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.process-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.process-card:nth-child(3) {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.process-card:hover {
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
}

.process-img {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-img.web {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.process-img.car {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.process-img.app {
    background: linear-gradient(135deg, #0f3460 0%, #533483 100%);
}

.mock-browser {
    width: 85%;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 6px 8px;
    backdrop-filter: blur(4px);
}

.mock-browser-bar {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 5px;
}

.mock-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.mock-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    height: 6px;
    margin-left: 4px;
}

.mock-content-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mock-line {
    height: 5px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.mock-line.short {
    width: 60%;
}

.mock-line.med {
    width: 80%;
}

.process-body {
    padding: 20px;
}

.process-body h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.process-body p {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 14px;
}

.view-case {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: background .2s;
}

.view-case:hover {
    background: var(--blue-dark);
    color: var(--white);
}

/* ── PHONE MOCK (FitLine) ── */
.phone-mock {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    padding: 14px;
}

.phone-device {
    width: 52px;
    height: 100px;
    background: #111;
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.phone-screen {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 5px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 4px 3px;
    gap: 3px;
}

.ph-line {
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
}

.ph-line.short {
    width: 60%;
}

.ph-avatar {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    margin: 2px auto;
}

/* ── CTA + FORM ── */
.cta-top-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.cta-left h2 {
    font-size: 45px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 14px;
}

.cta-left p {
    font-size: 16px;
    color: var(--text2);
    margin-bottom: 28px;
}

.cta-right {
    background: var(--white);
    border-radius: 18px;
    padding: 36px;
    box-shadow: var(--shadow);
}

.cta-right h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text);
    text-align: center;
    ;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-group {
    position: relative;
}

.form-group .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--text3);
}

.form-group .textarea.icon {
    top: 24%;
}

.form-group textarea {
    width: 100%;
    padding: 12px 12px 12px 34px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--white);
    transition: border-color .2s;
    min-height: 100px;
    resize: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 14px !important;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea::placeholder {
    color: var(--text3);
}

.form-group textarea+.icon {
    top: 20px;
    transform: none;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 12px 12px 34px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--white);
    transition: border-color .2s;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder {
    color: var(--text3);
}

.form-select-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-left: 4px;
}

.form-check input[type=checkbox] {
    accent-color: var(--blue);
    width: 15px;
    height: 15px;
}

.form-check label {
    font-size: 0.8rem;
    color: var(--text2);
}

.btn-submit {
    width: 100%;
    background-image: linear-gradient(to right, var(--blue), #1e293b);
    color: var(--white);
    padding: 14px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-image .3s;
    margin-bottom: 10px;
}

.btn-submit:hover {
    color: var(--white);
    background-image: linear-gradient(to left, var(--blue), #1e293b);
}

.secure-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* ── FOOTER ── */
footer {
    background: #1e293b;
    /* border-top: 1px solid var(--border); */
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    animation: fadeInUp 0.8s ease-out forwards;
}

.footer-col:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.footer-col:nth-child(3) {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.footer-col:nth-child(4) {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.footer-col:nth-child(5) {
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.footer-brand p {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.7;
    padding: 25px 0 18px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    transition: background .2s;
    opacity: 1;
}

.social-link:hover {
    opacity: 0.85;
    color: var(--white);
}

.social-link:nth-child(1) {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
}

.social-link:nth-child(2) {
    background: linear-gradient(135deg, #1da1f2 0%, #42a5f5 100%);
}

.social-link:nth-child(3) {
    background: linear-gradient(135deg, #0077b5 0%, #42a5f5 100%);
}

.social-link:nth-child(4) {
    background: linear-gradient(135deg, #e60023 0%, #ff4081 100%);
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
}

.footer-col ul li a {
    font-size: 16px;
    color: #ccc;
    text-decoration: none;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: var(--blue);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #ccc;
    text-decoration: none;
}

.footer-contact-item .ico {
    color: var(--blue);
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.footer-bottom p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 0;
}

.footer-bottom p .privacy_policy_text {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom p .privacy_policy_text:hover {
    color: #1d4ed8;
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-sphere {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--blue), #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Car mockup */
.car-mock {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 6px;
}

.car-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.car-title {
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

.car-body {
    width: 120px;
    height: 50px;
    position: relative;
}

.car-rect {
    width: 110px;
    height: 26px;
    background: #e8e8e8;
    border-radius: 4px 4px 2px 2px;
    position: absolute;
    bottom: 14px;
    left: 5px;
}

.car-cabin {
    width: 70px;
    height: 18px;
    background: #c0c0c8;
    border-radius: 8px 8px 0 0;
    position: absolute;
    bottom: 38px;
    left: 22px;
}

.car-wheel1,
.car-wheel2 {
    width: 16px;
    height: 16px;
    background: #222;
    border-radius: 50%;
    border: 3px solid #555;
    position: absolute;
    bottom: 2px;
}

.car-wheel1 {
    left: 14px;
}

.car-wheel2 {
    right: 14px;
}

.view_case_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view_case_wrap .chevron_wrap {
    background-color: #EEF2F6;
    text-decoration: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view_case_wrap .chevron_wrap i {
    font-size: 14px;
    margin-top: 2px;
}

/* MARQUEE */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

.marquee-wrap {
    overflow: hidden;
    padding: 70px 0 20px;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 22s linear infinite;
}

.marquee-item ul {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    flex-shrink: 0;
    color: #fff;
}

.marquee-item ul li img {
    scale: calc(1);
}

.marquee-item ul li img:hover {
    scale: calc(1.1);
    transition: scale .2s;
}

.marquee-wrap:hover .marquee-track {
    animation-play-state: paused;
}

/* achievement */
.achievement-section {
    background: #f7f7f7;
    padding: 84px 0 64px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.achievement-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(247, 247, 247, 0.6);
    z-index: -1;
}

.achievement-section .h2-main-heading {
    margin-bottom: 44px;
    position: relative;
}

.h2-main-heading {
    text-align: center;
    font-size: 45px;
    padding-top: 35px;
}

ul.achievement-list {
    padding: 0;
    margin: 0;
    text-align: center;
    list-style: none;
}

ul.achievement-list li {
    display: inline-block;
    float: none;
    list-style: none;
    vertical-align: top;
    width: 20%;
    margin: 0 -2px;
    padding: 0 15px;
}

.h2-main-heading h2:before {
    position: absolute;
    content: "";
    width: 67px;
    height: 2px;
    background: #000;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    margin: auto;
}

.aciv-img {
    height: 76px;
    line-height: 76px;
    margin-bottom: 25px;
}

ul.achievement-list li h4 {
    font-size: 20px;
    color: #1e293b;
    margin: 0 0 6px;
    transition: all .3s ease-in-out;
    font-weight: 600;
}

.achievement-list a {
    text-decoration: none;
}

ul.achievement-list li p {
    margin: 0;
    color: #464545;
    font-size: 18px;
}

.menu_mob {
    background-color: #fff;
}

.menu_mob .navbar-toggler {
    border: none;
}

.menu_mob .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* ================================
   New Merged Header + Hero
================================ */
.its-hero-shell {
    --its-blue: #2563eb;
    --its-blue-dark: #1d4ed8;
    --its-text-dark: #0f172a;
    --its-text-mid: #334155;
    --its-text-muted: #64748b;
    --its-border: #e2e8f0;
    --its-bg-page: #eef2f9;
    background: var(--its-bg-page);
}

.its-hero-shell * {
    box-sizing: border-box;
}

.its-hero-shell .hero-section {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(130deg, #d4e3ff 0%, #e8f0ff 50%, #f4f8ff 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 580px;
    font-family: 'Manrope', sans-serif;
}

.its-hero-shell .site-navbar {
    background: #fff;
    border-radius: 60px;
    padding: 12px 26px;
    animation: heroFadeDown 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.its-hero-shell .brand-name {
    font-size: 20px;
    font-weight: 900;
    color: var(--its-text-dark);
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.its-hero-shell .brand-name span {
    color: var(--its-blue);
}

.its-hero-shell .brand-tagline {
    font-size: 10.5px;
    color: var(--its-text-muted);
    font-weight: 600;
}

.its-hero-shell .nav-link {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--its-text-mid) !important;
    padding: 6px 4px !important;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link.dropdown-toggle::after {
    display: none;
}

.nav-link.active-link {
    color: var(--its-text-dark) !important;
}

.nav-link.active-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2.5px;
    background: var(--its-blue);
    border-radius: 2px;
    transform: none;
}

.its-hero-shell .nav-link:hover {
    color: var(--its-blue) !important;
}

.its-hero-shell .its-services-dropdown {
    position: relative;
}

.its-hero-shell .its-services-dropdown .dropdown-toggle {
    border: 1.5px solid transparent;
    border-radius: 8px;
    padding: 7px 10px !important;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.its-hero-shell .its-services-dropdown:hover .dropdown-toggle,
.its-hero-shell .its-services-dropdown .dropdown-toggle[aria-expanded='true'] {
    border-color: #111111;
    background: #ffffff;
    color: var(--its-text-dark) !important;
}

.its-hero-shell .its-dropdown-menu {
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 18px;
    padding: 10px;
    min-width: 250px;
    box-shadow: 0 24px 44px rgba(29, 78, 216, 0.14);
    margin-top: 2px;
}

.its-hero-shell .its-dropdown-menu .dropdown-item {
    border-radius: 12px;
    color: var(--its-text-dark);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 14px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.its-hero-shell .its-dropdown-menu .dropdown-item:hover,
.its-hero-shell .its-dropdown-menu .dropdown-item:focus {
    background: rgba(37, 99, 235, 0.08);
    color: var(--its-blue);
    transform: translateX(4px);
}

.its-hero-shell .btn-quote-nav {
    background: var(--its-blue);
    color: #fff !important;
    border-radius: 999px;
    padding: 11px 22px !important;
    font-size: 14.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: background 0.2s ease, transform 0.15s ease;
    text-decoration: none;
    white-space: nowrap;
}

.its-hero-shell .btn-quote-nav:hover {
    background: var(--its-blue-dark);
    transform: translateY(-1px);
}

.its-hero-shell .icon-circle {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.its-hero-shell .hero-content {
    position: relative;
    z-index: 2;
}

.its-hero-shell .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: var(--its-text-mid);
    animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.its-hero-shell .hero-badge-star {
    color: #f59e0b;
    font-size: 13px;
}

.its-hero-shell .hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--its-text-dark);
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.its-hero-shell .hero-sub {
    font-size: 15.5px;
    line-height: 1.68;
    color: var(--its-text-muted);
    font-weight: 500;
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.its-hero-shell .hero-growth-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 152, 120, 0.22);
    box-shadow: 0 12px 30px rgba(228, 149, 126, 0.18);
    color: #334155;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    border: 0;
    cursor: default;
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both,
        float-n5 3.8s ease-in-out 1.2s infinite;
}

.its-hero-shell .hero-growth-chip strong {
    color: #22c55e;
    font-weight: 900;
}

/* .its-hero-shell .hero-growth-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
    animation: pulseDot 1.5s ease-out infinite;
} */

.its-hero-shell .btn-hero-primary {
    background: var(--its-blue);
    color: #fff;
    border-radius: 999px;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s ease, transform 0.15s ease;
    text-decoration: none;
    border: none;
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.its-hero-shell .btn-hero-primary:hover {
    background: var(--its-blue-dark);
    transform: translateY(-1px);
    color: #fff;
}

.its-hero-shell .btn-hero-outline {
    background: #fff;
    color: var(--its-text-dark);
    border: 1.5px solid var(--its-border);
    border-radius: 999px;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s ease, transform 0.15s ease, color 0.2s ease;
    text-decoration: none;
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
}

.its-hero-shell .btn-hero-outline:hover {
    border-color: var(--its-blue);
    color: var(--its-blue);
    transform: translateY(-1px);
}

.its-hero-shell .icon-circle-btn {
    width: 27px;
    height: 27px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.its-hero-shell .proof-avatars {
    display: flex;
}

.its-hero-shell .proof-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    object-fit: cover;
    margin-left: -10px;
}

.its-hero-shell .proof-avatars img:first-child {
    margin-left: 0;
}

.its-hero-shell .proof-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--its-text-dark);
}

.its-hero-shell .proof-stars {
    color: #f59e0b;
    font-size: 12px;
}

.its-hero-shell .proof-rating {
    font-size: 11.5px;
    color: var(--its-text-muted);
    font-weight: 500;
}

.its-hero-shell .d-flex.align-items-center.gap-3:last-child {
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.66s both;
}

.its-hero-shell .hero-right-wrap {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.its-hero-shell .hero-device {
    width: 100%;
    max-width: 560px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 48px rgba(30, 60, 120, 0.18));
    animation: heroFadeRight 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.its-hero-shell .float-pill {
    position: absolute;
    background: #fff;
    border-radius: 999px;
    padding: 9px 16px 9px 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 8px 32px rgba(30, 60, 120, 0.13);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--its-text-dark);
    white-space: nowrap;
    z-index: 5;
    animation-fill-mode: both;
}

.its-hero-shell .float-pill img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.its-hero-shell .pill-delivery {
    top: 32px;
    right: 16px;
}

.its-hero-shell .pill-ai {
    top: 170px;
    left: -44px;
}

.its-hero-shell .pill-secure {
    bottom: 150px;
    right: -42px;
}

.its-hero-shell .pill-support {
    top: 69px;
    left: 75px;
}

.its-hero-shell .pill-conversion {
    bottom: 18px;
    left: 22px;
}

.its-hero-shell .pill-delivery {
    animation: heroFadeDown 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both,
        float-n1 3.4s ease-in-out 1.6s infinite;
}

.its-hero-shell .pill-ai {
    animation: heroFadeLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.78s both,
        float-n2 3.9s ease-in-out 1.7s infinite;
}

.its-hero-shell .pill-secure {
    animation: heroFadeRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both,
        float-n3 3.5s ease-in-out 1.85s infinite;
}

.its-hero-shell .pill-support {
    animation: heroFadeLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1s both,
        float-n4 4.1s ease-in-out 1.95s infinite;
}

.its-hero-shell .pill-conversion {
    animation: heroFadeDown 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.12s both,
        float-n5 3.7s ease-in-out 2.05s infinite;
}

.its-hero-shell .stats-bar {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 2px 18px rgba(30, 60, 120, 0.07);
    overflow: hidden;
    animation: heroFadeUp 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.85s both;
}

.its-hero-shell .stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 28px;
}

.its-hero-shell .stat-item+.stat-item {
    border-left: 1px solid var(--its-border);
}

.its-hero-shell .stat-icon img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.its-hero-shell .stat-number {
    font-size: 34px;
    font-weight: 900;
    color: var(--its-text-dark);
    letter-spacing: -1px;
    line-height: 1;
}

.its-hero-shell .stat-label {
    font-size: 13.5px;
    color: var(--its-text-muted);
    font-weight: 600;
    margin-top: 3px;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

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

@keyframes heroFadeDown {
    from {
        opacity: 0;
        transform: translateY(-26px);
    }

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

@keyframes heroFadeLeft {
    from {
        opacity: 0;
        transform: translateX(-32px);
    }

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

@keyframes heroFadeRight {
    from {
        opacity: 0;
        transform: translateX(32px);
    }

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

@keyframes float-n1 {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -12px, 0);
    }
}

@keyframes float-n2 {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(10px, -10px, 0);
    }
}

@keyframes float-n3 {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-10px, -8px, 0);
    }
}

@keyframes float-n4 {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(8px, -14px, 0);
    }
}

@keyframes float-n5 {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-6px, -9px, 0);
    }
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
        opacity: 1;
    }

    70% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
        opacity: 0.95;
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
        opacity: 1;
    }
}

@media (max-width: 1199px) {
    .heading{ font-size: 36px;}
    .xl_heading{ font-size: 40px;}
    .lg_heading{ font-size: 30px;}
    .md_heading{ font-size: 24px;}
    .sm_heading{ font-size: 20px;}
    .xs_heading{ font-size: 16px;}

    .its-hero-shell .hero-title {
        font-size: 42px;
    }

    .its-hero-shell .pill-support {
        left: 8px;
    }

    .its-hero-shell .pill-conversion {
        left: 0;
    }
}

@media (max-width: 991px) {

    .heading{ font-size: 30px;}
    .xl_heading{ font-size: 36px;}
    .lg_heading{ font-size: 26px;}
    .md_heading{ font-size: 22px;}
    .sm_heading{ font-size: 20px;}
    .xs_heading{ font-size: 16px;}

    .its-hero-shell {
        padding-top: 10px;
    }

    .its-hero-shell .site-navbar {
        border-radius: 20px;
        padding: 10px 16px;
    }

    .its-hero-shell .its-dropdown-menu {
        margin-top: 8px;
        min-width: 100%;
    }

    .its-hero-shell .hero-title {
        font-size: 34px;
        letter-spacing: -0.9px;
    }

    .its-hero-shell .hero-right-wrap {
        min-height: 360px;
        margin-bottom: 25px;
    }

    .its-hero-shell .float-pill {
        font-size: 12.5px;
        padding: 8px 14px 8px 10px;
    }

    .its-hero-shell .pill-support {
        top: 70px;
        left: 10px;
    }

    .its-hero-shell .pill-conversion {
        bottom: 6px;
        left: 10px;
    }

    .its-hero-shell .stat-item {
        padding: 20px 16px;
    }

    .its-hero-shell .stat-item+.stat-item {
        border-left: 0;
    }
   
}

@media (prefers-reduced-motion: reduce) {

    body.js-enhanced .reveal-on-scroll,
    .its-hero-shell .site-navbar,
    .its-hero-shell .hero-badge,
    .its-hero-shell .hero-title,
    .its-hero-shell .hero-sub,
    .its-hero-shell .hero-growth-chip,
    .its-hero-shell .btn-hero-primary,
    .its-hero-shell .btn-hero-outline,
    .its-hero-shell .hero-device,
    .its-hero-shell .float-pill,
    .its-hero-shell .stats-bar,
    .its-hero-shell .hero-growth-dot {
        animation: none !important;
        transition: none !important;
    }

    body.js-enhanced .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
    .its-hero-shell .hero-device{width: 50%;}
}

ul.achievement-list li a:hover,
ul.achievement-list li a:focus {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Service page shared structure from index page */
.service-page {
    font-family: 'Poppins', sans-serif;
}

.service-page .hero-section {
    background: url(https://infotechsolz.com/html/hero_bg.png) center top / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: 'Manrope', sans-serif;
}

.service-page .hero-section>.container-xl {
    width: 100%;
}

/* ════════ CTA COMPONENT ════════ */
.its-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out forwards;
}

.its-cta__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    display: inline-block;
}

.its-cta__heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 18px;
    animation: fadeInUp 0.8s ease-out 0.1s forwards;
}

.its-cta__heading-highlight {
    color: var(--blue);
    font-weight: 800;
}

.its-cta__sub {
    font-size: 16px;
    line-height: 1.68;
    color: var(--text2);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.its-cta__trust-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.its-cta__trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

.its-cta__trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.15);
    color: var(--blue);
    flex-shrink: 0;
}

.its-cta__trust-icon svg {
    width: 14px;
    height: 14px;
}

.its-cta__stats {
    display: flex;
    align-items: center;
    gap: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.its-cta__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px 20px;
    flex: 1;
}

.its-cta__stat-num {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.its-cta__stat-label {
    font-size: 12px;
    color: var(--text2);
    font-weight: 600;
}

.its-cta__stat-divider {
    width: 1px;
    height: 44px;
    background: var(--border);
}

/* .service-page .its-hero-shell .hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
} */

.service-page .its-hero-shell .hero-sub {
    font-family: 'Manrope', sans-serif;
    font-size: 15.5px;
    line-height: 1.68;
    color: var(--its-text-muted);
}

.service-page .oa-section,
.service-page .services-grid-section,
.service-page .hire-section,
.service-page .consult-section {
    padding: 70px 0;
}

.service-page footer {
    margin-top: 0;
}

@media (max-width: 991px) {
    .service-page .its-hero-shell .hero-title {
        font-size: 34px;
    }
}

ul.achievement-list li a {
    padding: 20px 0;
    display: block;
    transition: all .3s ease-in-out;
}

ul.achievement-list li a:hover h4,
ul.achievement-list li a:focus h4 {
    color: #349cd0;
}

/*  */
/* Background */
/* New testimonial design */
.section-wrapper {
    position: relative;
    overflow: hidden;
    background-image: url('https://infotechsolz.com/html/assets/images/testimonial_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.section-wrapper:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.45) 0%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0.45) 100%);

    z-index: -1;
}

/* Sparkle dots */
.dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.dot {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(180, 220, 255, 0.1) 100%);
    animation: twinkle 3.5s ease-in-out infinite alternate;
}

@keyframes twinkle {
    from {
        opacity: 0.4;
        transform: scale(1);
    }

    to {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* ── Header ── */
.testimonial_header {
    position: relative;
    z-index: 2 !important;
    text-align: center;
    margin-bottom: 40px;
}

/* .testimonial_header h2 {
    font-size: 2.7rem;
    font-weight: 800;
    color: #1a2e4a;
    letter-spacing: -0.6px;
    line-height: 1.15;
} */

.testimonial_header p {
    font-size: 0.97rem;
    color: #7a9ab8;
    margin-top: 10px;
    font-weight: 400;
}

/* ── Main layout: flags + card + flags ── */
.main-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1180px;
    gap: 0;
}

/* ── Side flag columns — close to card ── */
.side-col {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 200px;
    height: 420px;
    /* matches card height */
}

/* Each flag bubble — absolutely positioned within side-col */
.flag-item {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.78);
    box-shadow:
        0 4px 22px rgba(100, 160, 220, 0.18),
        0 0 0 8px rgba(200, 228, 255, 0.28);
    background: rgba(220, 238, 255, 0.32);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: floatFlag ease-in-out infinite alternate;
    opacity: 0.88;
    overflow: visible;
    line-height: 1;
}

@keyframes floatFlag {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-12px);
    }
}

/* ── Card wrap ── */
.card-wrap {
    flex: 1;
    max-width: 680px;
    position: relative;
    z-index: 3;
}

/* ── Ultra transparent testimonial card ── */
.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.40);
    border-radius: 26px;
    padding: 56px 60px 50px;
    text-align: center;
    box-shadow:
        0 6px 40px rgba(140, 190, 240, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.50);
    position: relative;
    transition: opacity 0.32s ease, transform 0.32s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 26px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.00) 100%);
    pointer-events: none;
}

.quote-icon {
    font-size: 5rem;
    line-height: 1;
    color: #90bce0;
    font-family: Georgia, serif;
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.38;
    user-select: none;
    letter-spacing: -4px;
}

.testimonial-text {
    font-size: 1.28rem;
    font-weight: 600;
    color: #1e3350;
    line-height: 1.78;
    margin-top: 38px;
    margin-bottom: 28px;
    position: relative;
}

.testimonial-text .end-quote {
    color: #90bce0;
    font-family: Georgia, serif;
    font-size: 1.6em;
    line-height: 0;
    vertical-align: -0.3em;
    opacity: 0.42;
}

.reviewer-avatar {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    object-fit: cover;
    border: 3.5px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 6px 22px rgba(100, 160, 220, 0.28),
        0 0 0 6px rgba(200, 230, 255, 0.30);
    margin: 0 auto 14px;
    display: block;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a2e4a;
    margin-bottom: 4px;
}

.reviewer-role {
    font-size: 0.87rem;
    color: #7a9ab8;
    font-weight: 400;
    margin-bottom: 14px;
}

.stars {
    color: #f5a623;
    font-size: 1.25rem;
    letter-spacing: 3px;
}

/* ── Arrow buttons — INSIDE card bottom corners ── */
.arrow-btn {
    position: absolute;
    bottom: 22px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    color: #5a8ab5;
    font-size: 1.35rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(100, 160, 220, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.22s ease;
    z-index: 3;
}

.arrow-btn.left-arrow {
    left: 22px;
}

.arrow-btn.right-arrow {
    right: 22px;
}

.arrow-btn:hover {
    background: rgba(255, 255, 255, 0.90);
    color: #1a5fa0;
    box-shadow: 0 5px 18px rgba(100, 160, 220, 0.24);
    transform: scale(1.08);
}

/* End Testimonial */
/* Card */
.testimonial-ui .container {
    display: flex;
    gap: 15px;
}

.testimonial-ui {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 0 0 50px;
}

.testimonial-ui::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(247, 247, 247, 0.6);
    z-index: -1;
}

.testimonial-box {
    background: #ffffff;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    padding-top: 60px;
    overflow: visible;
    margin-top: 50px;
    margin-bottom: 20px;
    margin-left: 5px;
    margin-right: 5px;
}

.quote-icon {
    position: absolute;
}

.quote-icon::before {
    content: "❝";
    color: #90bce0;
    font-size: 80px;
    font-weight: bold;
}

.bottom_info_sec {
    gap: 10px;
}

.bottom_info_sec .name_wrapper {
    background-color: #0077b5;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom_info_sec .name_wrapper h4 {
    font-size: 16px;
    margin-bottom: 0;
}

.avatar {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.quote {
    font-size: 40px;
    color: #1f5edc;
    margin-top: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    margin: 30px 0 15px;
    line-height: 1.6;
}

.testimonial_carousel .owl-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.testimonial_carousel .owl-nav .owl-prev,
.testimonial_carousel .owl-nav .owl-next {
    font-size: 18px !important;
    background-color: #4F8FF7 !important;
    width: 40px;
    height: 40px;
    margin: auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff !important;
}

.testimonial_carousel .owl-nav .owl-prev {
    position: relative;
    left: -50px;
}

.testimonial_carousel .owl-nav .owl-next {
    position: relative;
    right: -50px;
}

.service_wrapper_ {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.service_wrapper_box_ {
    display: flex;
    position: relative;
}

.service_wrapper_box_ .service_content_ {
    width: 55%;
}

.service_wrapper_box_ .service_content_ img {
    width: 40px;
    height: 38px;
    object-fit: contain;
}

.service_wrapper_box_ .service_content_ h2 {
    font-size: 24px;
}

.service_wrapper_box_ .service_content_ .image_content_1 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service_wrapper_box_ .service_content_ ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.service_wrapper_box_ .service_content_ ul li {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.service_wrapper_box_ .service_content_ ul li .icon_wrap {
    width: 25px;
    height: 25px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service_wrapper_box_ .service_content_ ul li .icon_wrap i {
    color: #3b82f6;
}

.service_content_ a {
    margin-top: 50px;
}

.service_wrapper_box_ .service_img_ {
    position: absolute;
    right: 17%;
    bottom: 42px;
    z-index: -1;
}

.service_wrapper_box_ .service_img_ img {
    width: 210px;
}

.service_wrapper_box_ .service_img_.service_img_1 img {
    width: 300px;
}

/* ── CTA SECTION WRAPPER ── */
.its-cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #eef4ff 0%, #f5f8ff 40%, #e9f2ff 100%);
}

/* ── AMBIENT BACKGROUND ── */
.its-cta__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.its-cta__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.its-cta__blob--1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, transparent 70%);
    top: -100px;
    left: -120px;
    animation: its-cta-float1 8s ease-in-out infinite;
}

.its-cta__blob--2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(79, 143, 247, 0.18) 0%, transparent 70%);
    bottom: -60px;
    right: 100px;
    animation: its-cta-float2 10s ease-in-out infinite;
}

.its-cta__blob--3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: its-cta-float1 6s ease-in-out infinite reverse;
}

.its-cta__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
}

@keyframes its-cta-float1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(18px, -22px);
    }
}

@keyframes its-cta-float2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-14px, 18px);
    }
}

/* ── INNER GRID ── */
.its-cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
    align-items: center;
}

/* ── LEFT PANEL ── */
.its-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 22px;
}

.its-cta__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2563eb;
    animation: its-cta-pulse 2s ease-in-out infinite;
}

@keyframes its-cta-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.75);
    }
}

.its-cta__heading {
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 800;
    color: #1e293b;
    line-height: 1.18;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.its-cta__heading-highlight {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.its-cta__sub {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 420px;
}

/* Trust list */
.its-cta__trust-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.its-cta__trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.93rem;
    color: #334155;
    font-weight: 500;
}

.its-cta__trust-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

/* Stats row */
.its-cta__stats {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 14px;
    padding: 20px 28px;
    width: fit-content;
}

.its-cta__stat {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 3px;
}

.its-cta__stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
    letter-spacing: -0.02em;
}

.its-cta__stat-label {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.its-cta__stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(37, 99, 235, 0.15);
}

/* ── FORM CARD ── */
.its-cta__form-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    box-shadow:
        0 0 0 1px rgba(37, 99, 235, 0.1),
        0 20px 60px rgba(37, 99, 235, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.its-cta__card-glow {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #1d4ed8);
    border-radius: 24px 24px 0 0;
}

.its-cta__form-header {
    padding: 30px 36px 0;
    border-bottom: 1px solid #f1f5f9;
}

.its-cta__form-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.its-cta__form-sub {
    font-size: 0.82rem;
    color: #94a3b8;
    margin: 0;
}

.its-cta__form-body {
    padding: 24px 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.apply-modal.get_modal{padding: 30px 20px;}
.apply-modal.get_modal .modal-close-btn{z-index: 1; top: 20px;}
.hero-right-wrap-1{display: none;}
/* ── FORM ROW ── */
.its-cta__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* ── FIELD ── */
.its-cta__field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.its-cta__label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.03em;
}

.its-cta__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.its-cta__field-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.its-cta__field-icon--top {
    top: 15px;
    transform: none;
}

.its-cta__input {
    width: 100%;
    padding: 11px 14px 11px 36px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.87rem;
    color: #1e293b;
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    appearance: none;
    outline: none;
}

.its-cta__input::placeholder {
    color: #cbd5e1;
}

.its-cta__input:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Select */
.its-cta__select-wrap {
    position: relative;
}

.its-cta__select {
    cursor: pointer;
    padding-right: 36px;
}

.its-cta__select-caret {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    font-size: 0;
    line-height: 1;
}

/* Textarea */
.its-cta__textarea-wrap {
    align-items: flex-start;
}

.its-cta__textarea {
    min-height: 95px;
    resize: none;
    padding-top: 12px;
    line-height: 1.55;
}

/* Checkbox */
.its-cta__check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    margin-top: -2px;
}

.its-cta__checkbox {
    display: none;
}

.its-cta__check-custom {
    width: 17px;
    height: 17px;
    border: 1.5px solid #cbd5e1;
    border-radius: 5px;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.its-cta__checkbox:checked+.its-cta__check-custom {
    background: #2563eb;
    border-color: #2563eb;
}

.its-cta__checkbox:checked+.its-cta__check-custom::after {
    content: '';
    display: block;
    width: 9px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
}

.its-cta__check-label {
    font-size: 0.79rem;
    color: #64748b;
}

.its-cta__link {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Submit button */
.its-cta__submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    color: #ffffff;
    border: none;
    border-radius: 11px;
    padding: 14px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
    overflow: hidden;
    margin-top: 2px;
}

.its-cta__submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.its-cta__submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

.its-cta__submit-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.its-cta__btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.its-cta__submit-btn:hover .its-cta__btn-icon {
    transform: translateX(3px);
}

/* Secure note */
.its-cta__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.74rem;
    color: #94a3b8;
    margin-top: -4px;
}

/* Responsive tweaks */
@media (max-width: 1366px) {

    .heading{ font-size: 40px;}
    .xl_heading{ font-size: 48px;}
    .lg_heading{ font-size: 36px;}
    .md_heading{ font-size: 26px;}
    .sm_heading{ font-size: 22px;}
    .xs_heading{ font-size: 18px;}

    .h2-main-heading {
        font-size: 40px;
    }

    .service-card p {
        font-size: 14px;
    }

    .cta-left h2 {
        font-size: 40px;
    }

    .process-body p {
        font-size: 14px;
    }
}

@media (max-width: 1199px) {

    .cta-left h2 {
        font-size: 36px;
    }
}

@media (max-width: 1024px) {

    nav,
    .section,
    .hero,
    .cta-section,
    footer {
        padding-left: 28px;
        padding-right: 28px;
    }

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

    .service-card,
    .service-card.is-active,
    .services-grid:hover .service-card,
    .services-grid:hover .service-card:hover {
        flex: unset;
    }

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

    .its-cta__inner {
        gap: 44px;
    }

    .its-cta__form-header,
    .its-cta__form-body {
        padding-left: 28px;
        padding-right: 28px;
    }

    .cta-section {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 991px) {

    .cta-left h2 {
        font-size: 30px;
    }

    .trusted h2 {
        font-size: 26px;
    }

    .process-body h3,
    .cta-right h3 {
        font-size: 22px;
    }

    .services-grid-section .sg-card .sg-desc {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .its-process__layout {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 20px;
    }

    .its-process__left-nav {
        position: static;
        display: flex;
        /* flex-wrap: wrap; */
        gap: 8px;
        overflow-x: scroll;
    }

    .its-process__nav-label,
    .its-process__nav-progress,
    .its-process__nav-sub,
    .its-process__nav-arrow {
        display: none;
    }

    .its-process__card {
        flex-direction: column;
    }

    .its-process__card-accent {
        width: 100%;
        height: 5px;
    }

    .its-process__card-body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 28px;
    }

    .its-process__card-visual {
        width: 100%;
    }

    .its-process__bottom-nav {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        padding: 0 20px;
    }

    .its-process__heading-wrap h2 {
        font-size: 30px;
    }

    .its-cta__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .its-cta__heading {
        font-size: 32px;
    }

    .its-cta__stats {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {

    .heading{ font-size: 26px;}
    .xl_heading{ font-size: 30px;}
    .lg_heading{ font-size: 24px;}
    .md_heading{ font-size: 20px;}
    .sm_heading{ font-size: 18px;}
    .xs_heading{ font-size: 16px;}

    .hero {
        padding: 56px 0 0;
        min-height: auto;
    }

    .hero>.container:first-child {
        min-height: auto;
    }

    .hero .container {
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
        gap: 60px;
    }

    .trusted h2,
    .cta-left h2 {
        font-size: 24px;
    }

    .footer-grid {
        gap: 25px;
        grid-template-columns: 1fr 1fr;
    }

    ul.achievement-list li {
        width: 45%;
    }

    .process-body h3,
    .cta-right h3 {
        font-size: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .service-page .its-hero-shell .hero-title {
        font-size: 30px;
        line-height: 1.15;
    }

    .service-page .its-hero-shell .hero-sub {
        font-size: 14px;
    }

    .its-hero-shell .hero-section {
        border-radius: 20px;
        min-height: auto;
    }

    .its-hero-shell .hero-title {
        font-size: 30px;
        line-height: 1.15;
    }

    .its-hero-shell .hero-sub {
        font-size: 14px;
    }

    .its-hero-shell .hero-badge {
        font-size: 9.5px;
        letter-spacing: 0.04em;
        padding: 7px 12px;
    }

    .its-hero-shell .hero-growth-chip {
        font-size: 14px;
        padding: 9px 14px;
    }

    .its-hero-shell .btn-hero-primary,
    .its-hero-shell .btn-hero-outline,
    .its-hero-shell .btn-quote-nav {
        width: 100%;
        justify-content: center;
    }

    .its-hero-shell .pill-ai,
    .its-hero-shell .pill-delivery,
    .its-hero-shell .pill-secure,
    .its-hero-shell .pill-support,
    .its-hero-shell .pill-conversion {
        position: static;
        margin-bottom: 10px;
        max-width: max-content;
    }

    .its-hero-shell .hero-right-wrap {
        display: block;
        min-height: auto;
    }

    .its-hero-shell .hero-device {
        width: 50%;
        margin: 0 auto;
        display: flex;
    }

    .its-hero-shell .proof-label {
        font-size: 12px;
    }

    .its-hero-shell .stats-bar .row>[class*='col-'] {
        border-bottom: 1px solid var(--its-border);
    }

    .its-hero-shell .stats-bar .row>[class*='col-']:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .its-hero-shell .stat-number {
        font-size: 28px;
    }

    /* ── 2x2 গ্রিড লেআউট ── */
    .services-grid-section .row.g-4 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 10px;
    }

    /* col-lg-3 এর width override */
    .services-grid-section .row.g-4>[class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    /* ── Card ছোট করো, শুধু icon + title ── */
    .services-grid-section .sg-card {
        padding: 16px 10px !important;
        border-radius: 14px !important;
        height: auto !important;
        min-height: unset !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
        text-align: center !important;
    }

    /* Description */
    

    /* Icon */
    .services-grid-section .sg-icon-box {
        width: 52px !important;
        height: 52px !important;
        border-radius: 12px !important;
        margin: 0 auto !important;
    }

    .services-grid-section .sg-icon-box img {
        width: 42px !important;
    }

    /* Title font size */
    .services-grid-section .sg-title {
        margin-bottom: 0 !important;
    }

    /* Active card highlight */
    .services-grid-section .sg-card.active {
        transform: scale(1.03) !important;
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3) !important;
    }

    /* ── Content panel full width ── */
    .services-grid-section .ir-content-wrapper {
        padding: 24px 16px !important;
        border-radius: 18px !important;
        margin-top: 25px !important;
        background: #fff !important;
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08) !important;
        border: 1px solid #e8f0fe !important;
    }

    .services-grid-section .ir-content-wrapper.active {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        align-items: flex-start !important;
    }

    /* Image */
    .services-grid-section .ir-visual {
        width: 100% !important;
        flex: unset !important;
    }

    .services-grid-section .ir-visual img {
        max-width: 100% !important;
        max-height: 180px !important;
        object-fit: contain !important;
        margin: 0 auto !important;
        display: block !important;
        border-radius: 14px !important;
        box-shadow: none !important;
    }

    /* Text area */
    .services-grid-section .ir-info {
        width: 100% !important;
        flex: unset !important;
    }

    .services-grid-section .ir-head {
        font-size: 1.4rem !important;
        margin-bottom: 10px !important;
    }

    .services-grid-section .ir-desc {
        font-size: 0.92rem !important;
        margin-bottom: 14px !important;
    }

    .services-grid-section .ir-features li {
        font-size: 0.88rem !important;
        margin-bottom: 8px !important;
    }

    /* Stats side by side */
    .services-grid-section .ir-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .services-grid-section .ir-stat-box {
        /* min-width: unset !important; */
        width: 100% !important;
    }
    .services-grid { grid-template-columns: repeat(1, 1fr); }
    .services_sec .service-card{min-height: auto;}
    .navbar-brand img{width: 180px;}
    nav, .section, .hero, .cta-section, footer {
        padding-left: 10px;
        padding-right: 10px;
    }
    .marquee-wrap{padding: 50px 0 20px;}
    .testimonial-card{padding: 56px 35px 50px;}
    .its-cta__inner {padding: 0 10px;}
}

@media (max-width: 576px) {
    .its-cta__form-row {
        grid-template-columns: 1fr;
    }

    .its-cta__form-header,
    .its-cta__form-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .its-cta__stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .its-cta__stat-divider {
        display: none;
    }
}

@media (max-width: 575px) {

    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        gap: 14px;
    }

    .its-process__section {
        padding: 60px 0 80px;
    }

    /* .its-process__card-title {
        font-size: 22px;
    } */
    /*  */
    .services_sec .service-card{min-height: auto;}
    .navbar-brand img{width: 170px;}
    .its-process__amb-blob--1 {display: none;}
    .its-process__amb-blob--2 {display: none;}
    .its-process__amb-blob--3 {display: none;}
    .its-process__card-body {grid-template-columns: 1fr; gap: 30px; }
    .its-process__card-info{display: flex; flex-direction: column; margin: 0 auto;}
    .its-process__cta-btn{max-width: max-content;}
}

@media (max-width: 480px) {
    .heading{ font-size: 24px;}
    .xl_heading{ font-size: 26px;}
    .lg_heading{ font-size: 22px;}
    .md_heading{ font-size: 18px;}
    .sm_heading{ font-size: 16px;}
    .xs_heading{ font-size: 14px;}
    .navbar-brand img{width: 150px;}
    /* .its-process__left-nav{flex-direction: column;} */
    .testimonial-card{padding: 56px 25px 50px;}
}
@media (max-width: 400px) {
    .navbar-brand img{width: 130px;}
    .its-hero-shell .stat-icon img { width: 34px; height: 34px;}
    .footer-grid { grid-template-columns: 1fr; gap: 25px;}
    .footer-brand p{padding: 5px 0;}
    .footer-col ul{margin-bottom: 0;}
}
/* ===== Service page styles migrated from service.html ===== */
/* ── CORE VARIABLES ── */
/* :root {
    --brand-blue: #3b82f6;
    --brand-blue-dark: #2563eb;
    --brand-light: #eff6ff;
    --text-main: #0f172a;
    --text-sub: #64748b;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --wc-title: #233a69;
    --wc-blue: #5d9cff;
    --wc-text: #5d6f93;
    --wc-card-bg: rgba(255, 255, 255, .34);
    --wc-card-border: rgba(255, 255, 255, .55);
    --wc-shadow: 0 8px 30px rgba(87, 121, 190, .10);
    --wc-radius: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    margin: 0;
    background: #fff;
    color: var(--text-main);
    overflow-x: hidden;
} */

/* ── NAVBAR ── */
.navbar {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .dropdown-toggle,
.navbar .dropdown-toggle:focus,
.navbar .dropdown-toggle:active,
.navbar .nav-link:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* NAV LINK BASE */
.navbar .nav-link {
    position: relative;
    font-weight: 500;
    color: #64748b;
    transition: color 0.3s ease;
}

/* UNDERLINE EFFECT */
.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* HOVER */
.navbar .nav-link:hover {
    color: #2563eb;
}

.navbar .nav-link:hover::after {
    width: 70%;
}

/* ACTIVE LINK */
.navbar .nav-link.active-link::after {
    width: 100%;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: #111 !important;
    letter-spacing: -0.5px;
}

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

.nav-link {
    color: #475569 !important;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 4px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--brand-blue) !important;
}

.btn-quote {
    background: var(--brand-blue);
    color: #fff !important;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-quote:hover {
    background: var(--brand-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* ── HERO SECTION ── */
.hero-section {
    background: url('https://infotechsolz.com/html/hero_bg.png') center top / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: 'Manrope', sans-serif;
}

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

.breadcrumb-area {
    font-size: 0.9rem;
    color: var(--text-sub);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.breadcrumb-area a {
    color: var(--text-sub);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-area a:hover {
    color: var(--brand-blue);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-sub {
    color: var(--text-sub);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.7;
}

.btn-hero-primary {
    background: var(--brand-blue);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2.5rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    transition: 0.3s;
}

.btn-hero-primary:hover {
    background: var(--brand-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.btn-hero-outline {
    background: #fff;
    color: #222;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 0.85rem 2.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-hero-outline:hover {
    background: #f8f9fa;
    border-color: #cbd5e1;
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-img {
    width: 80%;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.2));
    animation: floatMain 6s ease-in-out infinite;
}

@keyframes floatMain {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Replace existing badge-float styles */
.badge-float {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    position: absolute;
    flex-direction: column;
    gap: 0;
    font-size: 0.60rem;
    font-weight: 700;
    z-index: 3;
    animation: floatBadge 5s ease-in-out infinite;
    text-align: center;
    background: rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 4px 10px rgba(255, 255, 255, 0.6), inset 0 -4px 10px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}


.badge-float .icon-circle img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.badge-fast {
    top: 40px;
    right: 0%;
    animation-delay: 0s;
}

.badge-support {
    bottom: 60px;
    left: 5%;
    animation-delay: 2s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ── OUR APPROACH SECTION (REDESIGNED) ── */
.oa-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #f0f9ff 0%, #e0f2fe 40%, #f0f9ff 100%);
    padding: 100px 0;
    font-family: var(--font-body);
    /* min-height: 120vh; */
}

.oa-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.oa-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, .1);
    border: 1px solid rgba(59, 130, 246, .2);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 20px;
}

h4.oa-title {
    transition: all 0.4s ease;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 36px;
    border-radius: 8px;
    color: #000;
    display: inline-block;
    width: 100%;
}

.oa-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.oa-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    z-index: 2;
    align-items: flex-start;
}

/* Left List Styling */
.oa-list-col {
    width: 50%;
    position: relative;
}

.oa-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

/* Vertical Line */
.oa-list::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50px;
    bottom: 50px;
    width: 16px;
    background: linear-gradient(to bottom, #bfdbfe, #93c5fd, #bfdbfe);
    border-radius: 99px;
    z-index: 0;
}

/* .oa-item.active .oa-content-wrapper {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(219, 234, 254, 0.5));
            border-radius: 14px;
            border: 1px solid rgba(59, 130, 246, 0.15);
        } */

.oa-item:not(.active) .oa-content-wrapper {
    padding: 10px 15px;
}

.oa-item {
    display: flex;
    gap: 25px;
    position: relative;
    margin-bottom: -12px;
    z-index: 1;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.icon-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 2px 2px 6px rgba(255, 255, 255, 0.6),
        inset -2px -2px 6px rgba(0, 0, 0, 0.05);
}

.oa-item.active {
    opacity: 1;
}

.oa-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #94a3b8;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.oa-item.active .oa-marker {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(59, 130, 246, .15);
}

.oa-content-wrapper {
    flex: 1;
    padding-top: 5px;
}

.oa-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    transition: color 0.3s;
}

.oa-item.active .oa-title {
    color: #fff;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 60%, rgba(255, 255, 255, 0.25) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.2), transparent 40%);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    display: inline-block;
    width: 100%;
}

.oa-item.active .oa-title::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), transparent 50%);
    opacity: 0.4;
    pointer-events: none;
}

/* Detail List (The sub-items like Requirements, Analysis) */
.oa-details {
    list-style: none;
    margin-top: 4px;
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.oa-item.active .oa-details {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
    padding: 15px 20px;
    margin-bottom: 10px;
}

.oa-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 8px;
}

.oa-details li:last-child {
    margin-bottom: 0;
}

.oa-details li i {
    color: var(--brand-blue);
    font-size: 0.85rem;
}

/* Right Column Styling */
.oa-visual-col {
    width: 50%;
    position: sticky;
    top: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.oa-visual-sticky img {
    max-width: 120%;
    height: auto;
    border-radius: 20px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
    padding-top: 30px;
}

.oa-visual-col:hover .oa-visual-sticky img {
    transform: perspective(1000px) rotateY(0deg);
}

/* ── OUR SERVICES CARDS (Clickable Buttons) ── */
.services-grid-section {
    padding: 80px 0;
    background: url(https://infotechsolz.com/html/our-service-bg.png) center top / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: 'Manrope', sans-serif;
}

.sg-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sg-card.active {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

.sg-card .sg-title,
.sg-card .sg-desc {
    transition: 0.3s;
}

.sg-card.active .sg-title,
.sg-card.active .sg-desc {
    color: #fff !important;
}
.services_works_row{display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 25px;}
.sg-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: var(--brand-light);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.sg-icon-box img {
    width: 70px;
}

.sg-card.active .sg-icon-box {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.sg-title {
    color: #0f172a;
    margin-bottom: 10px;
}

.sg-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.ir-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('https://infotechsolz.com/html/our-service-bg.png') no-repeat center right / contain;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.ir-container {
    position: relative;
    z-index: 2;
}

.ir-header {
    margin-bottom: 60px;
}

.ir-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.ir-content-wrapper {
    /* background: #fff; */
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    display: none;
    animation: fadeInUp 0.6s ease;
}

.ir-content-wrapper.active {
    display: flex;
    align-items: center;
    gap: 60px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.ir-visual {
    flex: 1;
    position: relative;
}

.ir-visual img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s;
}

.ir-visual:hover img {
    transform: scale(1.02);
}

.ir-info {
    flex: 1;
}

.ir-eyebrow {
    color: var(--brand-blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
}

.ir-head {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ir-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
}

.ir-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.ir-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #334155;
    font-weight: 600;
}

.ir-features li i {
    color: var(--brand-blue);
    font-size: 1.1rem;
}

.ir-stats {
    display: flex;
    gap: 20px;
}

.ir-stat-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 140px;
}

.ir-stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--brand-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.ir-stat-text h4 {
    color: #0f172a;
    margin: 0;
    line-height: 1;
}

.ir-stat-text p {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ── WHY CHOOSE US SECTION (GLASSMORPHISM) ── */
.why-choose-exact {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background:
        radial-gradient(circle at 8% 8%, rgba(255, 255, 255, .65) 0 8px, transparent 9px),
        radial-gradient(circle at 95% 18%, rgba(255, 255, 255, .45) 0 12px, transparent 13px),
        radial-gradient(circle at 90% 74%, rgba(255, 255, 255, .34) 0 10px, transparent 11px),
        radial-gradient(circle at 12% 82%, rgba(255, 255, 255, .28) 0 10px, transparent 11px),
        linear-gradient(180deg, rgba(255, 255, 255, .45), rgba(255, 255, 255, .10)),
        linear-gradient(rgba(29, 107, 243, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29, 107, 243, .04) 1px, transparent 1px),
        linear-gradient(180deg, #eef4ff 0%, #eaf1ff 50%, #edf3ff 100%);
    background-size:
        auto, auto, auto, auto, auto,
        28px 28px, 28px 28px, auto;
    background-position:
        0 0, 0 0, 0 0, 0 0, 0 0,
        0 0, 0 0, 0 0;
}

.why-choose-exact::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .58;
    background:
        radial-gradient(1200px 240px at 20% 28%, rgba(255, 255, 255, .30), transparent 62%),
        radial-gradient(1000px 220px at 76% 42%, rgba(255, 255, 255, .22), transparent 65%),
        radial-gradient(1100px 220px at 28% 75%, rgba(255, 255, 255, .20), transparent 68%);
    filter: blur(10px);
}

.why-choose-exact::after {
    content: "";
    position: absolute;
    inset: -5% -8%;
    pointer-events: none;
    opacity: .48;
    background:
        repeating-radial-gradient(ellipse at 18% 30%,
            rgba(255, 255, 255, .14) 0 2px,
            transparent 2px 34px),
        repeating-radial-gradient(ellipse at 82% 55%,
            rgba(255, 255, 255, .10) 0 2px,
            transparent 2px 38px);
    transform: rotate(-7deg) scale(1.15, .92);
    filter: blur(1.5px);
}

.wc-inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.wc-head {
    text-align: center;
    margin-bottom: 18px;
}

.wc-head h2 {
    margin: 0;
    color: var(--wc-title);
    font-size: 34px;
    line-height: 1.18;
    font-weight: 500;
    letter-spacing: .1px;
}

.wc-head h2 span {
    color: var(--wc-blue);
    font-weight: 700;
}

.wc-sub {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 22px;
    color: #5f6d8e;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
}

.wc-stage {
    margin-top: 10px;
}

.wc-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.wc-row.row-1 {
    margin-top: 8px;
}

.wc-row.row-2 {
    margin-top: -2px;
}

.wc-row.row-3 {
    margin-top: -2px;
}

.wc-item {
    position: relative;
}

.wc-item.left-top {
    width: 44.5%;
    margin-top: 0;
}

.wc-item.right-top {
    width: 46.5%;
    margin-top: 30px;
}

.wc-item.left-mid {
    width: 47%;
    margin-top: 0;
}

.wc-item.right-mid {
    width: 43.5%;
    margin-top: 16px;
}

.wc-item.bottom-wide {
    width: 66%;
    margin: 2px auto 0;
}

.glass-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 34px;
    min-height: 124px;
    padding: 23px 22px 20px 26px;
    border-radius: var(--wc-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, .42) 0%, rgba(255, 255, 255, .22) 100%);
    border: 1px solid var(--wc-card-border);
    box-shadow: var(--wc-shadow), inset 0 1px 0 rgba(255, 255, 255, .72), inset 0 -1px 0 rgba(255, 255, 255, .14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(87, 121, 190, 0.15);
}

.glass-card::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 14px;
    bottom: 14px;
    width: 44px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .14)), rgba(255, 255, 255, .18);
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, .55), inset -1px 0 0 rgba(255, 255, 255, .20), 0 0 22px rgba(255, 255, 255, .18);
    opacity: .95;
    z-index: 0;
}

.glass-card::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 22px;
    right: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .92), transparent);
    opacity: .9;
    z-index: 1;
}

.wc-icon {
    position: relative;
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    /* margin-left: 18px; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.15), inset 0 2px 6px rgba(255, 255, 255, 0.9);
    z-index: 2;
}

.wc-icon img {
    width: 100px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 4px 10px rgba(59, 130, 246, 0.4));
}

.wc-copy {
    position: relative;
    z-index: 2;
    padding-top: 2px;
    flex: 1;
}

.wc-title {
    margin: 0 0 8px;
    color: #2a4270;
    font-size: 16px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: .1px;
}

.wc-title.upper {
    text-transform: uppercase;
}

.wc-title .normal {
    display: block;
    text-transform: none;
    font-weight: 600;
}

.wc-desc {
    margin: 0;
    color: var(--wc-text);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 400;
}

.card-demand {
    min-height: 126px;
}

.card-fast {
    min-height: 132px;
}

.card-kick {
    min-height: 124px;
}

.card-delivery {
    min-height: 118px;
}

.card-seo {
    min-height: 118px;
}

.card-fast .wc-title {
    font-size: 15px;
    line-height: 1.08;
}

.card-kick .wc-title {
    font-size: 15px;
}

.card-delivery .wc-title {
    font-size: 15px;
}

.card-seo .wc-title {
    text-transform: none;
    font-size: 17px;
    margin-bottom: 7px;
}

/* ═══════════════════════════════════════════════════════════════
       USP ULTRA SECTION
       ═══════════════════════════════════════════════════════════════ */
.usp-section {
    padding: 80px 0;
    background: url('https://infotechsolz.com/html/unique-selling-proposition.png') center/cover no-repeat;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.usp-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(2px);
}

.usp-container {
    position: relative;
    z-index: 2;
}

.usp-title {
    text-align: center;
    margin-bottom: 60px;
}

.usp-title h2 {
    font-size: 42px;
    font-weight: 600;
    color: #1f2d4d;
}

.usp-title p {
    color: #6b7280;
}

.usp-card {
    position: relative;
    padding: 35px 25px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -1px 1px rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.usp-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 22px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.6));
    background-size: 200% 200%;
    animation: borderMove 6s linear infinite;
    filter: blur(8px);
    opacity: 0.6;
    z-index: -1;
}

@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.usp-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.15), transparent 60%);
    opacity: 0.5;
}

.usp-card .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
}

.usp-card:hover .shine {
    animation: shineMove 1s ease;
}

@keyframes shineMove {
    100% {
        left: 150%;
    }
}

.usp-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.usp-icon {
    width: 80px;
    margin-bottom: 20px;
}

.usp-card h5 {
    font-weight: 600;
    color: #1f2d4d;
}

.usp-card p {
    font-size: 14px;
    color: #6b7280;
}

.usp-btn {
    margin-top: 60px;
    display: inline-block;
    padding: 14px 45px;
    border-radius: 50px;
    background: linear-gradient(135deg, #5aa7ff, #3b82f6);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: 0.3s;
}

.usp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.6);
}

/* ═══════════════════════════════════════════════════════════════
       HIRE DEVELOPERS SECTION
       ═══════════════════════════════════════════════════════════════ */

/* ===== BACKGROUND ===== */
.hire-section {
    padding: 80px 0;
    background: url('https://infotechsolz.com/html/hire-devoloper-bg.png') center/cover no-repeat;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.hire-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
}

/* ===== CONTAINER ===== */
.hire-container {
    position: relative;
    z-index: 2;
}

/* ===== TITLE ===== */
.hire-title {
    text-align: center;
    margin-bottom: 70px;
}

.hire-title p {
    color: #6b7280;
}

/* ===== LEFT IMAGE ===== */
.hire-img {
    width: 100%;
    max-width: 540px;
    margin-bottom: 35px;
}

/* ===== FEATURE BOX ===== */
.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 22px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* ICON IMAGE (YOUR PNG) */
.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 130%;
}

/* TEXT */
.feature-box h5 {
    margin: 0;
    color: #1f2d4d;
}

.feature-box p {
    font-size: 14px;
    margin: 4px 0 0;
    color: #6b7280;
}

/* ════════ CAREERS PAGE - INLINE STYLES CLEANUP ════════ */

/* Breadcrumb navigation */
.breadcrumb-area i {
    font-size: 0.7rem;
    color: #999;
}

.breadcrumb-area span {
    color: var(--brand-blue);
    font-weight: 600;
}

/* Culture section - "Life at InfoTechSolz" badge */
.culture-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* Culture section - Heading styling */
.culture-heading {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 20px;
    font-family: 'Manrope', sans-serif;
}

.culture-heading .highlight {
    color: #2563eb;
}

/* Culture section - Paragraph */
.culture-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 28px;
}

/* Culture section - List styling */
.culture-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.culture-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #334155;
    font-weight: 600;
}

.culture-benefits li span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    flex-shrink: 0;
}

/* Modal - Job title highlight */
.modal-job-title {
    color: #2563eb;
}

/* Modal - Position field (readonly) */
.modal-position-field {
    background: #f1f5f9;
    cursor: not-allowed;
}

/* Fresher card info text */
.fresher-info-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== FORM CARD ===== */
.form-card {
    padding: 40px;
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.form-card h4 {
    text-align: center;
    margin-bottom: 25px;
}

/* ===== INPUT ===== */
.form-control {
    padding: 14px 15px;
    border-radius: 50px;
    border: none;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.75);
}

textarea.form-control {
    border-radius: 18px;
}

/* ===== BUTTON ===== */
.submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #5aa7ff, #3b82f6);
    color: #fff;
    font-weight: 500;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(59, 130, 246, 0.6);
}

/* ═══════════════════════════════════════════════════════════════
       CONSULTATION SECTION (ADDED AS REQUESTED)
       ═══════════════════════════════════════════════════════════════ */

/* ===== BACKGROUND ===== */
.consult-section {
    padding: 100px 0;
    background: url('https://infotechsolz.com/html/hire-devoloper-bg.png') center/cover no-repeat;
    position: relative;
}

.consult-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.06);
}

.consult-container {
    position: relative;
    z-index: 2;
}

.consult-section .consult-container .row {
    margin-top: -50px;
}

/* ===== FULL WIDTH HEADING ===== */

.consult-header h2 {
    font-size: 44px;
    font-weight: 600;
    color: #1f2d4d;
    margin-bottom: 15px;
}

.consult-header span {
    color: #3b82f6;
}

.consult-header p {
    font-size: 17px;
    color: #6b7280;
}

/* ===== LEFT CONTENT ===== */
.consult-left {
    padding-right: 30px;
}

/* LIST */
.consult-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.consult-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 16px;
    color: #1f2d4d;
}

/* CHECK ICON */
.check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(34, 197, 94, 0.4);
}

/* BUTTON */
.consult-btn {
    display: inline-block;
    padding: 16px 50px;
    border-radius: 50px;
    background: linear-gradient(135deg, #5aa7ff, #3b82f6);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

.consult-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(59, 130, 246, 0.6);
}

/* RIGHT IMAGE */
.consult-img {
    width: 100%;
    max-width: 520px;
}

/* ── RESPONSIVE ADJUSTMENTS ── */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .oa-container {
        flex-direction: column;
        gap: 40px;
    }

    .oa-list-col,
    .oa-visual-col {
        width: 100%;
    }

    .oa-visual-col {
        display: none;
        /* Or move to top if desired */
    }

    .oa-list::before {
        left: 10px;
        top: 35px;
    }

    .oa-marker {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .oa-title {
        font-size: 1.1rem;
        padding-top: 2px;
    }

    .oa-details {
        padding-left: 20px;
    }

    .ir-content-wrapper.active {
        flex-direction: column;
        text-align: left;
    }

    .ir-stats {
        /* flex-direction: column; */
        width: 100%;
    }

    .ir-stat-box {
        width: 100%;
    }

    /* Why Choose Mobile */
    .wc-inner {
        max-width: 760px;
    }

    .wc-row {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 14px;
    }

    .wc-item.left-top,
    .wc-item.right-top,
    .wc-item.left-mid,
    .wc-item.right-mid,
    .wc-item.bottom-wide {
        width: 100%;
        margin-top: 0;
    }

    .wc-sub {
        margin-bottom: 24px;
    }

    /* USP Mobile */
    .usp-title h2 {
        font-size: 30px;
    }

    .hire-img {
        margin: auto auto 30px;
        display: block;
    }

    /* Consult Mobile */
    .consult-header h2 {
        font-size: 30px;
    }

    .consult-left {
        padding-right: 0;
        text-align: center;
    }

    .consult-list li {
        justify-content: center;
    }

    .consult-img {
        margin-top: 40px;
    }
}

@media (max-width: 575.98px) {
    .why-choose-exact {
        padding: 40px 0 48px;
    }

    .wc-head h2 {
        font-size: 27px;
    }

    .wc-sub {
        font-size: 13px;
        line-height: 1.7;
    }

    .glass-card {
        padding: 18px 16px 18px 20px;
        border-radius: 22px;
        gap: 10px;
    }

    .glass-card::before {
        left: 10px;
        width: 34px;
        top: 10px;
        bottom: 10px;
    }

    .wc-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 19px;
        margin-left: 10px;
    }

    .wc-title,
    .card-fast .wc-title,
    .card-kick .wc-title,
    .card-delivery .wc-title,
    .card-seo .wc-title {
        font-size: 15px;
    }

    .wc-desc {
        font-size: 12px;
    }
}

/*  CAREERS PAGE SPECIFIC  */

/*  PERKS SECTION  */
.perks-section {
    padding: 80px 0;
    background: linear-gradient(160deg, #f0f6ff 0%, #e8f1ff 50%, #f4f8ff 100%);
}

.perks.usp-section {
    background-image: url('https://infotechsolz.com/html/assets/images/our_services_banner.webp');
    background-size: cover;
    background-position: center;
}

.perk-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid #e8f0fe;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.perks .usp-card {
    position: relative;
    padding: 35px 25px;
    border-radius: 22px;
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(160%);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, rgba(173, 216, 255, 0.25), rgba(255, 255, 255, 0.08));
    text-align: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -1px 1px rgba(173, 216, 255, 0.2);
    border: 1px solid rgba(173, 216, 255, 0.4);
}

.perk-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.12);
}

.perk-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: #2563eb;
}

.perk-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.perk-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/*  JOB LISTINGS SECTION  */
.jobs-section {
    padding: 80px 0;
    background: url('https://infotechsolz.com/html/our-service-bg.png') center top / cover no-repeat;
    position: relative;
}

.job-filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

.job-filter-btn {
    padding: 9px 22px;
    border-radius: 50px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Poppins', sans-serif;
}

.job-filter-btn.active,
.job-filter-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

/*  JOB CARD  */
.job-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e8f0fe;
    padding: 28px 32px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #2563eb, #3b82f6);
    border-radius: 4px 0 0 4px;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.12);
    transform: translateY(-3px);
    border-color: #bfdbfe;
}

.job-card:hover::before {
    transform: scaleY(1);
}

.job-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.job-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #2563eb;
    flex-shrink: 0;
}

.job-title-group {
    flex: 1;
}

.job-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
    font-family: 'Poppins', sans-serif;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.job-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 20px;
}

.job-tag.highlight {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
}

.job-salary-badge {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #15803d;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.skill-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
}

.skill-pill.primary {
    background: rgba(37, 99, 235, 0.07);
    border-color: rgba(37, 99, 235, 0.2);
    color: #2563eb;
}

.job-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.job-type-label {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
}

.job-apply-btn {
    background: linear-gradient(to right, #2563eb, #1e293b);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 9px 24px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.25s;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.job-apply-btn:hover {
    background: linear-gradient(to left, #2563eb, #1e293b);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    color: #fff;
}

/* Job detail collapse */
.job-details-body {
    display: none;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    margin-top: 16px;
}

.job-details-body.open {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.job-details-body h6 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-details-body ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 16px;
}

.job-details-body ul li {
    display: flex;
    gap: 8px;
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 6px;
    line-height: 1.5;
}

.job-details-body ul li::before {
    content: "";
    color: #2563eb;
    font-weight: 700;
    flex-shrink: 0;
}

.toggle-details-btn {
    background: none;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
}

.toggle-details-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

/*  FRESHER SPECIAL CARD  */
.fresher-card {
    background: linear-gradient(135deg, #1d4ed8, #2563eb, #3b82f6);
    border-radius: 24px;
    padding: 40px;
    color: #fff;
    margin-top: 32px;
    position: relative;
    overflow: hidden;
}

.fresher-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.fresher-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.fresher-card h4 {
    /* font-size: 1.6rem;
    font-weight: 800; */
    margin-bottom: 12px;
    /* font-family: 'Manrope', sans-serif; */
    position: relative;
    z-index: 2;
}

.fresher-card p {
    font-size: 0.95rem;
    opacity: 0.85;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.fresher-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.fresher-skill-tag {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-fresher-apply {
    background: #fff;
    color: #2563eb;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.btn-fresher-apply:hover {
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: #1d4ed8;
}

/*  APPLY MODAL  */
.apply-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.apply-modal-overlay.open {
    display: flex;
}

.apply-modal {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
    animation: fadeInUp 0.4s ease;
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #64748b;
    transition: background 0.2s;
}

.modal-close-btn:hover {
    background: #e2e8f0;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
    font-family: 'Manrope', sans-serif;
}

.modal-subtitle {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 28px;
}

.modal-field {
    margin-bottom: 16px;
}

.modal-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-field input,
.modal-field textarea,
.modal-field select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #0f172a;
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.modal-field input:focus,
.modal-field textarea:focus,
.modal-field select:focus {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.modal-field textarea {
    resize: none;
    min-height: 90px;
}

.modal-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.modal-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.25s;
    margin-top: 8px;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
}

/*  STATS STRIP  */
.careers-stats-strip {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0;
}

.stat-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 32px;
    border-right: 1px solid #e2e8f0;
}

.stat-strip-item:last-child {
    border-right: none;
}

.stat-strip-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2563eb;
}

.stat-strip-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    font-family: 'Manrope', sans-serif;
}

.stat-strip-label {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 2px;
}

/*  LIFE AT ITS (culture section)  */
.culture-section {
    padding: 80px 0;
    background: #fff;
}

.culture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 16px;
    border-radius: 24px;
    overflow: hidden;
}

.culture-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.culture-card:first-child {
    grid-row: span 2;
    background: linear-gradient(160deg, #0f172a, #1d4ed8);
}

.culture-card:nth-child(2) {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.culture-card:nth-child(3) {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
}

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

.culture-card-content h5 {
    color: #fff;
    margin: 0 0 4px;
}

.culture-card-content p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.culture-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.culture-big-num {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
    font-family: 'Manrope', sans-serif;
}

/* Responsive */
@media (max-width: 767px) {
    .stat-strip-item {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 18px 20px;
    }

    .stat-strip-item:last-child {
        border-bottom: none;
    }

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

    .culture-card:first-child {
        grid-row: span 1;
        min-height: 200px;
    }

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

    .modal-row {
        grid-template-columns: 1fr;
    }

    .jobs-section {
        border-top: 1px solid #ccc;
        padding: 60px 0;
    }

    .job-card {
        padding: 20px 18px;
        margin-bottom: 18px;
    }

    .job-card-header {
        flex-wrap: wrap;
        gap: 12px;
    }

    .job-icon-wrap {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .job-salary-badge {
        width: 100%;
        text-align: center;
        order: -1;
    }

    .job-title {
        font-size: 1rem;
    }

    .job-meta {
        gap: 8px;
    }

    .job-tag {
        font-size: 0.72rem;
        padding: 3px 10px;
    }

    .job-skills {
        gap: 6px;
    }

    .skill-pill {
        font-size: 0.72rem;
        padding: 3px 10px;
    }

    .job-card-footer {
        flex-direction: column;
        gap: 12px;
    }

    .toggle-details-btn,
    .job-apply-btn {
        width: 100%;
        justify-content: center;
    }

    .fresher-card {
        padding: 28px 20px;
    }

    .fresher-card h4 {
        font-size: 1.3rem;
    }

    .section-header p {
        font-size: 14px;
    }
    .job-filter-bar{ flex-wrap: nowrap; justify-content: flex-start; gap: 12px; overflow-x: auto; padding-bottom: 2px;}
    .job-filter-btn{min-width: 150px;}
    .hero-visual-1{display: flex; align-items: center; justify-content: center; padding-bottom: 50px;}
    .badge-float-1.border_1{border-right: 1px solid #000; padding-right: 15px; margin-right: 15px;}
    .badge-float-1{display: flex; align-items: center; gap: 10px;}
    .badge-float-1 .icon-circle-1 img{width: 24px;}
    .badge-float-1 .icon-circle-1{ width: 35px; height: 35px; background-color: #d4e4fc; display: flex; align-items: center; justify-content: center; border-radius: 5px;}
    .badge-float.badge-fast, .badge-float.badge-support{display: none;}
    .hero-visual{height: auto;}
    .its-process__nav-item{padding: 10px 15px; border: 1px solid rgba(29, 107, 243, .1);}
    .its-process__nav-num{display: none;}
    body.js-enhanced .reveal-on-scroll{opacity: 1; transform: none;}
    .services_works_row { display: flex; gap: 25px; flex-wrap: nowrap; max-width: max-content; overflow-x: scroll; overflow-y: hidden; padding-bottom: 15px; }
    .services-grid-section .sg-card{min-width: max-content;}
}

@media (max-width: 575px) {
    .job-filter-bar {
        gap: 7px;
        margin-bottom: 32px;
    }

    .job-filter-btn {
        padding: 7px 14px;
        font-size: 0.75rem;
        flex: 1;
        min-width: 105px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        margin-bottom: 12px;
    }

    .job-card {
        padding: 16px 14px;
    }

    .job-icon-wrap {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .job-title {
        font-size: 0.95rem;
    }

    .job-meta {
        gap: 6px;
        margin-top: 8px;
    }

    .job-tag {
        font-size: 0.68rem;
        padding: 2px 8px;
    }

    .skill-pill {
        font-size: 0.65rem;
        padding: 2px 8px;
    }

    .job-apply-btn,
    .toggle-details-btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .fresher-card {
        padding: 20px 16px;
    }

    .fresher-card h4 {
        font-size: 1.1rem;
    }
}

/* ════════ CONTACT PAGE STYLES ════════ */
/* ── CONTACT INFO CARDS ── */
.contact-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid #e8f0fe;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.12);
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px;
    color: #2563eb;
}

.contact-info-card h5 {
    color: #0f172a;
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.contact-info-card a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* ── CONTACT FORM SECTION ── */
.contact-form-section {
    padding: 80px 0;
    background: url('https://infotechsolz.com/html/hire-devoloper-bg.png') center/cover no-repeat;
    position: relative;
}

.contact-form-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.04);
}

.contact-form-wrapper {
    position: relative;
    z-index: 2;
}

.contact-form-card {
    padding: 50px 48px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.contact-form-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    font-family: 'Manrope', sans-serif;
}

.contact-form-card .form-sub {
    color: #64748b;
    font-size: 0.92rem;
    margin-bottom: 32px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    padding: 13px 18px;
    border-radius: 50px;
    border: 1.5px solid #e2e8f0;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #0f172a;
    transition: border-color 0.2s;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.contact-form-card textarea.form-control {
    border-radius: 18px;
    resize: none;
}

.contact-submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #5aa7ff, #2563eb);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    cursor: pointer;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(59, 130, 246, 0.6);
}

/* ── LEFT SIDE INFO ── */
.contact-left-content {
    padding-right: 20px;
}

.contact-left-content .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-left-content h2 {
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-left-content h2 span {
    color: #2563eb;
}

.contact-left-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-detail-list {
    list-style: none;
    padding: 0;
    margin-bottom: 36px;
}

.contact-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #2563eb;
    flex-shrink: 0;
}

.contact-detail-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.contact-detail-text span {
    font-size: 0.88rem;
    color: #64748b;
}

.contact-social-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.contact-social-row .label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    margin-right: 4px;
}

.contact-social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
}

.contact-social-link:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-2px);
}

/* ── MAP SECTION ── */
.map-section {
    padding: 0 0 80px;
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
    border: 1px solid #e2e8f0;
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ── FAQ SECTION ── */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(160deg, #f0f6ff 0%, #e8f1ff 50%, #f4f8ff 100%);
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.faq-section .section-title h2 {
    color: #0f172a;
    margin-bottom: 10px;
}

.faq-section .section-title p {
    color: #64748b;
    font-size: 0.95rem;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f0fe;
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h6 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
        font-family: 'Manrope', sans-serif;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #2563eb;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-toggle-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
    font-family: 'Poppins';
}

/* ── QUICK CONTACT STRIP ── */
.quick-contact-strip {
    background: linear-gradient(135deg, #1d4ed8, #0f172a);
    padding: 50px 0;
}

.quick-contact-strip h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Manrope', sans-serif;
}

.quick-contact-strip p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.quick-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #fff;
    color: #1d4ed8;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.quick-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    color: #1d4ed8;
}

.quick-contact-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 32px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.quick-contact-btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ── SUCCESS TOAST ── */
.form-success-toast {
    display: none;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    align-items: center;
    gap: 10px;
}

.form-success-toast.show {
    display: flex;
}

/* ════════ ABOUT PAGE STYLES ════════ */
/* ── STATS STRIP ── */
.about-stats-strip {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(37, 99, 235, 0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.about-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 32px;
    border-right: 1px solid #e2e8f0;
}

.about-stat-item:last-child {
    border-right: none;
}

.about-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #2563eb;
    flex-shrink: 0;
}

.about-stat-num {
    font-size: 1.7rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    font-family: 'Manrope', sans-serif;
}

.about-stat-label {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 2px;
}

/* ── OUR STORY ── */
.story-section {
    padding: 90px 0 80px;
    background: #fff;
}

.story-content h2 {
    /* font-size: 2.4rem;
    font-weight: 800; */
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 18px;
    font-family: 'Manrope', sans-serif;
}

.story-content h2 span {
    color: #2563eb;
}

.story-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-highlight-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.story-highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: #1e293b;
    font-weight: 500;
}

.story-highlight-list .check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}

/* Story visual */
.story-visual-wrap {
    position: relative;
}

.story-main-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

.story-badge-founded {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    padding: 18px 24px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.story-badge-founded .year {
    /* font-size: 2rem;
    font-weight: 900; */
    /* font-family: 'Manrope', sans-serif;
    line-height: 1; */
}

.story-badge-founded .label {
    font-size: 0.75rem;
    opacity: 0.85;
    margin-top: 3px;
}

.story-badge-award {
    position: absolute;
    top: 20px;
    right: -15px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
}

.story-badge-award .award-icon {
    font-size: 1.4rem;
    color: #f59e0b;
}

/* ── MISSION VISION VALUES ── */
.mvv-section {
    padding: 80px 0;
    background: url('https://infotechsolz.com/html/our-service-bg.png') center/cover no-repeat;
}

.mvv-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(37, 99, 235, 0.15);
}

.mvv-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.mvv-card:nth-child(1) .mvv-icon {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #2563eb;
}

.mvv-card:nth-child(2) .mvv-icon {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #16a34a;
}

.mvv-card:nth-child(3) .mvv-icon {
    background: linear-gradient(135deg, #fef9ee, #fef3c7);
    color: #d97706;
}

.mvv-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
    font-family: 'Manrope', sans-serif;
}

.mvv-card p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* ── TEAM SECTION ── */
.team-section {
    padding: 80px 0;
    background: #fff;
}

.team-card {
    text-align: center;
    background: #fff;
    border-radius: 22px;
    border: 1px solid #e8f0fe;
    padding: 32px 24px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
}

.team-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    display: block;
    border: 3px solid #e8f0fe;
    transition: border-color 0.3s;
}

.team-card:hover .team-avatar {
    border-color: #2563eb;
}

.team-card h5 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
    font-family: 'Manrope', sans-serif;
}

.team-card .team-role {
    font-size: 0.82rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* ── ACHIEVEMENTS / TIMELINE ── */
.achievements-section {
    padding: 80px 0;
    background: linear-gradient(160deg, #f0f6ff 0%, #e8f1ff 50%, #f4f8ff 100%);
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 7px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #2563eb, #e2e8f0);
}

.timeline-item {
    position: relative;
    margin-bottom: 36px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -35px;
    top: 5px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
}

.timeline-year {
    font-size: 0.78rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-item h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.timeline-item p {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
}

/* ── TECH STACK ── */
.tech-section {
    padding: 80px 0;
    background: #fff;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 48px;
}

.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    transition: all 0.25s;
}

.tech-pill:hover {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #93c5fd;
    color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.tech-pill .tech-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2563eb;
}

/* ── CTA BANNER ── */
.about-cta-section {
    background: linear-gradient(135deg, #1d4ed8, #0f172a);
    padding: 80px 0;
}

.about-cta-section h2 {
    /* font-size: 2.4rem; */
    /* font-weight: 800; */
    color: #fff;
    margin-bottom: 14px;
    /* font-family: 'Manrope', sans-serif; */
}

.about-cta-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 36px;
}

.about-cta-section .cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: #fff;
    color: #1d4ed8;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    color: #1d4ed8;
}

.btn-cta-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 36px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-cta-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* me */
.achievements-section .col-lg-5{margin: auto 0 0;}
/* .its-section-title{    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;} */
/* ════════════════════════════════════════════════════════════════
   RESPONSIVE MEDIA QUERIES FOR TIMELINE, TECH, & CTA SECTIONS
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {

    /* Timeline responsive */
    .timeline {
        padding-left: 36px;
    }

    .timeline::before {
        left: 14px;
        top: 10px;
        bottom: 10px;
    }

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

    .timeline-dot {
        width: 22px;
        height: 22px;
        left: -32px;
        top: 6px;
    }

    .timeline-year {
        font-size: 0.72rem;
    }

    .timeline h5 {
        font-size: 0.95rem;
    }

    .timeline p {
        font-size: 0.84rem;
    }

    /* Tech section responsive */
    .tech-grid {
        gap: 12px;
    }

    .tech-pill {
        padding: 10px 20px;
        font-size: 0.78rem;
    }

    /* CTA section responsive */
    /* .about-cta-section h2 {
        font-size: 2rem;
    } */

    .about-cta-section p {
        font-size: 0.95rem;
    }
}

@media (max-width: 991px) {

    /* Timeline adjustments */
    .achievements-section {
        padding: 60px 0;
    }

    .timeline {
        padding-left: 32px;
        margin-top: 30px;
    }

    .timeline::before {
        left: 13px;
        top: 8px;
        bottom: 8px;
        width: 2px;
    }

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

    .timeline-dot {
        width: 20px;
        height: 20px;
        left: -28px;
        top: 4px;
    }

    .timeline-year {
        font-size: 0.68rem;
    }

    .timeline h5 {
        font-size: 0.9rem;
    }

    .timeline p {
        font-size: 0.8rem;
    }

    /* Tech grid adjustments */
    .tech-section {
        padding: 60px 0;
    }

    .tech-grid {
        gap: 10px;
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    }

    .tech-pill {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .tech-pill .tech-dot {
        width: 6px;
        height: 6px;
    }

    /* CTA section adjustments */
    .about-cta-section {
        padding: 60px 40px;
    }

    .about-cta-section h2 {
        /* font-size: 1.8rem; */
        margin-bottom: 12px;
    }

    .about-cta-section p {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .cta-btns {
        flex-direction: column;
        gap: 12px;
    }

    .btn-cta-white,
    .btn-cta-outline-white {
        width: 100%;
    }
    .sg-card{display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 20px 5px; border: 1px solid rgba(29, 107, 243, .2);}
    .hero-main-img{width: 40%;}
}

@media (max-width: 767px) {

    /* Timeline mobile */
    .achievements-section {
        padding: 60px 0;
    }

    .timeline {
        padding-left: 28px;
    }

    .timeline::before {
        left: 12px;
        width: 2px;
    }

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

    .timeline-dot {
        width: 18px;
        height: 18px;
        left: -24px;
        top: 3px;
    }

    .timeline-year {
        font-size: 0.65rem;
    }

    .timeline h5 {
        font-size: 0.85rem;
    }

    .timeline p {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    /* Tech pills mobile */
    .tech-section {
        padding: 50px 0;
    }

    .tech-grid {
        gap: 8px;
        grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
    }

    .tech-pill {
        padding: 6px 12px;
        font-size: 0.7rem;
        border-radius: 20px;
    }

    /* CTA mobile */
    .about-cta-section {
        padding: 50px 20px;
        /* border-radius: 16px; */
    }

    .about-cta-section p {
        font-size: 0.85rem;
    }

    .btn-cta-white,
    .btn-cta-outline-white {
        padding: 11px 24px;
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {

    /* Timeline extra small */
    .achievements-section {
        padding: 50px 0;
    }

    .timeline {
        padding-left: 24px;
    }

    .timeline-dot {
        width: 16px;
        height: 16px;
        left: -20px;
    }

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

    .timeline-year {
        font-size: 0.62rem;
    }

    .timeline h5 {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .timeline p {
        font-size: 0.75rem;
    }

    /* Tech pills extra small */
    .tech-section {
        padding: 50px 0;
    }

    .tech-grid {
        gap: 6px;
        grid-template-columns: repeat(auto-fit, minmax(65px, 1fr));
    }

    .tech-pill {
        padding: 5px 10px;
        font-size: 0.65rem;
    }

    .tech-pill .tech-dot {
        width: 5px;
        height: 5px;
    }

    /* CTA extra small */
    .about-cta-section {
        padding: 50px 10px;
        /* border-radius: 14px; */
    }

    .about-cta-section h2 {
        /* font-size: 1.2rem; */
        margin-bottom: 10px;
    }

    .about-cta-section p {
        font-size: 0.8rem;
        margin-bottom: 18px;
    }

    .cta-btns {
        gap: 10px;
    }

    .btn-cta-white,
    .btn-cta-outline-white {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* ────────────────────────────────── */
/* RESPONSIVE FIXES FOR ALL PAGES     */
/* ────────────────────────────────── */
@media (max-width: 991px) {
    .contact-form-card {
        padding: 36px 28px;
    }

    .contact-left-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .about-stats-strip {
        margin-top: 0;
    }

    .about-stat-item {
        padding: 20px 24px;
        border-right: none !important;
        border-bottom: 1px solid #e2e8f0;
    }

    .about-stat-item:last-child {
        border-bottom: none;
    }

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

    .story-content h2 {
        font-size: 2rem;
    }

    .mvv-card {
        padding: 32px 24px;
    }

    .team-card {
        padding: 24px 16px;
    }
    /*  */
    .form-card ul{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 10px;
    }
    .navbar-toggler:focus{box-shadow: none; outline: none;}
    .footer-contact-item.email{word-break: break-all;}
    .navbar-toggler i{font-size: 35px;}
    .hero-section .hero-content .row{flex-direction: column-reverse;}
    .story-main-img { width: 45%; margin: 0 auto; display: flex; object-fit: cover; }
}

@media (max-width: 767px) {
    .contact-form-card {
        padding: 28px 20px;
    }

    .contact-info-card {
        padding: 24px 18px;
    }

    .contact-card-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .contact-info-card p {
        font-size: 0.82rem;
    }

    .map-wrapper {
        height: 320px;
    }

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

    .faq-section .section-title {
        margin-bottom: 36px;
    }

    .faq-question {
        padding: 16px 18px;
    }

    .faq-question h6 {
        font-size: 0.9rem;
    }

    .quick-contact-strip {
        padding: 40px 0;
    }

    .quick-contact-strip h3 {
        font-size: 1.4rem;
    }

    .story-section {
        padding: 10px 0 50px;
    }
    .story-main-img { width: 60%; margin: 0 auto; display: flex; object-fit: cover; }
    .story-content h2 {
        font-size: 1.8rem;
    }

    .story-badge-founded {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .story-badge-award {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 35px;
    }

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

    .mvv-card {
        padding: 28px 20px;
    }

    .mvv-card h4 {
        font-size: 1rem;
    }

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

    .team-card {
        padding: 20px 14px;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
    }

    .team-card h5 {
        font-size: 0.95rem;
    }

    .team-card .team-role {
        font-size: 0.75rem;
    }

    .team-card p {
        font-size: 0.8rem;
    }
    .contact-form-section, .culture-section{padding: 60px 0;}
    .section_gap{padding: 60px 0;}
    .usp-section {padding: 60px 0;}
    .service-page .oa-section, .service-page .services-grid-section, .service-page .hire-section, .service-page .consult-section { padding: 60px 0; }
    .its-hero-shell .float-pill{display: none;}
    .hero-right-wrap-1{display: grid; grid-template-columns: 1fr 1fr; gap: 5px; padding-bottom: 20px;}
    .hero-right-wrap-1 .float-pill-1 { font-size: 16px; display: flex; align-items: center; gap: 10px; }
    .hero-right-wrap-1 .float-pill-1 .icon-circle-1{width: 35px; height: 35px; background-color: #d4e4fc; display: flex; align-items: center; justify-content: center;border-radius: 5px;}
    .hero-right-wrap-1 .float-pill-1 .icon-circle-1 img{width: 26px;}
    .its-hero-shell .hero-right-wrap{margin-bottom: 0;}
}

@media (max-width: 575px) {
    .contact-form-card {
        padding: 30px 10px;
    }

    .contact-left-content p {
        font-size: 0.9rem;
    }

    .contact-info-card {
        padding: 20px 14px;
    }

    .contact-card-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    .contact-info-card p {
        font-size: 0.78rem;
    }

    .contact-social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .map-wrapper {
        height: 260px;
    }

    .faq-question {
        padding: 14px 14px;
    }

    .faq-question h6 {
        font-size: 0.85rem;
    }

    .faq-toggle-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .quick-contact-strip {
        padding: 40px 0;
    }

    .quick-contact-strip h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .quick-contact-btn,
    .quick-contact-btn-outline {
        padding: 11px 20px;
        font-size: 0.88rem;
    }

    .story-content h2 {
        font-size: 1.5rem;
        margin-bottom: 14px;
    }

    .story-highlight-list li {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .mvv-card {
        padding: 24px 16px;
        margin-bottom: 16px;
    }

    .mvv-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
        margin-bottom: 14px;
    }

    .mvv-card h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .mvv-card p {
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .team-avatar {
        width: 72px;
        height: 72px;
        margin-bottom: 12px;
    }

    .team-card h5 {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }

    .team-card .team-role {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }
    .hero-main-img{width: 55%;}
    .section_gap, .contact-form-section, .culture-section, .faq-section, .usp-section, .jobs-section, .mvv-section, .team-section {padding: 50px 0;}
    .service-page .oa-section, .service-page .services-grid-section, .service-page .hire-section, .service-page .consult-section{padding: 50px 0;}
    .form-card{padding: 30px 10px;}
}
@media(max-width: 480px){
    .hero-main-img{width: 50%;}
    .hero-right-wrap-1 .float-pill-1{font-size: 12px;}
    .hero-right-wrap-1 .float-pill-1 .icon-circle-1{width: 30px; height: 30px;}
    .hero-right-wrap-1 .float-pill-1 .icon-circle-1 img{width: 20px;}
}