

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1b54ff;
    --primary-10: rgba(27, 84, 255, 0.1);
    --primary-20: rgba(27, 84, 255, 0.2);
    --primary-30: rgba(27, 84, 255, 0.3);
    --foreground: #111111;
    --background: #ffffff;
    --secondary-bg: #f5f5f5;
    --muted: #737373;
    --border: #e6e6e6;
    --cool-grey: #ebebec;
    --void: #0a0a0a;
    --radius: 0.5rem;
    --font-heading: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    --font-body: 'Futura', 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--background);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ── Layout ── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
}

.section-padding-trust {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section-padding-trust {
        padding: 5rem 0;
    }
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, background 0.2s, color 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--foreground);
    color: var(--foreground);
}

.btn-outline:hover {
    background: var(--foreground);
    color: var(--background);
}

.btn-white {
    background: #fff;
    color: var(--primary);
}

.btn-white:hover {
    opacity: 0.9;
}

.btn-outline-white {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ── Arrow icon (inline SVG via CSS) ── */
.icon-arrow::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E") no-repeat center/contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E") no-repeat center/contain;
}

.icon-arrow-up-right::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'/%3E%3Cpolyline points='7 7 17 7 17 17'/%3E%3C/svg%3E") no-repeat center/contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'/%3E%3Cpolyline points='7 7 17 7 17 17'/%3E%3C/svg%3E") no-repeat center/contain;
}

/* ── Label badge ── */
.label-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--border);
    background: var(--cool-grey);
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: var(--muted);
}

.label-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

.section-label {
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

/* ── Tag pill ── */
.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-family: var(--font-body);
    color: var(--primary);
    background: var(--primary-10);
    border-radius: 9999px;
    margin: 0 0.4rem 0.75rem 0;
}

.trust {
    background: var(--cool-grey);
    text-align: center;
}

    .trust .trust-label {
        font-size: 22px;
        font-family: var(--font-body);
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 3rem;
    }

.trust .logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .trust .logos {
        gap: 4rem;
    }
}

.trust .logos img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.2s, transform 0.2s;
}

.trust .logos img:hover {
    transform: translateY(-2px);
}

/* --- Number section styling --- */
.aboutus-stats-wrapper {
    background: var(--cool-grey);
    color: var(--foreground);
    padding: 5rem 0;
}

.aboutus-stats-wrapper .container {
    max-width: 1180px;
}

.aboutus-stats-wrapper .content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.aboutus-stats-wrapper .content-section {
    grid-column: auto;
}

.aboutus-stats-wrapper .numbers-section {
    grid-column: auto;
}

.aboutus-stats-wrapper .content-section h2 {
    color: var(--foreground);
    font-size: clamp(2.25rem, 3.8vw, 3.2rem);
    margin-bottom: 0.75rem;
}

.aboutus-stats-wrapper .content-section p {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.aboutus-stats-wrapper .content-section {
    padding-right: 1rem;
}

.aboutus-stats-wrapper .numbers-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
    padding: 0;
}

.aboutus-stats-wrapper .numbers-grid {
    width: 100%;
    max-width: 520px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    min-width: 0;
    margin: 0 auto;
    grid-auto-rows: minmax(130px, auto);
}

.aboutus-stats-wrapper .number-card {
    min-width: 0;
    margin: 0.25rem;
    height: 100%;
    box-sizing: border-box;
}

.aboutus-stats-wrapper .number-card .numbers {
    font-weight: 600;
}

.aboutus-stats-wrapper .number-card p {
    font-weight: 500;
}

.aboutus-stats-wrapper .content-section p {
    color: var(--muted);
    max-width: 520px;
    line-height: 1.65;
}

.aboutus-stats-wrapper .numbers-section {
    width: 100%;
}

.aboutus-stats-wrapper .numbers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@property --angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 270deg;
}

.aboutus-stats-wrapper .number-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.35rem 1rem;
    margin: 0.4rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(27, 84, 255, 0.08);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.number-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    opacity: 0;
    border-radius: 1rem;
    background: conic-gradient( from var(--angle), transparent 0deg, transparent 300deg, var(--primary) 330deg, transparent 360deg );
    animation: rotateBorder 16s linear infinite;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}


.number-card > * {
    position: relative;
    z-index: 2;
}

@keyframes rotateBorder {
    /* Card active period */
    0% {
        --angle: 270deg;
        opacity: 1;
    }

    20% {
        --angle: 630deg;
        opacity: 1;
    }
    /* Hide border after animation */
    21% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}
.number-card:nth-child(1)::before {
    animation-delay: 0s;
}

.number-card:nth-child(2)::before {
    animation-delay: 4s;
}

.number-card:nth-child(3)::before {
    animation-delay: 8s;
}

.number-card:nth-child(4)::before {
    animation-delay: 12s;
}
.aboutus-stats-wrapper .number-card .numbers {
    font-size: clamp(2.2rem, 5vw, 3.25rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--primary);
    margin-bottom: 0.45rem;
}

.aboutus-stats-wrapper .number-card p {
    color: var(--foreground);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 1200px) {
    .aboutus-stats-wrapper .content-row {
        grid-template-columns: 1fr;
    }

    .aboutus-stats-wrapper .numbers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
    }

    .aboutus-stats-wrapper .number-card {
        margin: 0.2rem;
        padding: 1rem 0.8rem;
    }

    .aboutus-stats-wrapper .number-card .numbers {
        font-size: clamp(1.9rem, 4.5vw, 2.5rem);
    }

    .aboutus-stats-wrapper .content-section h2 {
        font-size: clamp(1.9rem, 3.8vw, 2.5rem);
    }
    .aboutus-stats-wrapper .content-section h2,
    .aboutus-stats-wrapper .content-section p {
        text-align: center;
    }
    .aboutus-stats-wrapper .content-section p {
        margin: auto;
    }

}

@media (max-width: 1023px) {
    .aboutus-stats-wrapper .content-row {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .aboutus-stats-wrapper .content-section,
    .aboutus-stats-wrapper .numbers-section {
        width: 100%;
        grid-column: unset;
    }

        
    

    .aboutus-stats-wrapper .number-card {
        margin: 0;
    }
}

@media (max-width: 767px) {

    
    .aboutus-stats-wrapper .numbers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}
@media (max-width: 567px) {
    .aboutus-stats-wrapper .numbers-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════
   GLOBAL PRESENCE
   ══════════════════════════════════════════════ */
.global-presence {
    background: #fff;
    color: var(--foreground);
    text-align: center;
}

.global-presence .container {
    max-width: 1120px;
}

.global-presence .section-label {
    color: #a8c8ff;
    margin-bottom: 0.75rem;
}

.global-presence-header {
    margin-bottom: 3rem;
}

.global-presence-header .section-label {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.global-presence-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.global-presence-header p {
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto;
}


/* 4-column office cards */


.office-photo {
    height: 160px;
    overflow: hidden;
    background: var(--cool-grey);
}

.office-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}


.office-info {
    padding: 1.25rem;
}

.office-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.office-info p {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.office-info a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    transition: text-decoration 0.2s;
}

.office-info a:hover {
    text-decoration: auto;
}

/* ══════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 72px;
}


.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header .logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    flex-shrink: 0;
    z-index: 2;
}

.header .logo span {
    color: var(--primary);
}

.header nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.header nav a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.2s;
    white-space: nowrap;
}

.header nav a:hover {
    color: var(--primary);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.4rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    font-family: var(--font-body);
    transition: opacity 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 2rem;
}

.header-cta:hover {
    opacity: 0.88;
}
.header nav a.active,
.mobile-nav a.active {
    color: var(--primary); /* blue */
    font-weight: 600;
}
/* Hamburger */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 2;
    color: var(--foreground);
}

/* Mobile nav drawer */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem 2rem;
    flex-direction: column;
    gap: 0;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    bottom:0;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--primary);
}

.mobile-nav .mobile-cta {
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    font-family: var(--font-body);
    border-bottom: none;
}

.mobile-nav .mobile-cta:hover {
    opacity: 0.88;
    color: #fff;
}

@media (max-width: 1023px) {

    .header nav,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

/* ══════════════════════════════════════════════
   11. FOOTER
   ══════════════════════════════════════════════ */
.footer {
    background: var(--foreground);
}

.footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .footer .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer .footer-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.footer .brand .logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.footer .brand .logo span {
    color: var(--primary);
}

.footer .brand p {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-top: 1rem;
    line-height: 1.7;
}

.footer .footer-col h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer .footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer .footer-col a {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer .footer-col a:hover {
    color: #fff;
}

.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer .footer-bottom p,
.footer .footer-bottom a {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.4);
}

.footer .footer-bottom a:hover {
    color: #fff;
}

.footer .footer-links {
    display: flex;
    gap: 1.5rem;
}

/* ═══ TECHNOLOGY STACK SECTION ═══ */
.tech-stack-section {
    /*    background: #eef2ff;*/
    text-align: center;
}

.tech-stack-heading {
    margin-bottom: 2.5rem;
}

.tech-stack-heading h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0;
}

/* Tab buttons row-full width, evenly distributed */
.tech-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: fit-content;
    border: 1px solid #d0d8f0;
    border-radius: 6px;
    overflow: hidden;
    margin: 0 auto 3rem;
}

.tech-tab {
    flex: 1;
    background: #fff;
    border: none;
    border-right: 1px solid #d0d8f0;
    padding: 14px 28px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #555;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.tech-tab:last-child {
    border-right: none;
}

.tech-tab:hover {
    background: var(--primary-10);
    color: var(--primary);
}

.tech-tab.active {
    background: var(--primary);
    color: #fff;
}

/* Icons panel */
.tech-icons-panel {
    display: none;
}

.tech-icons-panel.active {
    display: block;
}

.tech-icons-row {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 2.5rem 0;
    padding: 3rem 0 1.5rem;
    width: 100%;
}

.tech-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 1 1 18%;
    min-width: 120px;
}

.tech-icon-item img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    transition: transform 0.2s;
}

.tech-icon-item:hover img {
    transform: translateY(-4px);
}

.tech-icon-item span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #444;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .tech-tabs {
        flex-wrap: wrap;
    }

    .tech-tab {
        flex: 1 1 33%;
        border-bottom: 1px solid #d0d8f0;
    }

    .tech-icon-item {
        flex: 1 1 22%;
        min-width: 90px;
    }

    .tech-icon-item img {
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 480px) {
    .tech-tab {
        flex: 1 1 48%;
        font-size: 0.72rem;
        padding: 10px 8px;
    }

    .tech-icon-item {
        flex: 1 1 40%;
        min-width: 80px;
    }

    .tech-icon-item img {
        width: 48px;
        height: 48px;
    }
}



.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: #0f172a; /* dark blue/black */
    color: #e5e7eb;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 9999;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

    .cookie-content p {
        margin: 0;
        font-size: 14px;
        color: #cbd5f5;
    }

    .cookie-content a {
        color: #3b82f6;
        text-decoration: none;
    }

        .cookie-content a:hover {
            text-decoration: underline;
        }

/* Buttons */
.cookie-actions {
    display: flex;
    gap: 10px;
}

    .cookie-actions .btn-primary {
        background: #2563eb;
        color: #fff;
        border: none;
        padding: 8px 16px;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s;
        white-space:nowrap;
    }

        .cookie-actions .btn-primary:hover {
            background: #1d4ed8;
        }

    .cookie-actions .btn-outline {
        background: transparent;
        border: 1px solid #475569;
        color: #e5e7eb;
        padding: 8px 16px;
        border-radius: 8px;
        cursor: pointer;
        white-space: nowrap;
    }

        .cookie-actions .btn-outline:hover {
            border-color: #3b82f6;
            color: #3b82f6;
        }

/* Mobile */
@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

.privacy-box {
    display: flex;
    align-items: center;
}

.privacy-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

    .privacy-link svg {
        color: #1b54ff;
    }

    .privacy-link strong {
        color: #2563eb; /* blue highlight */
    }

    .privacy-link:hover {
        opacity: 0.8;
    }

.powered-by a {
    color: #2563eb !important;
}