/* Outfit */
@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Light.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Wittgenstein */
@font-face {
    font-family: 'Wittgenstein';
    src: url('../fonts/Wittgenstein-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* =============================================
   CSS Variables / Design Tokens
   ============================================= */
:root {
    --font-primary: 'Outfit', sans-serif;
    --font-highlight: 'Wittgenstein', serif;
    --color-blue: #4192d1;
    --color-dark: #03030f;
    --color-white: #fff;
    --header-height: 72px;
    --container-max: 1320px;
    --section-tagline: 14px;
    --section-heading: 44px;
    --paragraph: 16px;
    --para-line-height: 26px;
    --main-heading-line-height: 1.25rem;
}

/* =============================================
   Base / Global Styles
   ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    overflow-x: hidden !important;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-80 {
    margin-bottom: 80px;
}


.my-80 {
    margin-top: 80px;
    margin-bottom: 80px;
}

.container-fluid {
    max-width: 1920px !important;
}

.section-space {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

/* Override Bootstrap container max-width */
.container {
    max-width: var(--container-max) !important;
}
.text-gray {
    color: #334155 !important;
}

/* =============================================
   Typography Utilities
   ============================================= */

/* Wittgenstein — italic blue highlight font */
.font-highlight,
.wittgenstein {
    font-family: var(--font-highlight);
    font-style: italic;
}

.highlighted-text {
    font-family: var(--font-highlight);
    font-style: italic;
    font-weight: 500;
    color: var(--color-blue);
}

/* Outfit — primary font */
.font-primary,
.outfit {
    font-family: var(--font-primary);
}

/* section padding */
.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}
.pt-80 {
    padding-top: 80px;
}
.pb-80 {
    padding-bottom: 80px;
}

/* custom width class */
.w-70 {
    width: 70%;
}

/* =============================================
   HEADER
   ============================================= */
/* .site-header {
    width: 100%;
    height: auto;
    padding-top: 20px;
    background-color: transparent;
    border-bottom: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
} */

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    width: 100%;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.main-nav {
    width: 100%;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 70px;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-dark);
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.main-nav ul li a:hover {
    color: var(--color-blue);
}

#contentBody,
#bannerImage {
    transition: all 0.4s ease;
}

/* Quote Button */
.primary-btn {
    display: inline-block;
    padding: 16px 28px;
    background-color: var(--color-dark);
    color: var(--color-white) !important;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition:
        background 0.25s ease,
        transform 0.2s ease;
    border: none;
}

.primary-btn:hover {
    background-color: var(--color-blue);
    transform: translateY(-1px);
}

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

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url('../images/Home-Page-Banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    padding: calc(var(--header-height) + 40px) 0 80px;
}

.hero .container {
    position: relative;
    z-index: 1;
    margin-top: 0;
}

/* "We Are" tag line */
.hero-tag-line {
    font-weight: 200;
    font-size: 85px;
    color: var(--color-dark);
    letter-spacing: 0.5px;
    line-height: 1;
    text-transform: uppercase;
}

.section-tagline {
    color: var(--color-blue);
    font-size: 16px;
    margin-bottom: 0;
}

.services-section #contentBody {
    padding-right: 26%;
}

/* "Itxit Pro" heading */
.cst-h1 {
    font-family: var(--font-primary);
    font-size: 150px;
    font-weight: 200;
    color: var(--color-dark);
    letter-spacing: -1px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-content .col-md-7 {
    padding-left: 80px;
    padding-right: 0;
}

/* Description paragraph */
.cst-p {
    font-family: var(--font-primary);
    font-size: 19px;
    font-weight: 400;
    color: var(--color-dark);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 18px;
    padding-left: 10px;
}

/* "Lets talk about your Project" CTA link */
.hero-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-blue);
    padding-bottom: 2px;
    padding-left: 10px;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        gap 0.2s ease;
}

.hero-cta-link:hover span img {
    transform: translate(10px, -10px);
    transition: all 0.3s ease-in-out;
}

.main-service-hero-sec {
    position: relative;
}

.hero-text-animation img {
    width: 100%;
}
.hero-text-animation {
    position: absolute;
    top: 18%;
    width: 50%;
    opacity: 0;
    transform: translateX(-550px);
    animation: slideInLeft 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    z-index: 0;
}

.primary-btn:not(header .primary-btn) {
    margin-top: 10px;
    padding: 18px 48px;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-550px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background-color: #0d1b2e;
    color: var(--color-white);
    font-family: var(--font-primary);
}

/* ----- Divider ----- */
.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0;
}

/* ----- TOP ROW ----- */
.footer-top {
    padding: 60px 0 40px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: var(--paragraph);
    font-weight: 300;
    color: var(--color-white);
    line-height: 29px;
    margin: 0;
}

/* Map image */
.footer-map img {
    width: 100%;
    max-width: 350px;
    opacity: 0.9;
}

/* Social Icons Grid */
.footer-socials {
    display: grid;
    grid-template-columns: repeat(3, 46px);
    gap: 10px;
    justify-content: flex-end;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid;
    border-image-source: linear-gradient(180deg, #00358c 0%, #429df1 100%);
    border-image-slice: 1;
    transition: background 0.2s ease;
}

.social-icon:hover {
    background: rgba(65, 146, 209, 0.15);
}

.social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ----- MIDDLE: Link Columns ----- */
.footer-links-row {
    padding: 40px 0;
}

.footer-col-title {
    font-size: var(--paragraph);
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #979797;
    margin-bottom: 18px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 300;
    color: var(--color-white);
    transition: color 0.2s ease;
}

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

/* ----- BOTTOM BAR ----- */
.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact,
.footer-copy {
    font-size: 12.5px;
    font-weight: 300;
    color: var(--color-white);
}

.footer-policy {
    font-size: 12.5px;
    font-weight: 300;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-policy:hover {
    color: var(--color-blue);
}

/* =============================================
   ABOUT US SECTION
   ============================================= */
section.about-us-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

/* Left: GIF / Image */
.mobile-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-video-container img {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: block;
}

/* Right: Content */
.about-us-content {
    padding-left: 10px;
}

/* Heading wrapper — horizontal line lives here */
.about-heading-wrap {
    position: relative;
    margin-bottom: 28px;
}

/* Horizontal line above heading */
.about-heading-wrap::before {
    content: '';
    display: block;
    width: 150px;
    height: 2px;
    background-color: var(--color-dark);
    margin-bottom: 20px;
    position: absolute;
    top: 30px;
    left: 0;
}

/* Main H2 */
.about-h2 {
    font-family: var(--font-primary);
    font-size: 44px;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.25;
    margin: 0;
    padding-left: 180px;
}

/* Body paragraphs */
.about-para {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #334155;
    line-height: 1.85;
    margin-bottom: 18px;
}

/* Know More Button */
a.know-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-dark);
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.4px;
    padding: 14px 36px;
    margin-top: 8px;
    border: none;
    transition:
        background 0.25s ease,
        transform 0.2s ease;
}

a.know-more-btn:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
    transform: translateY(-2px);
}

.know-arrow img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

a.know-more-btn:hover .know-arrow img {
    transform: translate(4px, -4px);
}

/* -*-*-*-*--*--*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* */
/* service tabs section css */

/* .services-section {
    background: #050f2b;
    min-height: 100vh;
} */

/* Left Sidebar */
.left-sidebar {
    background: #f5f5f5;
    padding: 40px 30px;
    height: 100%;
}

.tab-item.active .tab-indicator {
    transform: rotate(-35deg) !important;
}
.services-section .container-fluid {
    padding: 0;
}
.col-lg-4:has(.left-sidebar) {
    box-shadow: 0 0px 104px 0px #0000000f;
    z-index: 1;
}

.main-heading {
    font-size: 40px;
    font-weight: 500;
    color: #03030f;
    line-height: 1.5;
}

.main-heading .hash {
    color: #ff5600;
}

.subtitle {
    font-size: 16px;
    color: #334155;
    margin-bottom: 10px;
}

.subtitle-2 {
    font-size: 20px;
    color: #334155;
    margin-bottom: 10px;
    font-weight: 200;
}

.grow-text a {
    background: linear-gradient(271.55deg, #ff5600 21.51%, #ffc700 94.27%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 50px;
}
.grow-text {
    margin-bottom: 50px;
}

/* Tab Navigation */
.tab-item {
    padding: 20px 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--Gray-Text, #979797);
}

.tab-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-title {
    font-size: 20px;
    font-weight: 500;
    color: #03030f;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tab-description {
    font-size: var(--paragraph);
    color: #334155;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.tab-item.active .tab-title {
    color: #03030f;
}

.tab-item.active .tab-description {
    max-height: 200px;
    margin-top: 10px;
}

.tab-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 20px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.tab-item.active .tab-indicator {
    opacity: 1;
    transform: scale(1);
}

.explore-btn {
    background: var(--color-blue);
    color: var(--color-white);
    padding: 15px 35px;
    border: none;
    font-size: var(--paragraph);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.explore-btn:hover {
    background: #ff8c42;
    transform: translateX(5px);
}

.explore-btn svg {
    width: 18px;
    height: 18px;
}

/* Right Content Area */
.content-area {
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: 390px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.content-body {
    padding: 50px 60px;
}

.content-heading {
    font-size: 40px;
    font-weight: 400;
    color: #03030f;
    margin-bottom: 16px;
    line-height: 1.4;
    max-width: 80%;
}

.content-text {
    font-size: var(--paragraph);
    color: #666;
    line-height: 1.8;
    margin-bottom: 0px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.service-tag {
    background: var(--color-white);
    padding: 10px 16px;
    border-radius: 5px;
    font-size: var(--paragraph);
    color: #545454;
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: var(--color-blue);
    color: var(--color-white);
    border-color: var(--color-blue);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .main-heading {
        font-size: 32px;
    }

    .content-body {
        padding: 30px;
    }

    .content-heading {
        font-size: 26px;
    }

    .banner-image {
        display: none;
    }
}
/* service tabs section css */

.secondary-btn {
    letter-spacing: 10%;
    font-size: 20px;
    border: none;
    background: none;
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
    display: block;
    font-weight: 100;
}

.secondary-btn svg {
    width: 15px;
    transition: all 0.3s ease-in-out;
}
.secondary-btn:hover svg {
    transform: rotate(-45deg);
}

.tabs-wrapper {
    margin-top: 50px;
}

.read-more-btn {
    font-weight: 600;
}

/* ===== AI Services Section Styles ===== */
.ai-services-section {
    padding: 80px 0;
    background: var(--color-white);
}

.ai-services-section .section-title {
    font-size: 40px;
    font-weight: 400;
    color: #03030f;
    line-height: 1.2;
    margin-bottom: 16px;
}

.ai-services-section .section-desc {
    font-size: 0.97rem;
    color: #334155;
    line-height: 1.7;
}

/* Tab Buttons */
.ai-tab-btn {
    background: #f5f5f5;
    border: 0.64px solid #f6f6f6;
    border-radius: 2px;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #000000;
    cursor: pointer;
    transition: all 0.22s ease;
    white-space: nowrap;
    margin: 4px 4px;
}

.ai-tab-btn:hover {
    border-color: var(--color-blue);
    color: var(--color-blue);
    background: #eff6ff;
}

.ai-tab-btn.active {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-white);
}

.ai-tab-btn.active:hover {
    background: var(--color-blue);
    border-color: var(--color-blue);
}

.ai-tabs-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    /* margin-bottom: 28px; */
    padding: 0 32px;
}

/* Content Box */
.ai-content-box {
    border-radius: 10px;
    padding: 36px 36px 32px;
    background: var(--color-white);
    min-height: 360px;
    position: relative;
}

.ai-content-box h3 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 18px;
}

.ai-content-box p {
    font-size: 0.93rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}

.ai-content-box .btn-quote {
    background: var(--color-dark);
    color: var(--color-white);
    border: none;
    border-radius: 6px;
    padding: 13px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 10px;
}

.ai-content-box .btn-quote:hover {
    background: var(--color-blue);
}

/* Tab content fade */
.ai-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.ai-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Left image */
.ai-hero-img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 991px) {
    .ai-services-section .section-title {
        font-size: 2rem;
    }
    .ai-content-box {
        padding: 24px 20px;
    }
    .ai-hero-img {
        min-height: 260px;
        margin-bottom: 30px;
    }
}

/* ))))))))))))))))))))))))))))))))))))))))))))))))))))))))(((((((((((((((((((((((((((((((((((((((((( */
/* .case-study-slider-section{
    padding: 100px 0;
  } */

  .page-template-digital-marketing .service-hero-tag {
    display: none;
}

  .success-stories-grid .story-card:nth-child(n+13) {
    display: none;
}
.section-head-area {
    margin-bottom: 50px;
}

.industries-section .section-head-area {
    margin-bottom: 0 !important;
}

.custom-hero-slider {
    position: relative;
}

.slider-wrapper {
    position: relative;
    height: 90vh;
    border-radius: 8px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-repeat: no-repeat;
    background-position: top;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Main Content */
.slide-content {
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    color: #fff;
    width: 100%;
}

.slide-title {
    font-size: 70px;
    font-weight: 800;
    max-width: 40%;
    width: 100%;
}

.slide-subtitle {
    margin-top: 20px;
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 35px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 20px;
    background: #eeeeee;
    color: #000;
}
.next {
    right: 20px;
}

/* Bottom */
.bottom-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 130px;
    background: #4192d1b8;
    display: flex;
    align-items: center;
    padding: 0 60px;
    transition: height 0.6s ease;
    z-index: 8;
}

.bottom-overlay.expanded {
    height: 90%;
    border-radius: 12px;
}

.overlay-text {
    color: #fff;
    font-size: 26px;
    max-width: 25%;
    line-height: 1.5;
}

/* Preview */
.next-preview {
    margin-left: auto;
    width: 280px;
    height: 160px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s ease;
    margin-top: -100px;
}

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

.bottom-overlay.expanded .next-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin-top: 0 !important;
    padding: 50px;
}

/* Expanded Content */
.expanded-content {
    position: absolute;
    left: 100px;
    top: 50%;
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: translateY(-50%);
}

.bottom-overlay.expanded .expanded-content {
    opacity: 1;
}

.view-slide-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.bottom-overlay.expanded .next-preview img {
    border-radius: 6px;
}
.expanded-title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.5;
}
.expanded-subtitle {
    font-size: 18px;
}

/* cta container css */
.cta-section {
    overflow: hidden;
    padding: 40px 0;
}

/* Text styling */
.cta-text {
    color: #545454;
    font-weight: 400;
    font-size: 32px;
    margin: 0;
    max-width: 190px;
}

/* Horizontal Line */
.cta-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    height: 2px;
    background: #ccc;
    z-index: 1;
    transform: translate(-50%, -50%);
}

/* Circle Button */
.cta-circle {
    position: relative;
    z-index: 2;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-weight: 500;

    background: var(--color-blue);
    box-shadow: 0px 20px 30px 0px #00000033;

    transition: all 0.3s ease;
}

.cta-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0px 25px 40px 0px #00000040;
    color: #fff;
}

.mt-minus {
    margin-top: -40px;
}

.cta-circle img {
    width: 10px;
}

/* why choose us */
.why-choose-section {
    padding: 100px 0;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    align-items: center;
}

/* Text Block */
.text-block {
    max-width: 360px;
}

.text-block .icon {
    margin-bottom: 40px;
}

.text-block .icon img {
    width: 40px;
}

/* Image Block */
.image-block img {
    width: 100%;
    display: block;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 991px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .text-block {
        margin: 0 auto;
    }
}

.why-choose-section .feature-item > h3 {
    color: #545454;
    font-size: 18px;
}
.why-choose-section .feature-item > p {
    font-size: 18px;
    font-weight: 400;
    color: #03030f;
    line-height: 1.5;
}

/* industries section css */
.indus-hero-img {
    border-radius: 40px;
    overflow: hidden;
}
.industries-section::before {
    content: '';
    background: #f5f5f5;
    width: 80%;
    height: 100%;
    display: block;
    position: absolute;
    z-index: 0;
    border-radius: 12px;
    right: 0;
}
.industries-section .section-head-area {
    padding-left: 30px;
}

/* ===================== INDUS SLIDER WRAPPER ===================== */
.indus-slider-wrapper {
    position: relative;
    margin-top: -60px; /* image pe overlap */
    padding: 0 30px;
}

/* ===================== CUSTOM NAV ARROWS ===================== */
.indus-slider-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    padding-left: 400px;
}

.indus-arrow-btn {
    width: 70px;
    height: 40px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition:
        background 0.2s,
        color 0.2s;
}

.indus-arrow-btn.prev-btn {
    background: #eeeeee;
    color: #333;
    border-radius: 3px 0 0 3px;
}

.indus-arrow-btn.next-btn {
    background: #03030f;
    color: #fff;
    border-radius: 0px 3px 3px 0px;
}

.indus-arrow-btn.prev-btn:hover {
    background: #c5c5c5;
}
.indus-arrow-btn.next-btn:hover {
    background: #2d2d4e;
}

/* ===================== SLIDER CARDS ===================== */
.indus-slide {
    padding: 0 8px;
}

.indus-card {
    background: #fafafa;
    padding: 30px 20px 30px;
    text-align: center;
    transition:
        box-shadow 0.25s,
        transform 0.25s;
    border: 0.88px solid #e9e9e9;
    height: 100%;
}

.indus-card:hover {
    box-shadow: 0px 30px 90px 0px #00000021;
    border: 1px solid #ffe0d7;
}

.indus-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indus-card-icon img {
    width: 100%;
    height: 100%;
}

.indus-card h4 {
    font-size: 20px;
    font-weight: 200;
    color: #03030f;
    margin-bottom: 10px;
}

.indus-card p {
    font-size: 16px;
    font-weight: 200;
    color: #334155;
    line-height: 1.55;
}
.indus-slider {
    transform: translateX(-215px);
    width: 1300px;
}
.indus-slider .slick-track {
    display: flex;
    gap: 30px;
    height: 400px;
    align-items: center;
}
.slick-initialized .slick-slide > div {
    height: 100%;
}
.slick-initialized .slick-slide {
    height: 315px;
}
/* ******************************************************** */
/* ── Donut SVG ── */
#donutSvg {
    width: 360px;
    height: 360px;
    overflow: visible;
    flex-shrink: 0;
    transform: rotate(-45deg);
}

.seg-path {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.seg-path.dimmed {
    opacity: 0.12;
}

.seg-path.lit {
    opacity: 1;
    fill: url(#segGradient);
}

.certerd-text {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    color: #03030f;
    font-size: 32px;
}

/* ── Accordion ── */
.acc-item {
    border-bottom: 1px solid #dee2e6;
    padding: 18px 0;
    cursor: pointer;
    user-select: none;
}

.acc-item:first-child {
    border-top: none;
}

.acc-num {
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 0.6px;
    color: #979797;
    min-width: 26px;
    transition: color 0.25s;
}

.acc-title {
    font-size: 24px;
    font-weight: 200;
    letter-spacing: -0.5px;
    color: #03030f;
    transition: color 0.25s;
    line-height: 1;
}

.acc-body {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition:
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.28s ease;
}

.acc-item.active .acc-body {
    max-height: 570px;
    opacity: 1;
}

.acc-desc {
    font-size: 20px;
    line-height: 1.75;
    color: #03030f;
    font-weight: 200;
}

.acc-focus {
    font-size: 20px;
    line-height: 1.5;
    color: #03030f;
    font-weight: 200;
    margin-bottom: 20px !important;
}

.acc-list {
    padding: 0;
}

.acc-list li {
    font-size: 20px;
    line-height: 1.5;
    color: #03030f;
    font-weight: 200;
    position: relative;
    padding-left: 18px;
}

/* Arrow in SVG */
#arrowG {
    transform-origin: 180px 180px;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* #arrowG polygon {
        fill: #000;
    } */

/* textimonial section */
.testimonial-section {
    background: #f5f5f5;
}

/* Main Video */
.video-wrapper video {
    height: 500px;
    object-fit: cover;
    background: #000;
}

/* Right List */
.testimonial-list {
    max-height: 500px;
    overflow-y: auto;
    padding: 30px;
}

/* Scrollbar Styling */
.testimonial-list::-webkit-scrollbar {
    width: 6px;
}
.testimonial-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* Each Item */
.testimonial-item {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 0;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e6e6e6;
}

.testimonial-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* .testimonial-item.active {
} */

/* Client Image */
.client-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

/* new multi cta section */
/* =========================
   SECTION WRAPPER
========================= */
.multi-btn-cta-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* =========================
   CONTAINER + GRADIENT BORDER (WITH RADIUS)
========================= */

.multi-ctas-container {
    position: relative;
    padding: 28px 30px;
    border-radius: 2px;
    background: #edf7ff;
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 50px 0px #ffffff inset;
    margin-top: 50px;
    overflow: hidden;
    z-index: 0;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Fake gradient border with proper border-radius */
.multi-ctas-container::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px; /* border thickness */
    border-radius: 2px;
    background: linear-gradient(180deg, rgb(65 146 209) 0%, rgb(65 146 209) 100%);
    /* create hollow center */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* =========================
   BUTTONS LAYOUT
========================= */

.multi-ctas-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.multi-ctas-btns a {
    text-decoration: none;
}

/* =========================
   BUTTON DEFAULT STATE
========================= */

.multi-ctas-btns a > div {
    position: relative;
    border-radius: 10px;
    padding: 8px 23px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    background: #d0d0d061;
}

/* default light border using pseudo-element */
.multi-ctas-btns a > div::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px; /* border thickness */
    border-radius: 10px;
    background: #f8f8f8;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* button text */
.multi-ctas-btns a p {
    color: #050f2b;
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    margin: 0;
}

/* =========================
   BUTTON HOVER STATE
========================= */

.multi-ctas-btns a:hover > div {
    background: #fff;
}

.multi-ctas-btns a:hover > div::before {
    background: linear-gradient(271.55deg, #4192d1 21.51%, #66c1f0 94.27%);
}

/* =========================
   IMAGE SWAP ON HOVER
========================= */

img.hovered {
    display: none;
}

.multi-ctas-btns a:hover img.hovered {
    display: block !important;
}

.multi-ctas-btns a:hover img.non-hovered {
    display: none !important;
}

/* new multi cta section end*/

.-mt-100 {
    margin-top: -100px !important;
}

/* header navigations */ /* ================================================
   TXTPro - Header Styles
   Paste this inside your style.css
   (No :root or body rules — conflict-safe)
   ================================================ */

/* ── Body lock when drawer is open ── */
body.drawer-open {
    overflow: hidden;
}

/* ================================================
   HEADER
   ================================================ */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent !important;
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 10px;
    padding-top: 10px;
}

.site-header.scrolled {
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(16px) saturate(180%) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* ================================================
   LOGO
   ================================================ */
.site-logo {
    display: none;
    /* align-items: center;
  text-decoration: none;
  flex-shrink: 0; */
}

.site-logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* ================================================
   DESKTOP NAV
   ================================================ */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
}

.desktop-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.desktop-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    color: #3a3f4b;
    text-decoration: none;
    border-radius: 6px;
    letter-spacing: 0.01em;
    position: relative;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.desktop-menu li a:hover {
    color: #4192d1;
}

.desktop-menu li a:hover::after {
    transform: scaleX(1);
}

/* ================================================
   HAMBURGER
   ================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    flex-shrink: 0;
    border-radius: 6px;
    transition: background 0.3s ease;
    z-index: 1100;
    position: relative;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #0d0f14;
    border-radius: 2px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        width 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ================================================
   MOBILE OVERLAY
   ================================================ */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    pointer-events: none; /* clicks pass-through jab visible nahi */
    transition: opacity 0.3s ease;
}

.mobile-overlay.visible {
    opacity: 1;
    pointer-events: all; /* ab clicks enable honge sirf jab drawer open ho */
}

/* ================================================
   MOBILE DRAWER (slides from right)
   ================================================ */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 100vw);
    background: #ffffff;
    z-index: 1060;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
}

.mobile-drawer.open {
    transform: translateX(0);
}

/* Drawer Header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 72px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.drawer-logo {
    display: flex;
    align-items: center;
}

.drawer-logo img {
    height: 36px;
    width: auto;
}

/* Close button */
.drawer-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    color: #0d0f14;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.drawer-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.drawer-close svg {
    width: 16px;
    height: 16px;
}

/* Drawer Body */
.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
}

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

.drawer-menu li a {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: #3a3f4b;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        padding-left 0.3s ease;
}

.drawer-menu li a:hover {
    color: #0d0f14;
    border-left-color: #f57c00;
    background: rgba(245, 124, 0, 0.04);
    padding-left: 30px;
}

.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero:before {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}

/* Drawer Footer */
.drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

/* Quote Button Mobile */
.btn-quote-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    background: #0d0f14;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.btn-quote-mobile:hover {
    background: #1e2230;
    transform: translateY(-1px);
}

/* ── Stagger animation for drawer links ── */
.mobile-drawer.open .drawer-menu li {
    animation: drawerLinkIn 0.3s ease both;
}

.mobile-drawer.open .drawer-menu li:nth-child(1) {
    animation-delay: 0.05s;
}
.mobile-drawer.open .drawer-menu li:nth-child(2) {
    animation-delay: 0.1s;
}
.mobile-drawer.open .drawer-menu li:nth-child(3) {
    animation-delay: 0.15s;
}
.mobile-drawer.open .drawer-menu li:nth-child(4) {
    animation-delay: 0.2s;
}
.mobile-drawer.open .drawer-menu li:nth-child(5) {
    animation-delay: 0.25s;
}

@keyframes drawerLinkIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}

.servce-tabs-mobile-view-content,
.service-mobile-view-btns .primary-btn,
.mobile-view-cta-content {
    display: none;
}

/* blog section */
.blog-wrapper {
    padding: 0 60px;
}

/* Desktop: flex grid */
@media (min-width: 992px) {
    .blog-slider {
        display: flex;
        gap: 30px;
    }

    .blog-item {
        flex: 0 0 calc(33.333% - 20px);
    }
}

.blog-card {
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: 0.3s ease;
}

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

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

.blog-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h4 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
    font-weight: 300;
}

.read-more {
    color: #4192d1;
    font-weight: 400;
    text-decoration: none;
    width: fit-content;
}

.read-more:hover {
    text-decoration: underline;
}

/* Mobile slider spacing */
@media (max-width: 991px) {
    .blog-item {
        padding: 0 10px;
    }

    .blog-wrapper {
        padding: 0 15px;
    }

    .slick-list {
        margin: 0 -10px;
    }

    .slick-dots {
        bottom: -35px;
    }

    .slick-dots li button:before {
        font-size: 10px;
        color: #2b7cff;
    }

    .slick-dots li.slick-active button:before {
        color: #2b7cff;
        opacity: 1;
    }
}

/* Slick Fix */
.slick-slide {
    height: auto;
}

.slick-track {
    display: flex !important;
}

.slick-slide > div {
    height: 100%;
}

.cst-view-slide-btn {
    display: none;
}

.custom-bg {
    background-color: #f5f5f5;
}

.w-fit {
    width: fit-content !important;
}

.divider {
    width: 100%;
    height: 1px;
    background: #d9d9d9;
}

@media (min-width: 768px) {
    .bg-md-white {
        background-color: #ffffff !important;
    }
}

.body-of-circle {
    position: relative;
}

.number-of-circle-01 {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    user-select: none;
    cursor: pointer;
}

.number-of-circle-02 {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    z-index: 1;
    user-select: none;
    cursor: pointer;
}

.number-of-circle-03 {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    user-select: none;
    cursor: pointer;
}

.number-of-circle-04 {
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
    z-index: 1;
    user-select: none;
    cursor: pointer;
}

.cst-gif-icon {
    width: 50px;
}

/******************************************** Portfolio ********************************************/
.port-detail-hero-section {
    background-image: none !important;
    margin-top: 0;
}
.inner-page-hero-section,
.port-detail-hero-section {
    min-height: 600px;
    margin-top: -60px;
    position: relative;
}

/* .port-detail-hero-section .row {
    padding-top: 80px;
} */
.inner-page-hero-content-area {
    max-width: 750px;
    margin-left: 50px;
    padding-right: 30px;
    padding-top: 100px;
}
.inner-page-hero-img-magic {
    position: relative;
}
.inner-page-headline-h1 {
    color: #334155;
    font-weight: 400;
    font-size: 50px;
    line-height: 70px;
}

/* .inner-page-hero-img-magic:has(.detail-portfolio-right-img):before {
    content: '';
    width: 60px;
    border-radius: 10px 0 0 10px;
    height: 250px;
    background: #979797;
    position: absolute;
    left: 0px;
    top: 50%;
    display: block;
    transform: translateY(-30%);
} */

.detail-portfolio-right-img {
    position: relative;
}

/* case studies page css */

.case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.case-card {
    background: #fff;
    cursor: pointer;
}

.case-tag {
    display: inline-block;
    font-size: 14px;
    color: #2d7dd2;
    background: #dceeff;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 500;
}

.case-card h3 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
    color: #0f172a;
}

.case-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #03030f;
    margin-bottom: 0;
}

.case-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 300px;
}

.case-card-content {
    padding: 50px;
}

.case-study-cta {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    display: none;
    padding: 16px 28px;
    background-color: var(--color-dark);
    color: var(--color-white) !important;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.25s ease,
        transform 0.2s ease;
    border-radius: 4px;
    border: none;
    opacity: 0;
}

.case-image {
    position: relative;
}

.case-study-cta:hover {
    background-color: var(--color-blue);
}

.case-card:hover .case-study-cta {
    display: inline-block;
    opacity: 1;
}

/* faq section css */
.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    margin-bottom: 20px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    padding: 18px 20px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 300;
}

.faq-question .icon {
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

/* responsive */

@media (max-width: 767px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
    }
    .hero.-mt-100 {
        margin-top: 0 !important;
    }
}

/* Detail Portfolio page css */
.ranking-keyword-cards .keyword-card {
    background: #f2f2f3;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-wrap: wrap;
    min-width: 320px;
}

.ranking-keyword-cards {
    display: flex;
    gap: 40px;
}

.ranking-keyword-cards .keyword-card .paragraph {
    margin-bottom: 0;
}

/* organic sales section */
.sales-graph-content-box {
    display: flex;
}

.sales-graph-image {
    padding: 40px 20px;
    background: #F9F9F9;
}

.sales-graph-content {
    background: #EEEEEE;
    padding: 30px 20px;
}

.sales-graph-content h3,
.sales-results-box h3 {
    font-weight: 600;
    font-size: 40px;
    line-height: 1.5;
}

.sales-graph-content li {
    color: #334155;
}

.sales-graph-content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sales-results-box {
    display: flex;
    align-items: center;
    padding: 30px;
    background: #EEEEEE;
    margin-top: 20px;
}

.sales-results-box > div {
    width: 50%;
}

/* stats overview section */
.stats-overview-section {
    background: #FAFAFA;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
}

.stats-con,
.overview-con,
.Keywords-con {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}
.Keywords-con {
    margin-bottom: unset !important;
}

/* more projects */
.project-card-grid {
    display: flex;
    /* overflow-x: auto; */
    gap: 30px;
    /* scrollbar-width: none; */
}
.more-project .case-card {
    width: 100%;
    height: 100% !important;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
}
.more-project .case-card-content {
    padding: 30px;
}

.project-card-grid::-webkit-scrollbar {
    height: 4px; /* Chrome, Safari */
}

/* Show scrollbar only on hover */
/* .project-card-grid:not(:hover) {
    scrollbar-width: none;
}

.project-card-grid:not(:hover)::-webkit-scrollbar {
    display: none;
} */

/* .project-card-grid:hover {
    scrollbar-width: thin;
    scrollbar-color: #888 transparent;
} */

/* .project-card-grid:hover::-webkit-scrollbar {
    display: block;
} */

/* .project-card-grid:hover::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.project-card-grid:hover::-webkit-scrollbar-track {
    background: transparent;
} */


/* Service About section */
.portfolio-cta-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.portfolio-cta-left {
    flex: 1;
}

.portfolio-cta-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.portfolio-cta-section .sub-headline-h2 {
    color: #03030f;
    font-weight: 800;
    font-size: 40px;
    line-height: 1.2;
    font-style: italic;
}

.portfolio-cta-section .cta-arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    text-decoration: none;
}

.portfolio-cta-section .cta-arrow-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 6px;
    font-size: 26px;
    color: #4192d1;
    transition: 0.3s;
}

.portfolio-cta-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.portfolio-cta-card {
    background: #f4f4f6;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 30px;
}

.portfolio-cta-card .content {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: end;
}

.portfolio-cta-card-title {
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 10%;
    text-transform: uppercase;
    color: #334155;
}

.portfolio-cta-right .below {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.our-service-head {
    display: flex;
    gap: 80px;
    justify-content: space-between;
}
.our-service-head .main-heading {
    max-width: 600px;
}
.our-service-head .subtitle {
    max-width: 700px;
}

.our-services-cards {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    padding: 40px;
}

.our-services-cards .our-services-card {
    display: flex;
    flex-direction: column;
    gap: 50px;
    min-width: 320px;
    max-width: 350px;
}

.service-number {
    font-family: Wittgenstein;
    font-weight: 800;
    font-style: Italic;
    font-size: 40px;
    text-transform: lowercase;
}

.our-services-card-title {
    margin-bottom: 25px;
    font-size: 40px;
    font-weight: 400;
}

.bg-gray {
    background-color: #FAFAFA !important;
}

.our-services {
    padding-left: 50px;
    padding-right: 50px;
}

.our-services .container-fluid {
    padding-top: 50px;
    padding-bottom: 50px;
    border: 1px solid #E0E0E0;
}


.technologies-slider-section .slider-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

/* animation */

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

    100% {
        transform: translateX(-50%);
    }
}
.technologies-slider-section .slider-inner-container {
    display: flex;
    gap: 50px;
    align-items: center;
}
.technologies-slider {
    overflow: hidden;
    width: 100%;
}
.technologies-slider-section {
    background: #F2F2F3;
}

/* social media slide section */
.strong-heading {
    color: #f7f7f8;
    font-weight: 800;
    font-size: 150px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.social-media-slide-con {
    display: flex;
    gap: 50px;
}

.sm-slide-content {
    max-width: 500px;
}

.sm-slide-showcase {
    width: 100%;
    display: flex;
    position: relative;
}

.sm-slide-insta {
    position: relative;
    height: 550px;
    margin-top: 50px;
    padding-left: 30px;
}

.sm-slide-insta img {
    height: 100%;
}

.sm-slide-video-con {
    margin-left: -150px;
}
/* company roles */
.company-roles-con {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.company-roles-con > * {
    width: 50%;
}


/* blog detail page */
.single .inner-page-hero-section {
    margin-top: 0px !important;
}

@media(min-width: 992px) {
.inner-page-hero-section:before {
    content: '';
    display: block;
    width: 880px;
    height: 250px;
    position: absolute;
    right: 10px;
    top: -100px;
    z-index: 1;
    background: linear-gradient(
0deg, rgba(255, 255, 255, 0) 10.08%, rgba(255, 255, 255, 0.734212) 39.9%, #FFFFFF 59.2%);
    transform: rotate(-8deg);
}
}



/* =========================================
   Our Trusted Brands
   ========================================= */

.trusted-brands-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.trusted-brands-content {
    flex: 0 0 40%;
    max-width: 40%;
}

.trusted-brands-logos {
    flex: 1;
}

/* ---------- Grid ---------- */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

/* ---------- Each Logo Cell ---------- */
.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 24px;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.25s ease;
}

/* Remove right border: last column */
.brand-item:nth-child(3n) {
    border-right: none;
}

/* Remove bottom border: last row */
.brand-item:nth-last-child(-n+3) {
    border-bottom: none;
}

/* ---------- Logo Image ---------- */
.brand-item img {
    max-width: 130px;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;

    /* Default: grayscale */
    filter: grayscale(100%) opacity(0.5);
    transition: filter 0.3s ease, transform 0.3s ease;
}

/* ---------- Hover: color restore ---------- */
.brand-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.brand-item:hover {
    background: #fafafa;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .trusted-brands-container {
        flex-direction: column;
        gap: 40px;
    }

    .trusted-brands-content {
        flex: none;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-item:nth-child(3n)        { border-right: 1px solid #e0e0e0; }
    .brand-item:nth-child(2n)        { border-right: none; }
    .brand-item:nth-last-child(-n+3) { border-bottom: 1px solid #e0e0e0; }
    .brand-item:nth-last-child(-n+2) { border-bottom: none; }
}

.company-roles-section {
    background-color: #F4F4F6;
}

.client-testimonial .section-space {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.client-message {
    max-width: 900px;
    font-family: Wittgenstein;
    font-weight: 400;
    font-style: Italic;
    font-size: 18px;
    line-height: 41.76px;
    text-align: center;
    margin-bottom: 0;
}

.client-name {
    font-family: Wittgenstein;
    font-weight: 400;
    font-style: Italic;
    font-size: 40px;
    line-height: 41.76px;
    text-align: center;
    color: var(--Icon-Blue, #4192D1);
}

.client-designation {
    font-family: Wittgenstein;
    font-weight: 400;
    font-style: Italic;
    font-size: 21.48px;
    line-height: 41.76px;
    letter-spacing: 0%;
    text-align: center;
    color: #979797;
}

.client-testimonial {
    border-top: 1px solid var(--Gray-Text, #979797);
    border-bottom: 1px solid var(--Gray-Text, #979797);
    padding: 80px 0;
}

.client-profile-img {
    width: 82px;
    height: 82px;
}

.client-profile-img img {
    width: 100%;
    object-fit: cover;
}


.site-header.landing-header {
    display: none;
}

.page-template-landing-page .site-header.landing-header {
    display: block !important;
}
.page-template-landing-page .site-header {
    display: none !important;
}

.landing-header-btns {
    display: flex;
    gap: 20px;
}


.site-header.landing-header .header-inner {
    max-width: unset !important;
    margin: 0 auto;
    padding: 0 50px;
    height: 68px;
}

@media(max-width: 767px) {
    .site-header.landing-header .header-inner {
        padding: 0 20px;
    }
}

@media(max-width: 575px) {
    .landing-header-btns {
        gap: 10px !important;
    }
    .landing-header-btns .primary-btn {
        padding: 10px 20px !important;
    }
}

.page-template-landing-page .footer-links-row .col-md:not(.landing-footer-list) {
    display: none;
}

.page-template-landing-page .landing-footer-list .footer-col-title {
    display: none;
}

.page-template-landing-page .landing-footer-list .footer-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.page-template-landing-page .footer-links li a,
.page-template-landing-page .footer-bottom a {
  pointer-events: none;
  text-decoration: none;
  color: inherit;
  cursor: default;
}

.center-btn {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}


/* pricing cards css */
.pricing-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  max-width: 1050px;
  margin: 40px auto 36px;
  flex-wrap: wrap;
}

.pricing-card {
  background: #fff;
  border: 1.5px solid #e2e6ea;
  border-radius: 14px;
  padding: 32px 28px;
  flex: 1 1 280px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pricing-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border: 2px solid #4aaee8;
  box-shadow: 0 8px 28px rgba(74,174,232,0.15);
}

.plan-label {
  font-size: 14px;
  font-weight: 500;
  color: #888;
  margin: 0 0 10px;
}

.pricing-card.featured .plan-label {
  color: #4aaee8;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}

.plan-price .amount {
  font-size: 44px;
  font-weight: 700;
  color: #111;
  line-height: 1;
}

.plan-price .period {
  font-size: 13px;
  color: #999;
}

.plan-desc {
  font-size: 13.5px;
  color: #666;
  line-height: 1.55;
  margin: 0 0 22px;
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  background: #111;
  color: #fff;
  margin-bottom: 24px;
  transition: opacity 0.2s ease;
}

.pricing-card.featured .plan-btn {
  background: #4aaee8;
}

.plan-btn:hover {
  opacity: 0.82;
}

.plan-divider {
  border: none;
  border-top: 1.5px dashed #000000;
  margin-bottom: 22px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #333;
}

.check-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: #e8f7ee;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.check-icon::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 1.6px solid #22c55e;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  .pricing-card {
    max-width: 100%;
    width: 100%;
  }
}

.gap-100 {
    gap: 100px;
}

.page-template-landing-page .story-img img {
    filter: grayscale(0%) !important;
}

/* Overlay */

.page-template-landing-page .story-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
    background: #f5f5f5;
    flex-direction: column;
    padding: 30px;
}

.page-template-landing-page .story-overlay h3 {
    color: #03030f;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Hover show title */

.page-template-landing-page .story-card:hover .story-overlay {
    opacity: 1;
    top: 0;
}

/* Success stories grid */
.success-stories .section-head-area {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.success-stories .section-head-area p {
    margin: 0 auto;
    color: #334155;
    font-size: 15px;
    line-height: 1.7;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px 22px;
    max-width: 1660px;
    margin: 0 auto;
    align-items: start;
}

.success-stories-grid .story-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
    color: #03030f;
    text-decoration: none;
}

.success-stories-grid .story-card:hover {
    color: #03030f;
    text-decoration: none;
}

.success-stories-grid .story-img {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1 / 1.04;
    background: #eeeeee;
}

.success-stories-grid .story-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.success-stories-grid .story-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(3, 3, 15, 0.24);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    text-align: center;
}

.success-stories-grid .story-overlay h3 {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
}

.success-stories-grid .story-card:hover .story-overlay {
    opacity: 1;
}

.success-stories-grid .story-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 20px 20px;
    background: #f5f5f5;
}

.success-stories-grid .story-content > * {
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
}

.success-stories-grid .story-content li {
    flex: 1 1 0;
    min-width: 0;
}

.success-stories-grid .story-content > .wp-block-columns,
.success-stories-grid .story-content > .row {
    display: flex;
    width: 100%;
    gap: 10px;
    margin: 0;
}

.success-stories-grid .story-content > .wp-block-columns > *,
.success-stories-grid .story-content > .row > * {
    flex: 1 1 0;
    min-width: 0;
    padding: 0;
}

.success-stories-grid .story-content h1,
.success-stories-grid .story-content h2,
.success-stories-grid .story-content h3,
.success-stories-grid .story-content h4,
.success-stories-grid .story-content strong,
.success-stories-grid .story-content b {
    display: block;
    color: #03030f;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.05;
}

.success-stories-grid .story-content p,
.success-stories-grid .story-content li,
.success-stories-grid .story-content span {
    color: #979797;
    font-size: 12px;
    line-height: 1.25;
}

.success-stories-grid .story-content .story-stats p {
    margin-top: 10px;
}

.success-stories-grid .story-content ul,
.success-stories-grid .story-content ol {
    display: contents;
    padding: 0;
    list-style: none;
}


/* Header with arrows top-right */
.more-project-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.project-slider-arrows {
    display: flex;
    gap: 10px;
}

.project-slider-arrows button {
    width: 60px;
    height: 35px;
    background: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #fff;
    border: 0;
}

.project-slider-arrows button:hover {
    background: #000;
    color: #fff;
}

.project-slick-slider .slick-list {
    overflow: hidden;
}

.project-slick-slider .slick-track {
    display: flex !important;
    gap: 0; /* gap is handled via slide padding */
}

.project-slick-slider .slick-slide {
    padding-right: 30px;
    box-sizing: border-box;
    height: auto;
}

.project-slick-slider .slick-slide > div {
    height: 100%;
}

/* Hide default slick arrows (we use custom) */
.project-slick-slider .slick-prev,
.project-slick-slider .slick-next {
    display: none !important;
}

.project-slider-arrows .proj-prev {
    background: #ccc;
    color: #000;
}

.technologies-slider:hover .slider-track {
    animation-play-state: paused;
}

.tech-logo-card {
    background: #fff;
    border: 1px solid #E8E8E8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    min-width: 200px;
    max-width: 200px;
    padding: 15px;
    cursor: pointer;
}

.tech-logo-info {
    text-align: center;
}

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


.about-stats-section .about-stats-wrapper {
    display: flex;
    width: 100%;
}

.about-stats-section .about-stats-wrapper .about-stat-card {
    width: 100%;
    height: auto;
    border-right: 1px solid #EBEBEB;
    background: #F8F8F8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 50px;
    gap: 20px;
}

.about-stats-section .stat-number {
    color: var(--black, #03030F);
    font-family: Wittgenstein;
    font-size: 60px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: lowercase;
}

.about-stats-section .plus {
    color: var(--Icon-Blue, #4192D1);
    font-family: Outfit;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.about-stats-section .stat-divider {
    background: #979797;
    height: 1px;
}

.about-stats-section .stat-text {
    color: var(--Subheading, #334155);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px; /* 145.833% */
}

.about-stats-section .about-stats-wrapper .about-stat-card:hover {
    border-right: 1px solid #EBEBEB;
    background: #FFF;
    box-shadow: 0 1px 1px 0 rgba(255, 255, 255, 0.10) inset, 0 50px 100px -20px rgba(50, 50, 93, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.30);
}


.about-story-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-story-wrapper > div {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    align-self: stretch;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.feature-icon {
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    flex-shrink: 0;
    border-radius: 50px;
    background: #979797;
    justify-content: center;
}

.feature-icon svg {
    width: 35px;
}


.project-history-tab {
    display: none;
}

.project-history-tab.active {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.project-history-year-card.active {
    opacity: 1;
}

.project-history-year-card {
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}


.project-history-section {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

.project-history-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--Icon-Blue, #4192D2);
    z-index: 0;
}

.project-history-overlay + .container-fluid {
    position: relative;
    z-index: 1;
}

.project-history-years {
    display: flex;
    height: 89px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
    align-self: stretch;
}

.project-history-years {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;

    /* 🔥 scrollbar hide */
    scrollbar-width: none;        /* Firefox */
    -ms-overflow-style: none;     /* IE/Edge */
}

.project-history-years::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.project-history-year-card {
    flex: 0 0 auto;
}

.project-history-year-card {
    min-width: 180px;
    height: 89px;
    border-radius: 10px;
    background: linear-gradient(182deg, #80BBFF -65.51%, rgba(82, 155, 210, 0.00) 88.26%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 18px 10px;
    text-align: center;
    gap: 4px;
}

.year-number {
    color: var(--White, #FFF);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: 100%;
}

.year-label {
    color: var(--White, #FFF);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
}

.project-history-tab > div {
    width: 48%;
}

.project-history-tab .sub-headline-h2 {
    color: var(--White, #FFF);
    font-family: Outfit;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.project-history-tab .paragraph {
    color: var(--White, #FFF);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 35px; /* 194.444% */
}

.project-history-content {
    padding-top: 50px;
    padding-bottom: 50px;
}

.mission-vision-wrapper {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.mission-item,
.vision-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

ul.mission-list {
    padding: 0;
}

ul.vision-list {
    padding: 0;
}

.mission-vision-wrapper > div {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-list p,
.vision-list p {
    color: var(--Subheading, #334155);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.mission-vision-wrapper .paragraph {
    color: #000;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 194.444% */
}

.we-help-wrapper {
    display: flex;
    gap: 80px;
}

.we-help-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.help-item {
    border-bottom: 1px solid #ccc;
    border-left: 2px solid transparent;
    padding-bottom: 20px;
    padding: 15px;
}

.help-item:hover {
    border-left: 2px solid #429DF1;
    padding-left: 15px;
}

.help-title {
    color: var(--Subheading, #334155);
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.help-item .paragraph {
    color: #000;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 35px; /* 194.444% */
    margin-bottom: 0;
}

.we-help-left {
    width: 50%;
}

.we-help-right {
    width: 100%;
}


.values-head {
    margin-bottom: 50px;

}

.values-head .subtitle {
    max-width: 700px;
    margin: 0 auto
}


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

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

.team-image {
    position: relative;
}

.team-arrow {
    position: absolute;
    bottom: -15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #2b6cff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* optional hover */
.team-card:hover .team-arrow {
    transform: scale(1.1);
}


@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.team-head .subtitle {
    max-width: 700px;
    margin: 0 auto;
}

.team-head {
    margin-bottom: 50px;
}

/* our offices */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.office-card {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 20px;
    overflow: hidden;
}

.office-image {
    width: 40%;
}

.office-content {
    width: 60%;
    padding: 25px;
}

.office-country {
    letter-spacing: 2px;
}

.office-company {
    margin: 10px 0;
}

.office-phone {
    margin-top: 10px;
    font-weight: 600;
}

.offices-head .subtitle {
    max-width: 700px;
    margin: 0 auto;
}

.offices-head {
    margin-bottom: 50px;
}



.why-choose-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-choose-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-choose-right {
    width: 50%;
}

.why-point {
    margin-bottom: 20px;
}

.point-title {
    margin-bottom: 5px;
    color: var(--Subheading, #334155);
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.multi-ctas-btns a:hover span {
    transform: rotate(-90deg);
}

.multi-ctas-btns a span {
    transition: all 0.2s ease;
}

@media (max-width: 768px) {

    .services-section .service-tags + .primary-btn {
        display: none !important;
    }

    .why-choose-wrapper {
        flex-direction: column;
    }

    .why-choose-left,
    .why-choose-right {
        width: 100%;
    }
}

.why-choose-points .paragraph {
    color: #000;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 35px; /* 194.444% */
}



/* =========================
   OUR BRANDS
========================= */

.our-brands {
    background: #f7f7f7;
}

/* grid */
.our-brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

/* card */
.our-brand-card {
    background: #fff;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    transition: 0.3s;
    border: 1px solid #D9D9D9;
}

/* logo */
.our-brand-card img {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
}

/* bottom label */
.our-brand-card span {
    position: absolute;
    bottom: 0;
    width: fit-content;
    background: #F5F5F5;
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    right: 0;
}

/* hover */
.our-brand-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}


/* laptop */
@media (max-width: 1200px) {
    .our-brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* tablet */
@media (max-width: 992px) {
    .our-brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* mobile large */
@media (max-width: 768px) {
    .our-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .our-brand-card {
        height: 150px;
    }

    .our-brand-card img {
        max-width: 110px;
    }
}

/* mobile small */
@media (max-width: 480px) {
    .our-brands-grid {
        grid-template-columns: 1fr;
    }

    .our-brand-card {
        height: 140px;
    }
}




/* about us */
.inner-page-hero-img-magic img {
    width: 100%;
}
/* =============================================
   ABOUT US PAGE — RESPONSIVE STYLES
   Breakpoints:
     Mobile  : max-width 767px
     Tablet  : 768px – 991px
     Laptop  : 992px – 1199px
     Desktop : 1200px+ (base styles handle this)

   EXCLUDED sections (no changes):
     - Header
     - Footer
     - CTA section
     - Hero / inner-page-hero section
     - Our Brands section
   ============================================= */


/* =============================================
   SHARED UTILITIES
   ============================================= */

/* Make section-space padding responsive */
@media (max-width: 991px) {
    .section-space {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

@media (max-width: 767px) {
    .section-space {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .py-80 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .main-heading {
        font-size: 28px;
    }

    .sub-headline-h2 {
        font-size: 26px !important;
    }

    .subtitle {
        font-size: 15px;
    }

    .w-60,
    .w-70 {
        width: 100% !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .py-80 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .main-heading {
        font-size: 32px;
    }
}


/* =============================================
   1. STATS SECTION — .about-stats-section
   ============================================= */

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .about-stats-section .about-stats-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        flex-wrap: wrap;
    }

    .about-stats-section .about-stats-wrapper .about-stat-card {
        height: auto;
        min-height: 200px;
        padding: 30px;
        border-bottom: 1px solid #EBEBEB;
    }

    .about-stats-section .stat-number {
        font-size: 48px;
    }

    .about-stats-section .stat-text {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .about-stats-section .about-stats-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats-section .about-stats-wrapper .about-stat-card {
        height: auto;
        min-height: 180px;
        padding: 24px 20px;
        border-right: 1px solid #EBEBEB;
        border-bottom: 1px solid #EBEBEB;
    }

    /* Remove right border on last in each row */
    .about-stats-section .about-stats-wrapper .about-stat-card:nth-child(2n) {
        border-right: none;
    }

    .about-stats-section .stat-number {
        font-size: 36px;
    }

    .about-stats-section .plus {
        font-size: 30px;
    }

    .about-stats-section .stat-text {
        font-size: 15px;
        line-height: 22px;
    }
}


/* =============================================
   2. OUR STORY SECTION — .about-story-section
   ============================================= */

/* Laptop */
@media (min-width: 992px) and (max-width: 1199px) {
    .about-story-wrapper > div {
        width: 48%;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .about-story-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .about-story-wrapper > div {
        width: 100%;
    }

    .about-story-left .about-story-image img {
        max-height: 400px;
        object-fit: cover;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .about-story-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .about-story-wrapper > div {
        width: 100%;
        gap: 20px;
    }

    .about-story-right .sub-headline-h2 {
        font-size: 24px !important;
    }

    .about-story-image {
        width: 100%;
    }

    .about-story-left .about-story-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .about-story-btn .primary-btn {
        padding: 14px 32px;
        font-size: 15px;
    }

    .about-tag {
        font-size: 13px;
    }
}


/* =============================================
   3. PROJECT HISTORY SECTION
   ============================================= */

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .project-history-wrapper {
        gap: 30px;
    }

    .project-history-year-card {
        min-width: 140px;
        height: 75px;
        padding: 12px 8px;
    }

    .year-number {
        font-size: 20px;
    }

    .year-label {
        font-size: 14px;
    }

    .project-history-tab {
        flex-direction: column;
        gap: 30px;
    }

    .project-history-tab > div {
        width: 100%;
    }

    .project-history-tab .sub-headline-h2 {
        font-size: 32px !important;
    }

    .project-history-tab .paragraph {
        font-size: 16px;
        line-height: 28px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .project-history-years {
        gap: 12px;
        height: auto;
        padding-bottom: 10px;
    }

    .project-history-year-card {
        min-width: 120px;
        height: 68px;
        padding: 10px 8px;
        border-radius: 8px;
    }

    .year-number {
        font-size: 17px;
    }

    .year-label {
        font-size: 12px;
    }

    .project-history-tab {
        flex-direction: column;
        gap: 24px;
    }

    .project-history-tab > div {
        width: 100%;
    }

    .project-history-tab .sub-headline-h2 {
        font-size: 24px !important;
        line-height: 1.3;
    }

    .project-history-tab .paragraph {
        font-size: 15px;
        line-height: 26px;
    }

    .project-history-tab .project-history-right img {
        border-radius: 8px;
    }

    .project-history-content {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}


/* =============================================
   4. MISSION & VISION SECTION
   ============================================= */

/* Laptop */
@media (min-width: 992px) and (max-width: 1199px) {
    .mission-vision-wrapper {
        gap: 40px;
    }

    .mission-vision-wrapper > div {
        width: 48%;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .mission-vision-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .mission-vision-wrapper > div {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .mission-vision-wrapper {
        flex-direction: column;
        gap: 32px;
    }

    .mission-vision-wrapper > div {
        width: 100%;
        gap: 16px;
    }

    .mission-vision-wrapper .sub-headline-h2 {
        font-size: 24px !important;
    }

    .mission-vision-wrapper .paragraph {
        font-size: 15px;
        line-height: 26px;
    }

    .mission-list p,
    .vision-list p {
        font-size: 15px;
    }

    ul.mission-list,
    ul.vision-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mission-item,
    .vision-item {
        gap: 8px;
        align-items: flex-start;
    }

    .mission-item svg,
    .vision-item svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        margin-top: 2px;
    }
}


/* =============================================
   5. WE CAN HELP YOU WITH — .we-help-section
   ============================================= */

/* Laptop */
@media (min-width: 992px) and (max-width: 1199px) {
    .we-help-wrapper {
        gap: 50px;
    }

    .we-help-left {
        width: 35%;
    }

    .we-help-right {
        width: 65%;
    }

    .we-help-grid {
        gap: 24px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .we-help-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .we-help-left,
    .we-help-right {
        width: 100%;
    }

    .we-help-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .help-title {
        font-size: 17px;
    }

    .help-item .paragraph {
        font-size: 15px;
        line-height: 26px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .we-help-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .we-help-left,
    .we-help-right {
        width: 100%;
    }

    .we-help-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .help-item {
        padding: 14px 12px;
    }

    .help-title {
        font-size: 16px;
    }

    .help-item .paragraph {
        font-size: 14px;
        line-height: 24px;
    }

    .help-item .arrow {
        display: none;
    }
}


/* =============================================
   6. VALUES SECTION — .values-section
   ============================================= */

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .values-head .subtitle {
        max-width: 100%;
    }

    .values-timeline img {
        width: 100%;
        height: auto;
        overflow: hidden;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .values-head {
        margin-bottom: 30px;
    }

    .values-head .main-heading {
        font-size: 26px;
    }

    .values-head .subtitle {
        font-size: 14px;
        max-width: 100%;
    }

    .values-timeline {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .values-timeline img {
        min-width: 700px;
        height: auto;
    }
}


/* =============================================
   7. OUR TEAM — .our-team-section
   ============================================= */

/* Laptop */
@media (min-width: 992px) and (max-width: 1199px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .team-head .subtitle {
        max-width: 90%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-head {
        margin-bottom: 30px;
    }

    .team-head .main-heading {
        font-size: 28px;
    }

    .team-head .subtitle {
        font-size: 14px;
        max-width: 100%;
    }

    .team-name {
        font-size: 15px;
    }

    .team-role {
        font-size: 13px;
    }

    .team-content {
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .team-arrow {
        width: 32px;
        height: 32px;
        bottom: -12px;
        right: 10px;
    }
}

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


/* =============================================
   8. OUR OFFICES — .our-offices-section
   ============================================= */

/* Laptop */
@media (min-width: 992px) and (max-width: 1199px) {
    .offices-grid {
        gap: 20px;
    }

    .office-content {
        padding: 18px;
    }

    .office-country {
        font-size: 16px;
    }

    .office-company {
        font-size: 15px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .office-card {
        flex-direction: column;
        border-radius: 14px;
    }

    .office-image {
        width: 100%;
    }

    .office-image img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        object-position: center;
    }

    .office-content {
        width: 100%;
        padding: 20px;
    }

    .offices-head .subtitle {
        max-width: 90%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .office-card {
        flex-direction: column;
        border-radius: 12px;
    }

    .office-image {
        width: 100%;
    }

    .office-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        object-position: center top;
    }

    .office-content {
        width: 100%;
        padding: 20px;
    }

    .office-country {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .office-company {
        font-size: 15px;
    }

    .office-address {
        font-size: 14px;
        line-height: 1.6;
    }

    .office-phone {
        font-size: 14px;
    }

    .offices-head {
        margin-bottom: 30px;
    }

    .offices-head .main-heading {
        font-size: 28px;
    }

    .offices-head .subtitle {
        font-size: 14px;
        max-width: 100%;
    }
}


/* =============================================
   9. WHY CHOOSE ITXITPRO — .why-choose-section
   ============================================= */

/* Laptop */
@media (min-width: 992px) and (max-width: 1199px) {
    .why-choose-wrapper {
        gap: 40px;
    }

    .why-choose-left,
    .why-choose-right {
        width: 50%;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .why-choose-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .why-choose-left,
    .why-choose-right {
        width: 100%;
    }

    .why-choose-left {
        gap: 20px;
    }

    .why-point {
        margin-bottom: 12px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .why-choose-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .why-choose-left,
    .why-choose-right {
        width: 100%;
    }

    .why-choose-left {
        gap: 20px;
    }

    .why-choose-section .main-heading {
        font-size: 26px;
    }

    .why-point {
        margin-bottom: 12px;
    }

    .point-title {
        font-size: 16px;
    }

    .why-choose-points .paragraph {
        font-size: 15px;
        line-height: 26px;
    }

    .why-choose-btn .primary-btn {
        padding: 14px 32px;
        font-size: 15px;
    }

    .why-choose-image img {
        border-radius: 8px;
    }
}


/* =============================================
   INNER PAGE HERO — responsive (not full hero)
   Only text/layout inside, not BG or structure
   ============================================= */

@media (max-width: 991px) {
    .inner-page-hero-content-area {
        margin-left: 25px;
        padding-right: 15px;
    }

    .inner-page-headline-h1 {
        font-size: 38px;
        line-height: 52px;
    }
}

@media (max-width: 767px) {
    .inner-page-hero-section {
        min-height: auto;
        padding-bottom: 40px;
    }

    .inner-page-hero-content-area {
        margin-left: 20px;
        margin-right: 20px;
        padding-right: 0;
        margin-top: 30px;
        padding-top: 20px;
    }

    .inner-page-headline-h1 {
        font-size: 30px;
        line-height: 42px;
    }

    .inner-page-hero-section .row {
        flex-direction: column;
    }

    .inner-page-hero-section .col-md-6 {
        width: 100%;
    }

    .inner-page-hero-section .para-con p {
        font-size: 15px;
    }

    .inner-page-hero-section .primary-btn {
        margin-top: 10px;
    }
}


/* =============================================
   ABOUT TAG (OUR STORY sub-label)
   ============================================= */

@media (max-width: 767px) {
    .about-tag {
        font-size: 12px;
        padding: 4px 10px;
    }
}


/* =============================================
   GLOBAL: container padding on small screens
   ============================================= */

@media (max-width: 767px) {
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .our-services {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Typography scale-down */
    .paragraph {
        font-size: 15px !important;
        line-height: 24px !important;
    }
}



/* Contact us */

/* =============================================
   CONTACT US PAGE STYLES
   Sections: Book a Discovery Call + Our Offices
   Responsive: Mobile / Tablet / Laptop / Desktop
   ============================================= */


/* =============================================
   SECTION — BOOK A DISCOVERY CALL
   ============================================= */

.discovery-call-section {
    background-color: #f5f5f5;
}

/* Wrapper: left image card + right form */
.discovery-call-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

/* ── LEFT: Office Image Card ── */
.discovery-call-left {
    flex: 0 0 500px;
    width: 500px;
}

.contact-office-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-office-image {
    width: 100%;
    height: 550px;
}

.contact-office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark gradient overlay on bottom half */
.contact-office-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px 24px;
    background: linear-gradient(
        to top,
        rgba(3, 3, 15, 0.92) 0%,
        rgba(3, 3, 15, 0.70) 60%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-office-country {
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 4px;
}

.contact-office-company {
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.contact-office-address {
    color: rgba(255, 255, 255, 0.80);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-office-phone {
    color: rgba(255, 255, 255, 0.90);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    margin: 6px 0 0;
}

/* ── RIGHT: Form Area ── */
.discovery-call-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.discovery-form-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.discovery-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 400;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.2;
}

.discovery-subtitle {
    color: #334155;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ── Form ── */
.discovery-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Two-column row */
.form-row-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Full-width row */
.form-row-full {
    width: 100%;
}

/* Submit row: captcha + button */
.form-row-submit {
    display: flex;
    align-items: center;
    gap: 16px;
}

.captcha-area {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

/* Base input style */
.contact-input {
    width: 100%;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 300;
    color: var(--color-dark);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.contact-input::placeholder {
    color: #979797;
}

.contact-input:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(65, 146, 209, 0.10);
}

/* Select arrow */
.contact-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23979797' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
    cursor: pointer;
}

.contact-select option {
    color: var(--color-dark);
}

/* Textarea */
.contact-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Captcha input */
.captcha-input {
    max-width: 160px;
    flex-shrink: 0;
}

/* Captcha canvas box */
.captcha-image {
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.captcha-image canvas {
    display: block;
}

/* Submit button */
.contact-submit-btn {
    padding: 14px 40px;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: lowercase;
    flex-shrink: 0;
    cursor: pointer;
    border: none;
    margin-top: 0;
}

/* Form field wrapper */
.form-field {
    width: 100%;
}

/* Remove default CF7 styles */
.wpcf7-form p {
    margin: 0;
}

.hire-staff-visual img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Make CF7 inputs behave like your custom inputs */

/* Fix select arrow spacing */
.wpcf7-select.contact-select {
    padding-right: 42px;
}

/* Button fix */
.wpcf7-submit {
    background: #020617; /* match your button */
    color: #fff;
}

/* Error message styling (optional) */
.wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 4px;
}

.discovery-form .wpcf7-form-control-wrap {
    display: block;
}

/* =============================================
   SECTION — OUR OFFICES
   ============================================= */

.contact-offices-section {
    background-color: #ffffff;
}

.contact-offices-head {
    margin-bottom: 50px;
}

.contact-offices-head .main-heading {
    font-size: 40px;
    font-weight: 400;
    color: var(--color-dark);
}

/* 3-column grid */
.contact-offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Each card */
.contact-office-listing-card {
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-office-listing-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

/* Image */
.col-listing-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.col-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.contact-office-listing-card:hover .col-listing-image img {
    transform: scale(1.04);
}

/* Content block */
.col-listing-content {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #F2F2F3;
    height: 100%;
}

.col-listing-country {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-dark);
    margin: 0 0 4px;
}

.col-listing-company {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
}

.col-listing-address {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    color: #334155;
    line-height: 1.65;
    margin: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(51, 65, 85, 0.4);
}

.col-listing-phone {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 6px 0 0;
}

.ranking-keyword-cards .keyword-card:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.ranking-keyword-cards .keyword-card > div:last-child {
    max-height: 260px;
    overflow-y: auto;
}


.sales-graph-image {
    max-width: 550px;
    min-width: 550px;
}
.sales-graph-content {
    width: stretch;
}

/* =============================================
   TEAM + LIFE PAGES
   ============================================= */
.itx-page-top {
    padding-top: 68px;
}

.itx-split-hero {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(520px, 1.18fr);
    min-height: 620px;
    background: #ffffff;
}

.itx-split-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 90px 56px 70px;
}

.itx-split-hero__content h1 {
    max-width: 540px;
    color: #334155;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.18;
    margin-bottom: 18px;
}

.itx-split-hero__text {
    max-width: 650px;
    color: #334155;
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 18px;
}

.itx-split-hero__text p {
    margin-bottom: 0;
}

.itx-split-hero__media {
    min-height: 620px;
    overflow: hidden;
}

.itx-split-hero__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.itx-display-title {
    color: #03030f;
    font-size: clamp(64px, 7.8vw, 118px);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    margin: 0 0 82px;
}

.itx-team-directory {
    background: #ffffff;
    padding-top: 115px;
}

.itx-team-lead-grid,
.itx-team-staff-grid {
    display: grid;
    max-width: 1600px;
    margin: 0 auto;
}

.itx-team-lead-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    max-width: 1280px;
    margin-bottom: 112px;
}

.itx-team-staff-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 26px;
    max-width: 1720px;
}

.itx-team-member {
    min-width: 0;
}

.itx-team-lead-grid .itx-team-member__photo {
    aspect-ratio: 0.82;
    background: #dce5ec;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.itx-team-staff-grid .itx-team-member__photo {
    aspect-ratio: 1;
    background: #dce5ec;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.itx-team-member__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.itx-team-member__photo span {
    color: #334155;
    font-size: 82px;
    font-weight: 800;
    text-transform: uppercase;
}

.itx-team-member__body {
    padding-top: 18px;
}

.itx-team-member__body h3 {
    color: #334155;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 6px;
}

.itx-team-member__body p {
    min-height: 52px;
    color: #979797;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.itx-team-member__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 17px;
    border-top: 1px solid #e8edf2;
}

.itx-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 5px 10px;
    background: #edf4f7;
    color: #8a96a3;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.itx-chip--country::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 5px;
    background: linear-gradient(#ff9933 0 33%, #fff 33% 66%, #138808 66% 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.itx-chip--country-usa::before,
.itx-chip--country-united-states::before {
    border-radius: 2px;
    background: url('../images/elements/usa-cc.png') center / cover no-repeat;
}

.itx-chip--country-canada::before {
    border-radius: 2px;
    background: url('../images/elements/canada-cc.png') center / cover no-repeat;
}

.itx-chip--linkedin {
    color: #0a66c2;
    background: #e5f2ff;
    text-transform: none;
}

.itx-empty-state {
    max-width: 680px;
    margin: 0 auto;
    padding: 42px;
    text-align: center;
    background: #f6f9fb;
    border: 1px solid #e3edf4;
}

.itx-empty-state p {
    margin: 0;
    color: #334155;
}

.itx-life-gallery {
    background: #ffffff;
    padding-top: 70px;
}

.itx-life-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto !important;
    grid-auto-flow: dense;
    gap: 20px;
    max-width: 1660px;
    margin: 0 auto;
}

.itx-life-slot {
    grid-column: span 4;
    grid-row: span 2;
    min-width: 0;
    margin: 0;
}

.itx-life-slot.life-wide {
    grid-column: span 8;
}

.itx-life-slot.life-small {
    grid-column: span 4;
}

.itx-life-slot.life-row-2 {
    grid-row: span 2;
}

.itx-life-slot.life-row-3 {
    grid-row: span 3;
}

.itx-life-slot.text-art {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(237, 244, 247, 0.8)),
        #ffffff;
    border-color: #d9e8f2;
}

.itx-life-slot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(65, 146, 209, 0.14), rgba(3, 3, 15, 0.05)),
        #edf4f7;
    border: 1px dashed #b8d4e8;
}

.itx-life-slot span {
    color: #6b7b8c;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.itx-life-slot img,
.itx-life-slot video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.itx-life-follow {
    padding: 70px 0 0;
    text-align: center;
}

.itx-life-follow p {
    color: #03030f;
    font-size: 22px;
    margin-bottom: 18px;
}

.itx-life-follow span {
    color: #4192d1;
    font-family: var(--font-highlight);
    font-style: italic;
}

.itx-life-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.itx-life-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #d9d9d9;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease;
}

.itx-life-socials a:hover {
    background: var(--color-blue);
    transform: translateY(-2px);
}

.itx-life-slot.life-wide.life-row-2 {
    max-height: 503px;
}

/* =============================================
   HIRE US PAGE
   ============================================= */
.hire-hero-section .inner-page-hero-content-area {
    max-width: 720px;
}

.hire-section-title {
    color: #03030f;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 70px;
}

.hire-staffing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hire-staff-card {
    background: #f7f7f8;
    border: 1px solid #e6e6e8;
}

.hire-staff-visual {
    position: relative;
    height: 390px;
    background: #fff;
    overflow: hidden;
}

.hire-node,
.hire-ring {
    position: absolute;
    border-radius: 50%;
}

.hire-node {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #9da4aa;
    color: #ff5b1f;
    font-size: 0;
    box-shadow: 0 5px 12px rgba(3, 3, 15, 0.08);
}

.hire-node::before {
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #f26522;
    box-shadow: 0 13px 0 -4px #f26522;
}

.hire-node.center {
    width: 70px;
    height: 70px;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    color: #03030f;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
}

.hire-node.center::before {
    display: none;
}

.hire-node.n1 { left: 23%; top: 38%; }
.hire-node.n2 { left: 38%; top: 25%; }
.hire-node.n3 { right: 23%; top: 38%; }
.hire-node.n4 { right: 38%; top: 25%; }
.hire-ring {
    width: 55px;
    height: 55px;
    border: 5px solid #8d969d;
    bottom: 46px;
}
.hire-ring.r1 { left: 28%; }
.hire-ring.r2 { right: 28%; }
.hire-staff-visual.augment .center {
    color: #f26522;
    font-size: 28px;
}
.hire-staff-visual.project .hire-node:not(.center)::before {
    background: #a5abb0;
    box-shadow: 0 13px 0 -4px #a5abb0;
}

.hire-staff-body {
    padding: 34px 32px 38px;
    min-height: 360px;
}

.hire-staff-body h3 {
    color: #03030f;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
}

.hire-staff-body p,
.hire-staff-body li {
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
}

.hire-staff-body ul {
    margin: 24px 0 0;
    padding-left: 18px;
}

.hire-impact-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 140px;
    align-items: start;
    margin-bottom: 70px;
}

.hire-impact-intro h2 {
    color: #03030f;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.25;
}

.hire-impact-intro p {
    color: #03030f;
    font-size: 16px;
    line-height: 1.8;
}

.hire-stats-row {
    display: grid;
    grid-template-columns: 0.7fr repeat(3, 1fr);
    gap: 42px;
    align-items: end;
}

.hire-rating strong {
    display: block;
    color: #03030f;
    font-size: 22px;
    font-weight: 800;
}

.hire-rating span {
    display: block;
    color: #ff6a00;
    letter-spacing: 2px;
    margin: 4px 0 18px;
}

.hire-rating ul {
    color: #334155;
    font-size: 13px;
    line-height: 2;
    padding-left: 16px;
}

.hire-stat-card {
    min-height: 270px;
    padding: 54px 36px 34px;
    background: linear-gradient(90deg, #f4f4f5 0%, #fff 65%);
    box-shadow: 0 18px 30px rgba(3, 3, 15, 0.08);
}

.hire-stat-card strong {
    display: block;
    color: #03030f;
    font-size: 70px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 60px;
}

.hire-stat-card h3 {
    color: #03030f;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 14px;
}

.hire-stat-card p {
    color: #334155;
    font-size: 13px;
    line-height: 1.6;
}

.hire-tech-section {
    display: grid;
    grid-template-columns: 38.2% 61.8%;
    background: #f0f0f2;
    min-height: 620px;
}

.hire-tech-left {
    min-height: 620px;
    padding: 150px 64px 70px;
    background:
        linear-gradient(90deg, rgba(65, 146, 209, 0.96), rgba(65, 146, 209, 0.88)),
        url('../images/about/new-team.jpg') center / cover no-repeat;
    color: #fff;
}

.hire-tech-left h2 {
    color: #fff;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 130px;
}

.hire-tech-left .highlighted-text {
    color: #fff;
    font-size: inherit;
}

.hire-tech-left p {
    max-width: 580px;
    color: #fff;
    font-size: 20px;
    line-height: 2.08;
    margin: 0;
}

.hire-tech-right {
    position: relative;
    padding: 120px 120px 82px;
}

.hire-tech-tabs {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 44px;
    margin-bottom: 0;
}

.hire-tech-tabs button {
    border: 0;
    background: #fff;
    color: #4192d1;
    min-width: 185px;
    height: 50px;
    padding: 0 26px;
    font-size: 16px;
    font-weight: 400;
}

.hire-tech-tabs .active {
    background: #eaf6ff;
}

.hire-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.hire-tech-tile {
    height: 135px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.hire-tech-tile span {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: #1f2933;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
}

.hire-tech-tile p {
    margin: 0;
    color: #03030f;
    font-size: 13px;
    line-height: 1;
}

.hire-process-map {
    position: relative;
    max-width: 1800px;
    min-height: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 490px minmax(0, 1fr);
    grid-template-rows: 235px 235px 1fr;
    align-items: center;
    gap: 64px 0;
}

.hire-process-center {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: start;
    justify-self: center;
    width: 490px;
    height: 490px;
    border-radius: 50%;
    background: #4192d1;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    box-shadow:
        0 0 0 22px #4192d1,
        0 0 0 23px #163044,
        0 260px 0 0 rgba(65, 146, 209, 0.25);
}

.hire-process-center h2 {
    color: #fff;
    font-size: 47px;
    font-weight: 400;
    line-height: 1.22;
    margin-bottom: 34px;
}

.hire-process-center h2 span {
    font-family: var(--font-highlight);
    font-size: 48px;
    font-style: italic;
}

.hire-process-center p {
    color: #fff;
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
}

.hire-process-item {
    min-height: 235px;
    background: #f4f4f5;
    display: flex;
    align-items: center;
    gap: 42px;
    z-index: 1;
}

.hire-process-item.item-1,
.hire-process-item.item-3 {
    grid-column: 1 / 3;
    padding: 0 520px 0 0;
}

.hire-process-item.item-2,
.hire-process-item.item-4 {
    grid-column: 2 / 4;
    padding: 0 0 0 520px;
    justify-content: flex-end;
}

.hire-process-item.item-1 { grid-row: 1; }
.hire-process-item.item-2 { grid-row: 1; }
.hire-process-item.item-3 { grid-row: 2; margin-left: 64px; }
.hire-process-item.item-4 { grid-row: 2; margin-right: 64px; }

.hire-process-item > div {
    max-width: 430px;
}

.hire-process-icon {
    width: 215px;
    height: 215px;
    flex: 0 0 215px;
    border-radius: 50%;
    background: #4192d1;
    color: #03030f;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px #fff;
}

.hire-process-icon svg {
    width: 78px;
    height: 78px;
}

.hire-process-item h3 {
    color: #03030f;
    font-size: 31px;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 16px;
}

.hire-process-item p {
    color: #03030f;
    font-size: 18px;
    line-height: 1.95;
    margin: 0;
}

.hire-advantage-section {
    background: #f2f2f3;
}

.hire-advantage-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.hire-advantage-head h2 {
    color: #03030f;
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 14px;
}

.hire-advantage-head p {
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
}

.hire-advantage-layout {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: end;
}

.hire-advantage-image img {
    width: 100%;
    max-height: 560px;
    object-fit: contain;
    object-position: left bottom;
    display: block;
}

.hire-advantage-list {
    position: relative;
    padding: 20px 0 20px 40px;
}

.hire-advantage-quote {
    position: absolute;
    top: -32px;
    right: 8%;
    color: rgba(3,3,15,.04);
    font-size: 74px;
    font-weight: 800;
}

.hire-advantage-list article {
    position: relative;
    padding: 22px 0 22px 42px;
    border-left: 1px solid #d7dde4;
}

.hire-advantage-list article h3 {
    color: #03030f;
    font-size: 17px;
    font-weight: 500;
    margin: 0;
}

.hire-advantage-list article h3::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 28px;
    width: 4px;
    height: 12px;
    background: #4192d1;
}

.hire-advantage-list article.active {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 55px;
    padding: 45px 55px 45px 42px;
    background: #fff;
    box-shadow: 0 22px 40px rgba(3,3,15,.06);
}

.hire-advantage-list article.active h3 {
    color: #4192d1;
    font-weight: 800;
}

.hire-advantage-list article.active p {
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Hire page refinements: technology tabs + hiring process */
.hire-tech-section {
    grid-template-columns: 38% 62%;
    min-height: 620px;
    overflow: visible;
}

.hire-tech-left {
    min-height: 620px;
    padding: 150px 64px 70px;
}

.hire-tech-left h2 {
    font-size: 58px;
    line-height: 1.25;
    margin-bottom: 132px;
}

.hire-tech-right {
    position: relative;
    padding: 120px 118px 78px;
    overflow: visible;
}

.hire-tech-tabs {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    gap: 44px;
    z-index: 4;
}

.hire-tech-tabs button {
    min-width: 185px;
    height: 50px;
    background: #fff;
    color: #268dde;
    font-size: 16px;
    box-shadow: none;
}

.hire-tech-tabs button.active {
    background: #eaf6ff;
}

.hire-tech-grid {
    gap: 28px;
}

.hire-tech-tile {
    height: 135px;
}

.hire-process-section {
    overflow: hidden;
}

.hire-process-map {
    max-width: 1810px;
    min-height: 680px;
    grid-template-columns: minmax(0, 1fr) 460px minmax(0, 1fr);
    grid-template-rows: 235px 235px 160px;
    gap: 64px 0;
    padding-top: 18px;
}

.hire-process-center {
    width: 430px;
    height: 430px;
    align-self: start;
    margin-top: 0;
    box-shadow:
        0 0 0 20px #4192d1,
        0 0 0 21px #163044,
        0 260px 0 24px rgba(65, 146, 209, 0.24);
}

.hire-process-center h2 {
    font-size: 46px;
    margin-bottom: 28px;
}

.hire-process-center h2 span {
    font-size: 48px;
}

.hire-process-item {
    min-height: 235px;
    background: #f4f4f5;
    gap: 40px;
}

.hire-process-item.item-1,
.hire-process-item.item-3 {
    grid-column: 1 / 3;
    padding: 0 470px 0 0;
}

.hire-process-item.item-2,
.hire-process-item.item-4 {
    grid-column: 2 / 4;
    padding: 0 0 0 470px;
}

.hire-process-item.item-3 {
    margin-left: 64px;
}

.hire-process-item.item-4 {
    margin-right: 64px;
}

.hire-process-icon {
    width: 215px;
    height: 215px;
    flex: 0 0 215px;
    box-shadow: 0 0 0 10px #fff;
}

.hire-process-item h3 {
    font-size: 31px;
    line-height: 1.18;
}

.hire-process-item p {
    font-size: 18px;
    line-height: 1.95;
}


/* =============================================
   RESPONSIVE — BOOK A DISCOVERY CALL
   ============================================= */

/* Laptop: 992px – 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
    .discovery-call-wrapper {
        gap: 50px;
    }

    .discovery-call-left {
        flex: 0 0 280px;
        width: 280px;
    }

    .contact-office-image {
        height: 380px;
    }

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

/* Tablet: 768px – 991px */
@media (min-width: 768px) and (max-width: 991px) {
    .discovery-call-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .discovery-call-left {
        flex: none;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .contact-office-image {
        height: 320px;
    }

    .discovery-call-right {
        width: 100%;
        gap: 24px;
    }

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

    .form-row-submit {
        flex-wrap: wrap;
    }

    .contact-submit-btn {
        width: 100%;
        text-align: center;
    }
}

/* Mobile: max 767px */
@media (max-width: 767px) {
    .discovery-call-wrapper {
        flex-direction: column;
        gap: 32px;
    }

    .discovery-call-left {
        flex: none;
        width: 100%;
    }

    .contact-office-card {
        border-radius: 12px;
    }

    .contact-office-image {
        height: 260px;
    }

    .contact-office-country {
        font-size: 22px;
    }

    .contact-office-company {
        font-size: 13px;
    }

    .contact-office-address {
        font-size: 12px;
    }

    .contact-office-phone {
        font-size: 13px;
    }

    .contact-office-overlay {
        padding: 24px 18px 18px;
        gap: 3px;
    }

    .discovery-call-right {
        width: 100%;
        gap: 20px;
    }

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

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

    /* Stack double rows on mobile */
    .form-row-double {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-input {
        font-size: 14px;
        padding: 13px 15px;
    }

    /* Captcha row */
    .form-row-submit {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .captcha-area {
        width: 100%;
    }

    .captcha-input {
        max-width: 100%;
        flex: 1;
    }

    .contact-submit-btn {
        width: 100%;
        padding: 14px 20px;
        text-align: center;
    }
}


/* =============================================
   RESPONSIVE — OUR OFFICES
   ============================================= */

/* Laptop: 992px – 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
    .contact-offices-grid {
        gap: 20px;
    }

    .col-listing-image {
        height: 190px;
    }

    .col-listing-country {
        font-size: 20px;
    }
}

/* Tablet: 768px – 991px */
@media (min-width: 768px) and (max-width: 991px) {
    .contact-offices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* If odd number, last card spans full */
    .contact-office-listing-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .contact-offices-head .main-heading {
        font-size: 32px;
    }

    .col-listing-image {
        height: 200px;
    }
}

/* Mobile: max 767px */
@media (max-width: 767px) {
    .contact-offices-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .contact-offices-head {
        margin-bottom: 30px;
    }

    .contact-offices-head .main-heading {
        font-size: 28px;
    }

    .contact-offices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-office-listing-card {
        border-radius: 10px;
    }

    .col-listing-image {
        height: 200px;
    }

    .col-listing-content {
        padding: 18px 18px 22px;
    }

    .col-listing-country {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .col-listing-company {
        font-size: 14px;
    }

    .col-listing-address {
        font-size: 13px;
    }

    .col-listing-phone {
        font-size: 13px;
    }
}


@media(max-width: 1440px){
    .sales-graph-image {
        min-width: 450px;
        max-width: 450px;
    }
}

@media(max-width: 1356px){
    .sales-graph-image {
        min-width: 350px;
        max-width: 350px;
    }
    .sales-graph-content h3, .sales-results-box h3 {
        font-size: 32px;
    }
}

@media(max-width: 1200px){
    .sales-graph-image {
        min-width: 250px;
        max-width: 250px;
    }
    .sales-graph-content h3, .sales-results-box h3 {
        font-size: 28px;
    }
}

@media(max-width: 991px){
    .sales-graph-image {
        min-width: 250px;
        max-width: 250px;
    }
    .sales-graph-content h3, .sales-results-box h3 {
        font-size: 26px;
    }
    .sales-graph-content li {
        font-size: 14px;
    }
}

@media(max-width: 767px){
    .sales-graph-image {
        min-width: 250px;
        max-width: unset;
    }
}
