@font-face {
    font-family: urb;
    src: url(/assets/fonts/urbanist/Urbanist-VariableFont_wght.ttf);
}

@font-face {
    font-family: geo;
    src: url(/assets/fonts/geologica/Geologica-VariableFont_CRSV\,SHRP\,slnt\,wght.ttf);
}

@font-face {
    font-family: head;
    src: url(/assets/fonts/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf);
}

@font-face {
    font-family: para;
    src: url(/assets/fonts/Urbanist/Urbanist-VariableFont_wght.ttf);
}

:root {
    /* Gradients */
    --sd-grad-blue: linear-gradient(225deg, rgb(20, 70, 210) 0%, rgb(1, 85, 184) 20%, rgb(0, 102, 173) 40%, rgb(0, 122, 187) 60%, rgb(12, 144, 213) 80%, rgb(38, 167, 227) 100%);
    --sd-grad-dark: linear-gradient(180deg, #1A1A1A 0%, #000000 100%);
    --sd-grad-light: linear-gradient(180deg, #FFFFFF 0%, #F2F2F2 100%);

    /* Colors */
    --sd-white: #ffffff;
    --sd-offwhite: #F8F9FA;
    --sd-text: #000000;
    --sd-muted: #666666;
    --sd-blue: #0075B8;

    /* Spacing */
    --sd-section-padding: 160px;
    --sd-container-width: 1300px;
    --sd-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);

    --ink: #0A0A0A;
    --ink-2: #3A3A3A;
    --ink-3: #7A7A7A;
    --rule: #E2E2E2;
    --rule-dark: #C8C8C8;
    --surface: #F5F5F5;
    --white: #FFFFFF;
    --accent: #0A0A0A;

    --f-head: geo, Georgia, serif !important;
    --f-body: urb, system-ui, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

    background: var(--white);
    color: var(--ink);
    font-family: var(--f-body);
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* background-color: #F9F6F4; */
}

/* ==========================================================================
   KANTASCRYPT MAIN NAVBAR CSS
   ========================================================================== */

/* ── Base Navbar ─────────────────────────────────────────────────── */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition:
        background 400ms cubic-bezier(0.45, 0, 0.55, 1),
        box-shadow 400ms cubic-bezier(0.45, 0, 0.55, 1),
        border-color 400ms cubic-bezier(0.45, 0, 0.55, 1);
}

.main-navbar.main-navbar--scrolled {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background-color: #ffffffc4;
}

.main-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
}

/* ── Logo ────────────────────────────────────────────────────────── */
.main-navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.main-navbar-logo-mark {
    width: 42px;
    height: 42px;
    /* border-radius: 10px; */
    /* background: #000; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.main-navbar-logo-mark img {
    width: 100%;
}

.main-navbar-logo-mark i {
    color: #fff;
    font-size: 20px;
}

.main-navbar-logo-mark svg {
    width: 10px;
    height: 10px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    position: relative;
    z-index: 1;
}

.main-navbar-logo-wordmark {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
}

.main-navbar-logo-name {
    font-family: geo;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: -0.025em;
    color: #000000;
    line-height: 1;
}

.main-navbar-logo-name span {
    color: #000000;
}

.main-navbar-logo-tagline {
    font-family: urb;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #000000;
    line-height: 1;
}

/* ── Desktop Nav Links ───────────────────────────────────────────── */
.main-navbar-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.main-navbar-link-item {
    position: relative;
}

.main-navbar-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    font-family: urb;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 9999px;
    border: 1px solid transparent;
    white-space: nowrap;
    transition:
        color 150ms cubic-bezier(0.45, 0, 0.55, 1),
        background 150ms cubic-bezier(0.45, 0, 0.55, 1),
        border-color 150ms cubic-bezier(0.45, 0, 0.55, 1);
}

.main-navbar-link:hover {
    color: #000000;
    background: #ffffff;
}

.main-navbar-link.main-navbar-link--active,
.mobile-nav-link.main-navbar-link--active,
.mobile-submenu-link.main-navbar-link--active {
    color: #0075B8;
    background: rgba(79, 70, 229, 0.07);
    border-color: rgba(79, 70, 229, 0.15);
    padding: 10px;
    border-radius: 50px;
    display: flex;
    align-items: start;
    justify-content: start;
}

.main-navbar-link-chevron {
    font-size: 16px;
    /* Slightly increased for better visibility */
    margin-top: 1px;
    /* Vertically centers the Remix arrow icon */
    transition: transform 250ms cubic-bezier(0.45, 0, 0.55, 1);
}

.main-navbar-link-item--open .main-navbar-link-chevron {
    transform: rotate(180deg);
}

/* ── Desktop Dropdown ────────────────────────────────────────────── */
.main-navbar-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: 288px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid hsl(220, 12%, 40%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(10, 10, 10, 0.14), 0 8px 24px rgba(10, 10, 10, 0.08);
    padding: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 250ms cubic-bezier(0.45, 0, 0.55, 1),
        transform 250ms cubic-bezier(0.45, 0, 0.55, 1);
}

.main-navbar-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.97);
    border-left: 1px solid hsl(220, 12%, 40%);
    border-top: 1px solid hsl(220, 12%, 40%);
    border-radius: 2px;
}

.main-navbar-link-item--open .main-navbar-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.main-navbar-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    text-decoration: none;
    transition: background 150ms cubic-bezier(0.45, 0, 0.55, 1);
    background-color: rgb(248, 249, 250);
}

.main-navbar-dropdown-item:hover {
    background: #ececec;
}

.main-navbar-dropdown-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 250ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.main-navbar-dropdown-item:hover .main-navbar-dropdown-icon {
    transform: scale(1.1);
}

.main-navbar-dropdown-icon--indigo {
    background: #eaeaea;
    color: #333;
}

.main-navbar-dropdown-icon--cyan {
    background: #0075B8;
    color: #d4ddff;
}

.main-navbar-dropdown-icon--purple {
    background: rgba(95, 54, 238, 1);
    color: rgb(193, 176, 255);
}

.main-navbar-dropdown-icon--orange {
    background: rgb(242, 101, 34);
    color: #FDDBBF;
}

.main-navbar-dropdown-icon--violet {
    background: #000000;
    color: #fff;
}

.main-navbar-dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.main-navbar-dropdown-label {
    font-family: urb;
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
}

.main-navbar-dropdown-desc {
    font-family: urb;
    font-size: 0.8rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

.main-navbar-dropdown-divider {
    height: 1px;
    background: #ececec;
    margin: 0.5rem;
}

.main-navbar-dropdown-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    text-decoration: none;
    background: #262626;
    transition: background 150ms cubic-bezier(0.45, 0, 0.55, 1);
}

.main-navbar-dropdown-footer:hover {
    background: #000;
}

.main-navbar-dropdown-footer-text {
    font-family: urb;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
}

.main-navbar-dropdown-footer i {
    color: #ffffff;
    font-size: 14px;
}

/* ── Actions (Buttons) ───────────────────────────────────────────── */
.main-navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.main-navbar-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-family: urb;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666666;
    background: transparent;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    transition:
        color 150ms cubic-bezier(0.45, 0, 0.55, 1),
        background 150ms cubic-bezier(0.45, 0, 0.55, 1);
}

.main-navbar-btn-ghost:hover {
    color: #bebebe;
    background: #000;
}

.main-navbar-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 22px;
    font-family: urb;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: #121212;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition:
        transform 250ms cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 250ms cubic-bezier(0.45, 0, 0.55, 1);
}

.main-navbar-btn-primary:hover {
    transform: translateY(-1px) scale(1.02);
}

/* ── Mobile Structural & Body Fixes ──────────────────────────────── */
body.drawer-open {
    overflow: hidden !important;
}

/* ── Hamburger Icon Styles ───────────────────────────────────────── */
.main-navbar-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    flex-shrink: 0;
}

.main-navbar-hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: #000000;
    border-radius: 2px;
    transition: transform 300ms ease, opacity 300ms ease, background-color 300ms ease;
}

.main-navbar-hamburger--open .main-navbar-hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.main-navbar-hamburger--open .main-navbar-hamburger-bar:nth-child(2) {
    opacity: 0;
}

.main-navbar-hamburger--open .main-navbar-hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ── Mobile Sliding Overlay Menu ─────────────────────────────────── */
.main-navbar-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 990;
    padding-top: 90px;
    box-sizing: border-box;
    transition: right 400ms cubic-bezier(0.16, 1, 0.3, 1);
    display: none;
}

.main-navbar-mobile-drawer--open {
    right: 0 !important;
}

.main-navbar-mobile-drawer-inner {
    display: flex;
    flex-direction: column;
    height: max-content;
    padding: 0 2rem 3rem 2rem;
    overflow-y: auto;
    box-sizing: border-box;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link,
.mobile-nav-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    font-family: urb;
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    border: none;
    padding: 0.5rem 0;
    text-align: left;
    cursor: pointer;
}

.mobile-nav-submenu-toggle i {
    font-size: 14px;
    transition: transform 300ms ease;
}

.mobile-nav-submenu-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* ── Mobile Accordion Expand/Collapse ────────────────────────────── */
.mobile-nav-submenu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    /* padding-left: 1rem; */
    margin-top: 0rem;
    transition: max-height 350ms cubic-bezier(0.16, 1, 0.3, 1), opacity 350ms ease, margin 350ms ease;
}

.mobile-nav-submenu--open {
    max-height: 300px;
    opacity: 1;
    margin-top: 0.75rem;
}

.mobile-submenu-link {
    font-family: urb;
    font-size: 1rem;
    font-weight: 500;
    color: #444444;
    text-decoration: none;
    padding: 0.25rem 0;
}

.mobile-drawer-footer {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-drawer-footer .main-navbar-btn-primary {
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

/* ── Media Queries (Mobile Breakpoint) ───────────────────────────── */
@media (max-width: 991px) {

    /* Hide desktop elements */
    .main-navbar-links,
    .main-navbar-actions,
    .main-navbar-dropdown::before {
        display: none !important;
    }

    /* Show mobile elements */
    .main-navbar-hamburger,
    .main-navbar-mobile-drawer {
        display: flex;
    }

    /* Adjust padding for mobile screens */
    .main-navbar-inner {
        padding: 0 1.25rem;
    }
}


.main-footer {
    background-color: #ffffff;
    padding: 100px 0 50px 0;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 99999;
}

.main-footer-container {
    max-width: 1300px;
    width: 90%;
    display: flex;
    flex-direction: column;
}

/* Top CTA Section */
.main-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.main-footer-cta-text {
    font-family: geo;
    font-size: 3.5rem;
    font-weight: 500;
    /* Lighter than before */
    color: #000;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1.5px;
}

.main-footer-link-btn {
    display: flex;
    align-items: center;
    justify-content: start;
    text-decoration: none;
    background: linear-gradient(225deg, rgb(20, 70, 210) 0%, rgb(1, 85, 184) 20%, rgb(0, 102, 173) 40%, rgb(0, 122, 187) 60%, rgb(12, 144, 213) 80%, rgb(38, 167, 227) 100%);
    padding: 15px 5px 15px 15px;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    width: 180px;
}

.main-footer-link-btn span {
    font-family: geo;
    color: #fff;
    font-size: 17px;
}

.main-footer-link-btn i {
    font-family: geo;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: #ffffff;
    color: #000000;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: absolute;
    right: 3%;
    border: 1px solid #fff;
}

.main-footer-link-btn:hover i {
    /* height: 100%; */
    width: 93%;
    /* right: 0%; */
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; */
    border: 1px solid linear-gradient(225deg, rgb(20, 70, 210) 0%, rgb(1, 85, 184) 20%, rgb(0, 102, 173) 40%, rgb(0, 122, 187) 60%, rgb(12, 144, 213) 80%, rgb(38, 167, 227) 100%);
}

.main-footer-divider {
    width: 100%;
    height: 1px;
    background-color: #f0f0f0;
    margin-bottom: 60px;
}

/* Middle Section */
.main-footer-mid {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 80px;
}

.main-footer-info-col {
    width: 35%;
}

.main-footer-description {
    font-family: urb;
    font-size: 17px;
    font-weight: 500;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.main-footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 100px;
}

.main-footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.main-footer-label {
    font-family: geo;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 10px;
}

.main-footer-nav-col a {
    text-decoration: none;
    font-family: urb;
    font-size: 17px;
    font-weight: 500;
    color: #000 !important;
    transition: color 0.3s;
}

.main-footer-nav-col a:hover {
    color: #0075B8;
}

/* Brand Section: Controlled Big Text */
.main-footer-brand-wrap {
    width: 100%;
    overflow: hidden;
    /* Safety against overflow */
    margin-bottom: 40px;
}

.main-footer-title {
    font-family: geo;
    font-size: clamp(4rem, 11vw, 11rem);
    /* Scaled to fit screen */
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    /* Solid Black */
    margin: 0;
    letter-spacing: -5px;
    line-height: 0.8;
}

/* Bottom Bar */
.main-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.main-footer-copy,
.main-footer-legal a {
    font-family: urb;
    font-size: 14px !important;
    font-weight: 500;
    color: #999 !important;
    text-decoration: none;
}

.main-footer-legal {
    display: flex;
    gap: 30px;
}

.main-footer-legal a:hover {
    color: #000;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-footer {
        padding: 60px 0px 50px 0;
    }

    .main-footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .main-footer-mid {
        flex-direction: column;
        gap: 50px;
        margin-bottom: 40px;
    }

    .main-footer-info-col {
        width: 100%;
    }

    .main-footer-links-wrapper {
        gap: 60px;
        grid-template-columns: 1fr;
    }

    .main-footer-title {
        letter-spacing: -2px;
    }

    .main-footer-cta-text {
        font-size: 2.4rem;
    }
}





.sd-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-hero .sd-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1300px;
    width: 100%;
}

.sd-hero-content {
    width: 55%;
}

.sd-hero-title {
    font-size: 4rem;
    font-family: geo;
    font-weight: 500;
    margin-bottom: 30px;
}

.sd-hero-para {
    font-size: 20px;
    color: var(--sd-muted);
    max-width: 550px;
    margin-bottom: 50px;
    font-family: urb;
    font-weight: 600;
}

.sd-tag {
    display: block;
    font-size: 13px;
    letter-spacing: 5px;
    color: var(--sd-muted);
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: geo;
}

.sd-btn-primary {
    display: flex;
    align-items: center;
    justify-content: start;
    text-decoration: none;
    background-color: #000;
    padding: 20px 5px 20px 15px;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    width: 35%;
}

.sd-btn-primary span {
    font-family: geo;
    color: #fff;
    font-size: 17px;
}

.sd-btn-primary i {
    font-family: geo;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    background-color: #ffffff;
    color: #000000;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: absolute;
    right: 3%;
    border: 1px solid #fff;
}

.sd-btn-primary:hover i {
    /* height: 100%; */
    width: 93%;
    /* right: 0%; */
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; */
    border: 1px solid #000000;
}

/* Hero Visual Card */
.sd-hero-visual {
    width: 40%;
}

.sd-hero-card {
    padding: 50px;
    border-radius: 40px;
    border: 1px solid #eee;
}

.sd-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.sd-pulse {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 15px #22c55e;
}

.sd-card-stats {
    display: flex;
    gap: 40px;
}

.sd-stat-box h4 {
    font-size: 40px;
    font-family: urb;
}

.sd-stat-box p {
    font-size: 14px;
    color: var(--sd-muted);
    margin-top: 5px;
    font-family: urb;
}

/* 02: Philosophy Section */
.sd-phi-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
}

.sd-phi-left {
    width: 50%;
}

.sd-phi-right {
    width: 40%;
}

.sd-sec-heading {
    font-size: 3.5rem;
    margin-top: 10px;
}

.sd-phi-text {
    font-size: 20px;
    color: var(--sd-muted);
    line-height: 1.6;
}

/* 03: Reply Engine Box */
.sd-engine-box {
    border-radius: 50px;
    padding: 100px 60px;
    border: 1px solid #f0f0f0;
}

.sd-engine-content {
    text-align: center;
}

.sd-sec-sub {
    font-size: 20px;
    color: var(--sd-muted);
    margin: 20px 0 80px 0;
}

.sd-engine-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.sd-feat-card {
    text-align: left;
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #eee;
}

.sd-feat-card i {
    font-size: 32px;
    color: var(--sd-blue);
    display: block;
    margin-bottom: 25px;
}

.sd-feat-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.sd-feat-card p {
    font-size: 16px;
    color: var(--sd-muted);
}

/* 04: Comparison Table */
.sd-comp-table {
    margin-top: 60px;
    border-top: 1px solid #eee;
}

.sd-comp-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.sd-comp-head {
    border-bottom: 2px solid #000;
}

.sd-comp-head .sd-col {
    font-family: 'geo';
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sd-col {
    font-size: 18px;
}

.sd-col.sd-highlight {
    color: var(--sd-blue);
    font-weight: 700;
}

/* 05: Final CTA (Corrected - No Blue on Black) */
.sd-dark-card {
    border-radius: 60px;
    padding: 120px 40px;
    text-align: center;
    color: #fff;
}

.sd-dark-title {
    font-size: 4.5rem;
    color: #fff;
}

.sd-dark-para {
    font-size: 20px;
    color: #888;
    margin: 30px auto 60px;
    max-width: 600px;
}

.sd-dark-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
}

.sd-dark-stat span {
    font-family: 'geo';
    font-size: 60px;
    display: block;
}

.sd-dark-stat p {
    font-size: 14px;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 2px;
}

.sd-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 15px 40px;
    border-radius: 100px;
    text-decoration: none;
    transition: 0.4s;
}

.sd-btn-white span {
    font-family: 'geo';
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
}

.sd-btn-white i {
    color: var(--sd-blue);
    font-size: 20px;
}

.sd-btn-white:hover {
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 1024px) {

    .sd-hero .sd-container,
    .sd-phi-grid,
    .sd-engine-features {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .sd-hero-content,
    .sd-hero-visual,
    .sd-phi-left,
    .sd-phi-right {
        width: 100%;
    }

    .sd-comp-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .sd-dark-title {
        font-size: 3rem;
    }
}




/* ══════════════════════════════════════════════
   CONTACT PAGE STYLES
══════════════════════════════════════════════ */
.contact-wrapper,
.contact-wrapper * {
    box-sizing: border-box;
}

.contact-wrapper {
    background-color: #ffffff;
    padding: 100px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-wrapper .form-container {
    width: 100%;
    max-width: 800px;
    margin-bottom: 80px;
}

.contact-wrapper .form-title {
    font-family: var(--f-head, geo, serif);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.02em;
}

/* Form Layout */
.contact-wrapper .input-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.contact-wrapper .field-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.contact-wrapper .full-width {
    width: 100%;
    margin-bottom: 32px;
}

.contact-wrapper .field-label {
    font-family: var(--f-body, urb, sans-serif);
    font-size: 11px;
    font-weight: 700;
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Inputs */
.contact-wrapper .contact-input {
    font-family: var(--f-body, urb, sans-serif);
    padding: 16px 20px;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    background-color: #FAFAFA;
    transition: all 0.25s ease;
    outline: none;
    width: 100%;
    appearance: none;
    /* Removes default OS styling */
}

.contact-wrapper .contact-input::placeholder {
    color: #AAA;
    font-weight: 500;
}

.contact-wrapper .contact-textarea {
    resize: vertical;
    min-height: 140px;
}

/* Input States */
.contact-wrapper .contact-input:hover {
    border-color: #CCC;
    background-color: #fff;
}

.contact-wrapper .contact-input:focus {
    border-color: #0075B8;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 117, 184, 0.1);
}

/* Custom Select Dropdown */
.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper .select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #888;
    pointer-events: none;
}

/* Submit Button */
.contact-wrapper .contact-send-btn {
    font-family: var(--f-body, urb, sans-serif);
    background: #0075B8;
    /* Kantascrypt Blue */
    color: #ffffff;
    padding: 16px 48px;
    border: none;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: block;
    margin: 0 auto;
    min-width: 200px;
    box-shadow: 0 4px 16px rgba(0, 117, 184, 0.25);
}

.contact-wrapper .contact-send-btn:hover {
    background: #005a8f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 117, 184, 0.35);
}

.contact-wrapper .contact-send-btn:disabled {
    background: #CCC;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Map */
.contact-wrapper .map-container {
    width: 100%;
    max-width: 1100px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    background: #F5F5F5;
}

.contact-wrapper .google-map-frame {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* ══════════════════════════════════════════════
   VALIDATION & ERRORS
══════════════════════════════════════════════ */
.contact-wrapper .error-msg {
    font-family: var(--f-body, urb, sans-serif);
    color: #E04040;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
    display: none;
    position: absolute;
    bottom: -22px;
    left: 0;
}

.contact-wrapper .contact-input.input-error {
    border-color: #E04040;
    background-color: #FFFafa;
}

.contact-wrapper .contact-input.input-error:focus {
    box-shadow: 0 0 0 4px rgba(224, 64, 64, 0.1);
}

/* ══════════════════════════════════════════════
   PREMIUM POPUP MODAL
══════════════════════════════════════════════ */
.form-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.form-popup-box {
    background: #ffffff;
    padding: 48px 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-popup-overlay.active .form-popup-box {
    transform: translateY(0) scale(1);
}

.popup-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}

/* Success State */
.form-popup-box.success-state .popup-icon {
    background: #EEF8F1;
    color: #2DB87A;
}

/* Error State */
.form-popup-box.error-state .popup-icon {
    background: #FFF4F4;
    color: #E04040;
}

.form-popup-box.error-state .popup-icon i::before {
    content: "\eb99";
    /* Remix Icon 'close-line' */
}

.popup-title {
    font-family: var(--f-head, geo, serif);
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px 0;
}

.popup-message {
    font-family: var(--f-body, urb, sans-serif);
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

.popup-close-btn {
    font-family: var(--f-body, urb, sans-serif);
    background-color: #111;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
}

.popup-close-btn:hover {
    background-color: #333;
}

/* ══════════════════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .contact-wrapper {
        padding: 60px 20px;
    }

    .contact-wrapper .input-row {
        flex-direction: column;
        gap: 32px;
        /* Increased gap to account for absolute error messages */
    }

    .contact-wrapper .form-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .contact-wrapper .full-width {
        margin-top: 16px;
    }
}




/* about-page-start */
.main-about-wrapper,
.main-about-wrapper * {
    box-sizing: border-box;
}

.main-about-wrapper {
    background-color: #ffffff;
    color: #1a1a1a;
    padding-top: 100px;
}

.main-about-wrapper p {
    font-weight: 600;
}

.main-about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.main-about-hero-title,
.main-about-section-h,
.main-about-goal-h {
    font-family: 'geo', sans-serif;
    font-weight: 700;
    margin: 0;
}

.main-about-hero-desc,
.main-about-p,
.main-about-hero-tag,
.main-about-stat-num,
.main-about-value-card p {
    font-family: 'urb', sans-serif;
}

/* Hero */
.main-about-hero {
    padding-bottom: 120px;
    position: relative;
}

.main-about-hero-asset {
    position: absolute;
    opacity: 0.5;
    width: 40%;
    right: 10%;
    top: 40%;
}

.main-about-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f7ff;
    color: #007bff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    z-index: 100;
}

.main-about-hero-title {
    font-size: clamp(40px, 5vw, 60px);
    margin-bottom: 30px;
    letter-spacing: -2px;
    line-height: 1.1;
    position: relative;
    z-index: 100;
}

.main-about-gradient-text {
    background: var(--sd-grad-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 100;
}

.main-about-hero-desc {
    font-size: 20px;
    color: #555;
    max-width: 550px;
    font-weight: 600;
    line-height: 1.6;
    position: relative;
    z-index: 100;
}

/* Mission Grid */
.main-about-mission {
    padding: 100px 0;
    background-color: #fbfbfb;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.main-about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.main-about-section-h {
    font-size: 42px;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.main-about-p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Stats */
.main-about-stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.main-about-stat-num {
    font-size: 36px;
    font-weight: 800;
    color: #007bff;
    display: block;
}

.main-about-stat-label {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Goal Boxes */
.main-about-goal-box {
    padding: 40px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.main-about-dark-box {
    background: #1a1a1a;
    color: #fff;
    border: none;
}

.main-about-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #f0f7ff;
    color: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.main-about-dark-box .main-about-icon-circle {
    background: #333;
    color: #fff;
}

.main-about-goal-h {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Technology Carousel */
.main-about-tech-stack {
    padding: 100px 0;
}

.main-about-tech-carousel {
    margin-top: 60px;
}

.main-about-tech-slide {
    padding: 0 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.main-about-tech-slide img {
    height: 70px;
    width: auto;
    /* filter: grayscale(100%); */
    opacity: 1;
}

/* Values Grid */
.main-about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.main-about-value-card {
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.main-about-value-card:hover {
    border-color: #007bff;
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.main-about-value-card i {
    font-size: 32px;
    color: #007bff;
    margin-bottom: 20px;
    display: block;
}

.main-about-value-card h4 {
    font-family: 'geo';
    font-size: 20px;
    margin-bottom: 12px;
}

.main-about-value-card p {
    font-size: 15px;
    color: #777;
    line-height: 1.5;
}

/* CTA */
.main-about-cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.main-about-cta-asset {
    position: absolute;
    opacity: 0.5;
    left: 10%;
    width: 30%;
}

.main-about-cta-inner {
    background: #f8f9fa;
    padding: 80px 200px 80px 100px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.main-about-cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* margin-top: 40px; */
}

.main-about-btn-primary {
    background: #C2BFFB;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    border: none;
    font-family: 'urb';
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

.main-about-btn-secondary {
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'urb';
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

/* Helper */
.text-center {
    text-align: center;
}

/* Mobile */
@media (max-width: 992px) {

    .main-about-mission-grid,
    .main-about-values-grid {
        grid-template-columns: 1fr;
    }

    .main-about-cta-inner {
        padding: 40px;
    }
}

.slick-slide {
    height: 10% !important;
}


@media (max-width: 1550px) {

    /* ══════════════════════════════════════════════
       1. GLOBAL CONTAINERS & TYPOGRAPHY
    ══════════════════════════════════════════════ */
    .main-about-container {
        max-width: 1140px;
        /* Brings the edge in slightly for 1440px screens */
        padding: 0 32px;
    }

    .main-about-section-h {
        font-size: 36px;
    }

    .main-about-p {
        font-size: 16px;
    }

    /* ══════════════════════════════════════════════
       2. HERO SECTION
    ══════════════════════════════════════════════ */
    .main-about-wrapper {
        padding-top: 80px;
    }

    .main-about-hero {
        padding-bottom: 100px;
    }

    .main-about-hero-title {
        font-size: clamp(36px, 4.5vw, 52px);
        /* Scale down max size slightly */
        margin-bottom: 24px;
    }

    .main-about-hero-desc {
        font-size: 18px;
        max-width: 500px;
    }

    .main-about-hero-asset {
        width: 35%;
        /* Prevent illustration from overlapping text on smaller monitors */
        right: 8%;
    }

    /* ══════════════════════════════════════════════
       3. MISSION / STANDARD GRID
    ══════════════════════════════════════════════ */
    .main-about-mission {
        padding: 80px 0;
    }

    .main-about-mission-grid {
        gap: 56px;
        /* Tighten the gap between text and the cards */
    }

    .main-about-goal-box {
        padding: 32px;
        margin-bottom: 24px;
    }

    .main-about-goal-h {
        font-size: 22px;
    }

    .main-about-stats-row {
        gap: 32px;
        margin-top: 32px;
    }

    .main-about-stat-num {
        font-size: 32px;
    }

    /* ══════════════════════════════════════════════
       4. TECHNOLOGY STACK
    ══════════════════════════════════════════════ */
    .main-about-tech-stack {
        padding: 80px 0;
    }

    .main-about-tech-carousel {
        margin-top: 48px;
    }

    /* ══════════════════════════════════════════════
       5. VALUES / PARTNER GRID
    ══════════════════════════════════════════════ */
    .main-about-values-grid {
        gap: 16px;
        margin-top: 40px;
    }

    .main-about-value-card {
        padding: 32px 24px;
    }

    .main-about-value-card h4 {
        font-size: 18px;
    }

    .main-about-value-card p {
        font-size: 14px;
    }

    /* ══════════════════════════════════════════════
       6. CTA SECTION
    ══════════════════════════════════════════════ */
    .main-about-cta {
        padding: 80px 0;
    }

    .main-about-cta-inner {
        /* Reduce the extreme 200px right padding so text doesn't get crushed */
        padding: 64px 80px 64px 64px;
    }

    .main-about-cta-asset {
        width: 25%;
        left: 8%;
    }
}

/* about-page-end   */

















/* HERO-SECTION-START */


.home-hero-section {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

.home-hero-container {
    display: flex;
    align-items: center;
    padding: 0px 200px;
    width: 100%;
}

.home-hero-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 54px;
    width: 50%;
    /* padding-top: 200px; */
}

.home-hero-heading {
    font-size: 4rem;
    font-family: head;
    font-weight: 500;
    margin: 0;
    letter-spacing: -3px;
}

.home-hero-para {
    color: #333;
    font-family: para;
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 500px;
    margin: 0px;
}

.home-hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 0px;
    border-radius: 10px;
    background: #000;
    padding: 15px 40px 15px 50px;
    position: relative;
    transition: all 0.4s ease;
}

.home-hero-btn div {
    width: 52px;
    height: 52px;
    border-radius: 72px;
    background: #006FFF;
    box-shadow: 0 0 10.3px 0 #006FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -10%;
    top: 0;
    transition: all 0.4s ease;
}

.home-hero-btn div i {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 100;
}

.home-hero-btn span {
    color: #FFF;
    font-family: head;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    /* letter-spacing: -1.25px; */
    position: relative;
    z-index: 100;
    transition: all 0.4s ease;
}

.home-hero-btn:hover {
    border-radius: 50px;
    padding: 15px 30px 15px 50px;
}

.home-hero-btn:hover div {
    width: 100%;
    left: 0;
}

.home-hero-btn:hover div i {
    transform: translateX(75px);
}

.home-hero-btn:hover span {
    transform: translateX(-25px);
}

.home-hero-right {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 50%;
    background-image: url(/assets/images/banner/hook-asset.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}






/* .home-hero-asset {
    width: 760px;
    height: 100%;
    position: absolute;
    top: 0;
} */

/* .home-hero-para {
    color: #ffffff;
    text-align: right;
    font-family: para;
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 500px;
    padding: 20px 20px 20px 20px;
    position: relative;
    z-index: 100;
    margin: 0px 20px 100px 0px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(22px);
    border-radius: 10px;
} */


.home-hero-tags {
    /* display: grid;
    grid-template-columns: 1fr 1fr 1fr; */
    display: flex;
    padding: 20px;
    margin-bottom: 100px;
    gap: 20px;
}

.hero-tag {
    /* background: rgba(255, 255, 255, 1); */
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.hero-tag-1 {
    background-color: #cce2ff;
}

.hero-tag-2 {
    background-color: #fff4c6;
}

.hero-tag-3 {
    background-color: #e5d1ff;
}

.hero-tag div {
    width: 15px;
    height: 15px;
    /* background-color: #006FFF; */
}

.hero-tag-1 div {
    background-color: #006FFF;
}

.hero-tag-2 div {
    background-color: #FFCC00;
}

.hero-tag-3 div {
    background-color: #6f00ff;
}


.hero-tag span {
    font-family: head;
    font-weight: 500;
    /* font-size: 1.2rem; */
}



@media(max-width: 1550px) {
    .home-hero-container {
        padding: 0px 100px;
    }

    .home-hero-heading {
        font-size: 3rem;
    }

    .home-hero-para {
        font-size: 1.1rem;
        max-width: 400px;
    }

    .hero-tag {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-tag div {}

    .hero-tag span {
        font-size: 0.7rem;
        margin: 0px;
    }
}


@media(max-width: 768px) {
    .home-hero-section {
        padding: 150px 0px 0px 0px;
    }

    .home-hero-container {
        flex-direction: column;
        padding: 0px 20px;
        gap: 30px;
    }

    .home-hero-left {
        width: 100%;
        /* padding: 0px 20px 0px 20px; */
        gap: 32px;
    }

    .home-hero-heading {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .home-hero-para {
        max-width: 100%;
        font-size: 1rem;
    }

    .home-hero-right {
        width: 100%;
    }

    .home-hero-tags {
        flex-direction: column;
        margin-bottom: 0px;
    }

    .home-hero-btn {
        left: 5%;
    }
}

/* HERO-SECTION-END   */





/* HOOK-SECTION-START */
.hook-section {
    display: flex;
    justify-content: center;
    padding: 100px 0px;
    background: rgba(255, 166, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hook-asset {
    position: absolute;
    width: 630px;
    height: 100%;
    object-fit: cover;
    object-position: top;
    left: 5%;
    top: 0;
}

.hook-container {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    align-items: start;
    padding: 0px 200px;
    position: relative;
    z-index: 10;
}

.hook-tag-side {
    /* width: 40%; */
    display: flex;
    align-items: start;
    position: relative;
    z-index: 10;
}

.hook-tag {
    font-family: para;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #000;
    padding: 5px 10px;
}

.hook-tag div {
    background-color: #FFCC00;
    width: 15px;
    height: 15px;
}

.hook-tag span {
    color: #fff;
}

/* .hook-para-wrapper{
    width: 60%;
} */

.hook-para {
    width: 100%;
    font-family: head;
    margin: 0;
    font-size: 2.5rem;
    font-weight: 400;
    /* letter-spacing: -1px; */
}

@media(max-width: 1550px) {
    .hook-container {
        padding: 0px 100px;
    }

    .hook-para {
        font-size: 2rem;
    }
}



@media(max-width: 768px) {
    .hook-container {
        padding: 0px 20px;
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
    }


    .hook-para {
        font-size: 1.3rem;
    }
}

/* HOOK-SECTION-END   */






/* PROBLEM-FACED-SECTION-START */
.pf-section {
    /* height: 100vh; */
    padding: 100px 0px;
    /* background: #d4ddff; */
    background-image: url(https://images.unsplash.com/photo-1698653223247-09aaf01166fc?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.pf-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.pf-container {
    padding: 0px 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* height: 100%; */
    gap: 100px;
    position: relative;
    z-index: 10;
}

.pf-top {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pf-heading {
    font-family: head;
    font-weight: 500;
    font-size: 4rem;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: #fff;
}

.pf-para {
    font-family: para;
    font-weight: 500;
    font-size: 1.3rem;
    margin: 0;
    max-width: 700px;
    align-self: flex-end;
    color: #fff;
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pf-card {
    background-color: #fbf8ff;
    padding: 10px 20px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    border-radius: 4px;
}

/* 
.pf-card:nth-child(1){
    background: #d6e8ff;
}

.pf-card:nth-child(2){
    background: #ecdeff;
}

.pf-card:nth-child(3){
    background: #fcf4d7;
}

.pf-card:nth-child(4){
    background: #dcfcec;
}

.pf-card:nth-child(5){
    background: #fae7d4;
}

.pf-card:nth-child(6){
    background: #fae0e0;
} */


.pf-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pf-card-top h3 {
    font-family: head;
    font-size: 1.5rem;
    font-weight: 500;
}

.pf-card-top div {
    width: 25px;
    height: 25px;
    background: #6f00ff;
    border-radius: 50px;
}

.pf-card-bottom {
    font-family: para;
    font-size: 1.5rem;
    font-weight: 500;
}


@media(max-width: 1550px) {
    .pf-container {
        padding: 0px 100px;
    }

    .pf-heading {
        font-size: 3rem;
    }

    .pf-para {
        font-size: 1rem;
        max-width: 400px;
    }

    .pf-card {
        height: 250px;
    }

    .pf-card-top h3 {
        font-family: head;
    }

    .pf-card-bottom {
        font-size: 1.2rem;
    }
}


@media(max-width: 768px) {
    .pf-section {
        padding: 50px 0px;
    }

    .pf-container {
        padding: 0px 20px;
    }

    .pf-heading {
        font-size: 2.5rem;
    }

    .pf-para {
        font-size: 1rem;
    }

    .pf-grid {
        grid-template-columns: 1fr;
    }

    .pf-card {
        height: 200px;
    }

    .pf-card-bottom {
        font-size: 1.2rem;
    }

}

/* PROBLEM-FACED-SECTION-END   */













/* SERVICE-SECTION-START */
.service-section {
    padding: 100px 0px;
    /* height: 100vh; */
    background:
        repeating-linear-gradient(to right,
            transparent 0,
            transparent 180px,
            rgba(255, 255, 255, 0.15) 180px,
            rgba(0, 68, 255, 0) 182px),
        linear-gradient(180deg, #122b50 0%, #fff 100%);
}

.service-container {
    padding: 0px 200px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.service-heading {
    font-family: head;
    font-weight: 500;
    letter-spacing: -3px;
    font-size: 4rem;
    margin: 0;
    color: #fff;
}

.service-para {
    font-family: para;
    font-size: 1.4rem;
    max-width: 1200px;
    text-align: center;
    margin: 0;
    font-weight: 500;
    color: #fff;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    /* height: 100%; */
    border-radius: 12px;
}

.service-card-top {
    padding: 70px 60px 40px 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-top h3 {
    font-family: head;
    font-weight: 500;
    font-size: 2rem;
    margin: 0;
}

.service-para-btn {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 50px;
}

.service-para-btn p {
    font-size: 1.2rem;
    font-family: para;
    font-weight: 500;
    margin: 0;
}

.service-para-btn a {
    padding: 10px 18px;
    background-color: #006FFF;
    color: #fff;
    text-decoration: none;
    /* font-family: para; */
    align-self: flex-end;
    font-size: 1.7rem;
    border-radius: 50px;
    font-weight: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: all 0.4s ease;
}

.service-para-btn a:hover {
    transform: rotate(45deg);
    background-color: #000;
}

.service-card-bottom {
    height: 200px;
    overflow: hidden;
    border-radius: 0px 0px 12px 12px;
}

.service-card-bottom img {
    width: 100%;
    object-position: center;
    border-radius: 0px 0px 12px 12px;
}


@media(max-width: 1550px) {
    .service-container {
        padding: 0px 100px;
    }

    .service-heading {
        font-size: 3rem;
    }

    .service-para {
        font-size: 1.2rem;
        max-width: 800px;
    }

    .service-card-top h3 {
        font-size: 1.8rem;
    }

    .service-card-top {
        padding: 40px 30px 40px 30px;
    }

    .service-card-bottom {
        height: max-content;
    }

    .service-para-btn p {
        font-size: 1rem;
    }
}


@media(max-width: 768px) {
    .service-section {
        padding: 60px 0px;
    }

    .service-container {
        padding: 0px 20px;
    }

    .service-heading {
        font-size: 2.5rem;
    }

    .service-para {
        font-size: 1.1rem;
        text-align: left;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-para-btn {
        gap: 10px;
    }

    .service-card-top {
        padding: 35px 30px 20px 30px;
    }

    .service-card-bottom {
        height: auto;
    }
}

/* SERVICE-SECTION-END   */













/* PRODUCT-SECTION-START */

.prod-section {
    font-family: para;
    /* background: #ffffff; */
    padding: 80px 8vw 80px;
    position: relative;
    overflow: hidden;

    background:
        repeating-linear-gradient(to right,
            transparent 0,
            transparent 180px,
            rgba(255, 255, 255, 0.15) 180px,
            rgba(0, 68, 255, 0) 182px),
        linear-gradient(0deg, #b97cff23 0%, #fff 100%);
}

/* faint numbered watermark strip in the corner, echoes the hero's tag chips */
.prod-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(16, 16, 20, 0.08);
}

.prod-head {
    display: flex;
    flex-direction: column;
}

.prod-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #101014;
    padding: 8px 14px 8px 10px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.prod-eyebrow-icon {
    width: 9px;
    height: 9px;
    background: #f6d34e;
    display: inline-block;
}

.prod-eyebrow-text {
    font-family: head;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.prod-title {
    font-family: head;
    font-weight: 500;
    font-size: 4.5rem;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: #101014;
    margin: 0 0 22px;
}

.prod-intro {
    font-family: para;
    font-weight: 500;
    font-size: 1.2rem;
    /* margin: 0; */
    max-width: 700px;
    align-self: flex-end;
    color: #000000;
}

/* ---- product rows ---- */
.prod-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prod-item {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    align-items: center;
    gap: 64px;
    padding: 72px 0;
    border-top: 1px solid rgba(16, 16, 20, 0.08);
    position: relative;
}

.prod-item:last-child {
    border-bottom: 1px solid rgba(16, 16, 20, 0.08);
}

.prod-item--reverse {
    grid-template-columns: 0.92fr 1fr;
}

.prod-item--reverse .prod-item-content {
    order: 2;
}

.prod-item--reverse .prod-item-media {
    order: 1;
}

.prod-item-index {
    font-family: head;
    font-weight: 600;
    font-size: 15vw;
    line-height: 1;
    position: absolute;
    top: 46px;
    left: -0.02em;
    color: rgba(16, 16, 20, 0.035);
    z-index: 0;
    pointer-events: none;
    /* max-font-size: 220px; */
}

.prod-item-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.prod-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: head;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #101014;
    margin-bottom: 18px;
}

.prod-tag-num {
    font-family: head;
    font-weight: 600;
    color: #9a9ca3;
}

.prod-item-title {
    font-family: head;
    font-weight: 500;
    font-size: 4rem;
    line-height: 1.15;
    color: #101014;
    margin: 0 0 8px;
}

.prod-item-sub {
    font-family: para;
    font-weight: 500;
    font-size: 1.5rem;
    color: #8a8d94;
    margin: 0 0 18px;
}

.prod-item-desc {
    font-family: para;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #5c5f68;
    max-width: 660px;
    margin: 0 0 30px;
}

.prod-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    max-width: 440px;
    margin: 0 0 36px;
    padding: 0;
    list-style: none;
}

.prod-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: para;
    font-weight: 500;
    font-size: 1rem;
    color: #26272c;
}

.prod-highlight-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}




.prod-btn-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 0px;
    border-radius: 50px;
    background: #000;
    padding: 15px 40px 15px 50px;
    position: relative;
    transition: all 0.4s ease;
}

.prod-btn-1 div {
    width: 52px;
    height: 52px;
    border-radius: 72px;
    background: #7C3CE0;
    box-shadow: 0 0 10.3px 0 #7C3CE0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -10%;
    top: 0;
    transition: all 0.4s ease;
}

.prod-btn-1 div i {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 100;
}

.prod-btn-1 span {
    color: #FFF;
    font-family: head;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    /* letter-spacing: -1.25px; */
    position: relative;
    z-index: 100;
    transition: all 0.4s ease;
}

.prod-btn-1:hover {
    border-radius: 50px;
    padding: 15px 30px 15px 50px;
}

.prod-btn-1:hover div {
    width: 100%;
    left: 0;
}

.prod-btn-1:hover div i {
    transform: translateX(75px);
}

.prod-btn-1:hover span {
    transform: translateX(-25px);
}




.prod-btn-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 0px;
    border-radius: 50px;
    background: #000;
    padding: 15px 40px 15px 50px;
    position: relative;
    transition: all 0.4s ease;
}

.prod-btn-2 div {
    width: 52px;
    height: 52px;
    border-radius: 72px;
    background: #E8791C;
    box-shadow: 0 0 10.3px 0 #E8791C;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -10%;
    top: 0;
    transition: all 0.4s ease;
}

.prod-btn-2 div i {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 100;
}

.prod-btn-2 span {
    color: #FFF;
    font-family: head;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    /* letter-spacing: -1.25px; */
    position: relative;
    z-index: 100;
    transition: all 0.4s ease;
}

.prod-btn-2:hover {
    border-radius: 50px;
    padding: 15px 30px 15px 50px;
}

.prod-btn-2:hover div {
    width: 100%;
    left: 0;
}

.prod-btn-2:hover div i {
    transform: translateX(75px);
}

.prod-btn-2:hover span {
    transform: translateX(-25px);
}





.prod-btn-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 0px;
    border-radius: 50px;
    background: #000;
    padding: 15px 40px 15px 50px;
    position: relative;
    transition: all 0.4s ease;
}

.prod-btn-3 div {
    width: 52px;
    height: 52px;
    border-radius: 72px;
    background: #1C6FE0;
    box-shadow: 0 0 10.3px 0 #1C6FE0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -10%;
    top: 0;
    transition: all 0.4s ease;
}

.prod-btn-3 div i {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 100;
}

.prod-btn-3 span {
    color: #FFF;
    font-family: head;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    /* letter-spacing: -1.25px; */
    position: relative;
    z-index: 100;
    transition: all 0.4s ease;
}

.prod-btn-3:hover {
    border-radius: 50px;
    padding: 15px 30px 15px 50px;
}

.prod-btn-3:hover div {
    width: 100%;
    left: 0;
}

.prod-btn-3:hover div i {
    transform: translateX(75px);
}

.prod-btn-3:hover span {
    transform: translateX(-25px);
}

/* ---- illustration panel ---- */
.prod-item-media {
    position: relative;
    z-index: 1;
}

.prod-illustration {
    position: relative;
    border-radius: 28px;
    aspect-ratio: 4 / 3.4;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-illustration svg {
    width: 100%;
    height: 100%;
}

.prod-illustration-float {
    will-change: transform;
}

/* ---- accent variants (mirror the pillar colours: AI/ML → purple, Automation → orange, System Dev → blue) ---- */
.prod-item--sendra .prod-illustration {
    background: linear-gradient(150deg, #cdb0f7 0%, #6a3fbd 55%, #2c1653 100%);
}

.prod-item--sendra .prod-tag-num,
.prod-item--sendra .prod-highlight-dot {
    background: #7c3ce0;
    color: #7c3ce0;
}

.prod-item--sendra .prod-cta-icon {
    background: #d9c2fb;
}

.prod-item--bizping .prod-illustration {
    background: linear-gradient(150deg, #ffd897 0%, #e8791c 55%, #6b3405 100%);
}

.prod-item--bizping .prod-tag-num,
.prod-item--bizping .prod-highlight-dot {
    background: #e8791c;
    color: #e8791c;
}

.prod-item--bizping .prod-cta-icon {
    background: #ffe0b0;
}

.prod-item--bizman .prod-illustration {
    background: linear-gradient(150deg, #a9d4ff 0%, #1c6fe0 55%, #06255e 100%);
}

.prod-item--bizman .prod-tag-num,
.prod-item--bizman .prod-highlight-dot {
    background: #1c6fe0;
    color: #1c6fe0;
}

.prod-item--bizman .prod-cta-icon {
    background: #bfe0ff;
}

@media (max-width: 1550px) {
    .prod-section {
        padding: 60px 100px;
    }

    .prod-title {
        font-size: 3rem;
    }

    .prod-intro {
        font-size: 1rem;
        max-width: 460px;
    }

    .prod-item-title {
        font-size: 3rem;
    }

    .prod-item-desc {
        font-size: 1rem;
        max-width: 500px;
    }
}

/* ---- responsive ---- */
@media (max-width: 900px) {
    .prod-section {
        padding: 60px 6vw 40px;
    }

    .prod-item,
    .prod-item--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0;
    }

    /* .prod-item--reverse .prod-item-content,
    .prod-item--reverse .prod-item-media {
        order: initial;
    } */

    .prod-item-media {
        order: -1;
    }

    .prod-item-index {
        font-size: 90px;
        top: 8px;
    }

    .prod-highlights {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .prod-title {
        font-size: 2.5rem;
    }

    .prod-intro {
        font-size: 1rem;
    }

    .prod-btn-1,
    .prod-btn-2,
    .prod-btn-3 {
        left: 5%;
    }
}

@media (prefers-reduced-motion: reduce) {

    .prod-item-content,
    .prod-item-media {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* PRODUCT-SECTION-END */















/* PROCESS-SECTION-START */
.process-section {
    font-family: para;
    background-color: #fbf9f5;
    background-image: radial-gradient(rgba(16, 16, 20, 0.07) 1px, transparent 1px);
    background-size: 24px 24px;
    padding: 150px 8vw 160px;
    position: relative;
}

.process-head {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 0px 0px 50px 0px;
}

.process-head-te {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
}

.process-eyebrow {
    display: inline-flex;
    align-self: flex-end;
    align-items: center;
    gap: 8px;
    background: #101014;
    padding: 8px 14px 8px 10px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.process-eyebrow-icon {
    width: 9px;
    height: 9px;
    background: #f6d34e;
    display: inline-block;
}

.process-eyebrow-text {
    font-family: head;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.process-title {
    font-family: head;
    font-weight: 500;
    font-size: 4.5rem;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: #101014;
    margin: 0 0 22px;
    text-align: right;
}

.process-intro {
    font-family: para;
    font-weight: 500;
    font-size: 1.2rem;
    /* margin: 0; */
    max-width: 700px;
    color: #000000;
    line-height: 1.3;
}

/* ---- pinned track ---- */
.process-track {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 8vw;
    position: relative;
}

.process-visual-col {
    position: relative;
}

.process-visual-sticky {
    position: sticky;
    top: 110px;
    height: 520px;
}

.process-visual-stage {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #101014;
}

.process-visual-panel {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    clip-path: circle(0% at 50% 50%);
    pointer-events: none;
    transition: opacity .3s ease, clip-path .5s ease;
}

.process-visual-panel.is-active {
    opacity: 1;
    clip-path: circle(150% at 50% 50%);
    pointer-events: auto;
}

.process-visual-panel svg {
    width: 78%;
    height: 78%;
}

.process-visual-number {
    position: absolute;
    top: 28px;
    left: 32px;
    font-family: head;
    font-weight: 600;
    font-size: 20px;
    color: #ffffff;
    opacity: 0.85;
    letter-spacing: 0.02em;
    z-index: 2;
}

.process-visual-label {
    position: absolute;
    bottom: 30px;
    left: 32px;
    font-family: head;
    font-weight: 500;
    font-size: 15px;
    color: #ffffff;
    z-index: 2;
}

/* accent gradients, cycling the same three brand accents used across the site */
.process-visual-panel[data-accent="blue"] {
    background: linear-gradient(150deg, #a9d4ff 0%, #1c6fe0 55%, #06255e 100%);
}

.process-visual-panel[data-accent="orange"] {
    background: linear-gradient(150deg, #ffd897 0%, #e8791c 55%, #6b3405 100%);
}

.process-visual-panel[data-accent="purple"] {
    background: linear-gradient(150deg, #cdb0f7 0%, #6a3fbd 55%, #2c1653 100%);
}

/* ---- steps column ---- */
.process-steps-col {
    position: relative;
}

.process-spine {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 22px;
    width: 2px;
    background: rgba(16, 16, 20, 0.1);
}

.process-spine-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #101014;
    transform-origin: top;
}

.process-steps-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.process-step {
    position: relative;
    padding: 0px 0 56px 66px;
    min-height: 25vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.35;
    transition: opacity 0.4s ease;
}

.process-step.is-active {
    opacity: 1;
}

.process-step-dot {
    position: absolute;
    left: 13px;
    top: 62px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fbf9f5;
    border: 2px solid rgba(16, 16, 20, 0.25);
    transition: border-color 0.3s ease, background 0.3s ease;
    z-index: 1;
}

.process-step.is-active .process-step-dot {
    background: #101014;
    border-color: #101014;
}

.process-step-index {
    display: block;
    font-family: head;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: #9a9ca3;
    margin-bottom: 10px;
}

.process-step-title {
    font-family: head;
    font-weight: 600;
    font-size: clamp(22px, 2vw, 28px);
    color: #101014;
    margin: 0 0 10px;
}

.process-step-desc {
    font-family: para;
    font-weight: 400;
    font-size: 15.5px;
    line-height: 1.7;
    color: #5c5f68;
    max-width: 460px;
    margin: 0;
}

/* illustration shown inline on mobile, hidden on desktop where the pinned panel is used instead */
.process-step-media {
    display: none;
}

/* ---- closing statement ---- */
.process-closing {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 720px;
    margin: 130px auto 0;
    padding-left: 24px;
    border-left: 3px solid #f6d34e;
}

.process-closing p {
    font-family: head;
    font-weight: 500;
    font-size: clamp(19px, 2vw, 24px);
    line-height: 1.5;
    color: #101014;
    margin: 0;
}

@media (max-width: 1550px) {
    .process-section {
        padding: 60px 100px;
    }

    .process-title {
        font-size: 3rem;
    }

    .process-intro {
        font-size: 1rem;
        max-width: 470px;
    }

    .process-visual-sticky {

        height: 395px;
    }

}

/* ---- responsive ---- */
@media (max-width: 980px) {
    .process-section {
        padding: 60px 6vw 60px;
    }

    .process-head {
        margin-bottom: 64px;
    }

    .process-track {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .process-visual-col {
        display: none;
    }

    .process-spine {
        left: 15px;
    }

    .process-step {
        min-height: 0;
        padding: 0 0 44px 52px;
        opacity: 1;
    }

    .process-step-dot {
        top: 4px;
        left: 6.5px;
    }

    .process-step-media {
        display: block;
        width: 100%;
        max-width: 280px;
        aspect-ratio: 1.2 / 1;
        border-radius: 20px;
        margin: 0 0 20px;
        position: relative;
        overflow: hidden;
    }

    .process-step-media svg {
        width: 68%;
        height: 68%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .process-step-media[data-accent="blue"] {
        background: linear-gradient(150deg, #a9d4ff 0%, #1c6fe0 55%, #06255e 100%);
    }

    .process-step-media[data-accent="orange"] {
        background: linear-gradient(150deg, #ffd897 0%, #e8791c 55%, #6b3405 100%);
    }

    .process-step-media[data-accent="purple"] {
        background: linear-gradient(150deg, #cdb0f7 0%, #6a3fbd 55%, #2c1653 100%);
    }

    .process-closing {
        margin-top: 80px;
    }

    .process-eyebrow {
        align-self: start;
    }

    .process-head-te {
        align-self: start;
    }

    .process-title {
        font-size: 2.2rem;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    /* .process-visual-panel {
        transition: none;
        clip-path: none;
    } */

    .process-step {
        opacity: 1;
    }
}

/* PROCESS-SECTION-END   */

















/* IWS-SECTION-START */
.iws-section {
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
}

.iws-asset {
    position: absolute;
    width: 650px;
    height: 1080px;
    right: 10%;
    top: 0;
}

.iws-container {
    padding: 0px 200px;
    display: flex;
    flex-direction: column;
    gap: 100px;
    position: relative;
    z-index: 100;
}

.iws-section {
    padding: 80px 0px;
}

/* Header flex layout alignment */
.iws-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}

.iws-top-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.iws-top-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 32px;
}

/* Tag details & pill shape fix */
.iws-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #101014;
    padding: 6px 14px 6px 10px;
    border-radius: 100px;
}

.iws-tag div {
    width: 8px;
    height: 8px;
    background: #cdb0f7;
    border-radius: 50%;
    /* Rounded dot effect */
    display: inline-block;
}

.iws-tag span {
    font-family: head;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-transform: uppercase;
}

/* Typography alignment */
.iws-heading {
    font-family: head;
    font-weight: 500;
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: rgb(16, 16, 20);
    margin: 0;
}

.iws-para {
    font-size: 1.15rem;
    font-weight: 400;
    font-family: para;
    margin: 0;
    line-height: 1.5;
    color: #333338;
}

/* ==========================================
   CTA BUTTON LAYOUT & EFFECTS
   ========================================== */

.iws-cta {
    position: relative;
    padding: 12px 28px 12px 22px;
    border-radius: 50px;
    background-color: #000000;
    border: 1px solid #000000;
    text-decoration: none;
    color: #ffffff;
    font-family: head;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.2, 1, 0.2, 1);
}

.iws-cta i {
    font-size: 1.1rem;
    font-weight: 100;
    transition: transform 0.35s cubic-bezier(0.2, 1, 0.2, 1);
}

.iws-cta:hover {
    background-color: #1a1a20;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.iws-cta:hover i {
    transform: rotate(-45deg) translate(2px, -2px);
}

/* ==========================================
   GRID LAYOUT & CARD HOVER EFFECTS
   ========================================== */

.iws-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 60px;
    column-gap: 60px;
}

.iws-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 24px 0 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animated accent line on card top border */
.iws-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #7b42f6;
    /* Accent color on hover */
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.iws-card h3 {
    font-family: head;
    margin: 0px;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.01rem;
    color: #101014;
    transition: color 0.3s ease;
}

.iws-card p {
    font-family: para;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #55555e;
    margin: 0px;
}

/* Card Hover Interactions */
.iws-card:hover {
    transform: translateY(-6px);
}

.iws-card:hover::before {
    width: 100%;
}

.iws-card:hover h3 {
    color: #7b42f6;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS (LAYOUT)
   ========================================== */

@media(max-width: 1550px) {
    .iws-container {
        padding: 0px 100px;
    }

    .iws-heading {
        font-size: 3rem;
    }

    .iws-para {
        font-size: 1rem;
        font-weight: 600;
    }
}

@media (max-width: 1200px) {
    .iws-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }
}

@media (max-width: 768px) {
    .iws-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .iws-section {
        padding: 60px 0px;
    }

    .iws-top-left,
    .iws-top-right {
        width: 100%;
    }

    .iws-grid {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .iws-container {
        padding: 0px 20px;
    }
}

/* IWS-SECTION-END   */










/* CLIENT-SECTION-START */
.client-section {
    padding: 100px 0px;
}


.client-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.client-top {
    display: flex;
    justify-content: space-between;
    padding: 0px 200px;
}

.client-top-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.client-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #101014;
    padding: 6px 14px 6px 10px;
    border-radius: 100px;
}

.client-tag div {
    width: 8px;
    height: 8px;
    background: #a9d4ff;
    border-radius: 50%;
    display: inline-block;
}

.client-tag span {
    font-family: head;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-transform: uppercase;
}

.client-heading {
    font-family: head;
    font-weight: 500;
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: rgb(16, 16, 20);
    margin: 20px 0px 0px 0px;
}

.client-para {
    font-size: 1.2rem;
    font-weight: 500;
    font-family: para;
    margin: 0px;
    line-height: 1.5;
    color: rgb(51, 51, 56);
    max-width: 550px;
}


.client-top-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-end;
    justify-content: flex-end;
    width: 50%;
    height: 350px;
}

.client-para-2 {
    font-size: 1.2rem;
    font-weight: 500;
    font-family: para;
    margin: 0px;
    line-height: 1.5;
    color: rgb(51, 51, 56);
    text-align: right;
    max-width: 600px;
}

.client-cta {
    padding: 15px 30px 15px 20px;
    text-decoration: none;
    color: #000;
    border-radius: 50px;
    font-family: head;
    border: 1px solid #000;
    transition: all 0.2s ease;
}

.client-cta:hover {
    background: #006FFF;
    color: #fff;
    border: 1px solid #006FFF;
}


.client-bottom {
    padding: 0px 130px;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    row-gap: 35px;
    width: 100%;
}

/* Every logo gets an identical container */
.client-logo {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-sizing: border-box;
    border-bottom: 1px solid #e4e4e4;
}

/* Logo stays inside the same visual area */
.client-logo img {
    width: 100%;
    height: 100%;
    max-width: 190px;
    max-height: 100px;
    object-fit: contain;
    object-position: center;
    display: block;
}


@media(max-width: 1550px) {
    .client-top {
        padding: 0px 100px;
    }

    .client-heading {
        font-size: 3rem;
    }

    .client-para,
    .client-para-2 {
        font-size: 1rem;
    }

    .client-top-right {
        height: 250px;
    }

    .client-bottom {
        padding: 0px 80px;
    }
}

@media(max-width: 768px) {
    .client-section {
        padding: 60px 0px;
    }

    .client-top {
        padding: 0px 20px;
        flex-direction: column;
        gap: 20px;
    }

    .client-top-left {
        width: 100%;
    }

    .client-heading {
        font-size: 2.5rem;
    }

    .client-top-right {
        width: 100%;
        height: auto;
        align-items: start;
    }

    .client-para-2,
    .client-para {
        text-align: left;
        font-size: 1rem;
    }

    .client-bottom {
        padding: 0px 20px;
    }

    .client-grid:not(.slick-initialized) {
        grid-template-columns: repeat(3, 1fr);
    }

    /* --- NEW FIXES FOR SLICK CAROUSEL --- */

    /* Add space between the continuous slides */
    .slick-slide {
        margin: 0 75px;
    }

    .client-logo {
        height: 100px !important;
        padding: 0px !important;
        /* Strip away padding to maximize space */
        display: flex !important;
        align-items: center;
        justify-content: center;
        border-bottom: none;
    }

    /* Set explicit dimensions to completely prevent collapsing */
    .client-logo img {
        width: auto !important;
        height: auto !important;
        max-width: 130px !important;
        /* Explicit maximum width */
        max-height: 65px !important;
        /* Explicit maximum height */
        object-fit: contain;
        margin: 0 auto;
    }
}

/* CLIENT-SECTION-END   */
















/* CTA-SECTION-START */
.cta-section {
    position: relative;
    z-index: 99999;
    /* background: #fff4c6; */
    /* background: #FFC97E; */
    background: #312C33;
    height: 100vh;
    /* padding: 100px 0px; */
    overflow: hidden;
}

.cta-section-asset {
    position: absolute;
    height: 100%;
    width: 760px;
    right: -10%;
    top: 0;
}

.cta-container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;

    z-index: 10;
}

.cta-left {
    width: 50%;
}

.cta-wrapper {
    width: 100%;
    height: 100%;
}

.cta-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    height: 100%;
    padding: 0px 200px 0px 200px;
}

.cta-right-top {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 20px;
}

.cta-tag {
    background: #000;
    padding: 5px 10px 5px 10px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.cta-tag div {
    width: 10px;
    height: 10px;
    background: #BA6A62;
    border-radius: 50px;
}

.cta-tag span {
    color: #fff;
    font-family: head;
    font-size: 0.9rem;
}

.cta-heading {
    margin: 0px 0px 20px 0px;
    font-size: 4.5rem;
    font-family: head;
    font-weight: 500;
    letter-spacing: -3px;
    line-height: 1.1;
    color: #fff;
}

.cta-right-bottom {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: start;
}

.cta-para {
    font-size: 1.3rem;
    font-family: para;
    font-weight: 500;
    max-width: 700px;
    line-height: 1.3;
    color: #fff;
    letter-spacing: 1px;
}

.cta-section-btn {
    padding: 15px 35px;
    border: 1px solid #FCD0DC;
    text-decoration: none;
    color: #FCD0DC;
    border-radius: 50px;
    font-family: head;
    transition: all 0.3s ease;
}

.cta-section-btn:hover {
    background-color: #FCD0DC;
    color: #000;
}


@media(max-width: 1550px) {
    .cta-text-wrapper {
        padding: 0px 100px;
    }

    .cta-heading {
        font-size: 3rem;
    }

    .cta-para {
        font-size: 1.1rem;
    }
}


@media(max-width: 768px) {
    .cta-section {
        height: auto;
    }

    .cta-container {
        flex-direction: column-reverse;
        height: auto;
        padding: 80px 0px 0px 0px;
        gap: 20px;
    }

    .cta-left {
        width: 100%;
    }

    .cta-right {
        width: 100%;
    }

    .cta-text-wrapper {
        padding: 0px 20px;
    }

    .cta-heading {
        font-size: 3rem;
        letter-spacing: 0.1px;
    }

    .cta-section-asset {
        height: 50%;
        width: 670px;
        right: -80%;
    }
}

/* CTA-SECTION-END   */