@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap');

:root {
    --kd-black: #000000;
    --kd-white: #ffffff;
    --kd-bg: #f3f1ed;
    --kd-border: #d9d4cf;
    --kd-orange: #ff4d1f;

    --kd-bg-dark: #020617;
    --kd-card: #0b1638;
    --kd-card2: #162b66;
    --kd-primary: #3b82f6;
    --kd-muted: #c5d0ef;
}

* {
    margin: 0;
    padding: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--kd-bg);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

h2 {
    font-size: 44px !important;
}

section {
    padding: 0px 48px;
}

/* =====================================================
    HEADER
===================================================== */

.kd-port-header {
    padding: 20px 0;
    border-bottom: 1px solid var(--kd-border);
}

.kd-port-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.kd-port-logo-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
}

.kd-port-logo {
    padding-left: 34px;
    font-size: 27px;
    line-height: 1;
    font-weight: 800;
    color: var(--kd-black);
    text-decoration: none;
}

.kd-port-divider {
    width: 85px;
    height: 26px;
    background: repeating-linear-gradient(to right,
            #000,
            #000 2px,
            transparent 2px,
            transparent 4px);
}

.kd-port-studio-text {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

.kd-port-nav-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
}

.kd-port-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.kd-port-nav-list li a {
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.kd-port-nav-list li a span {
    width: 24px;
    height: 24px;
    background: var(--kd-orange);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.kd-port-menu-btn {
    width: 60px;
    height: 60px;
    border: none;
    background: transparent;
    position: relative;
}

.kd-port-menu-btn span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #000;
    transition: 0.4s ease;
}

.kd-port-menu-btn span:nth-child(1) {
    top: 24px;
}

.kd-port-menu-btn span:nth-child(2) {
    top: 34px;
}

/* =====================================================
    HEADER HOVER LINE
===================================================== */

.kd-port-nav-list li a {
    position: relative;
    overflow: hidden;
}

.kd-port-nav-list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #000;

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.kd-port-nav-list li a:hover::after {
    transform: scaleX(1);
}

/* =====================================================
    HERO
===================================================== */

.kd-port-hero-sec {
    padding: 25px 0 40px;
}

.kd-port-title-wrap {
    margin-bottom: 25px;
}

.kd-port-main-title {
    font-size: 100px;
    line-height: 0.9;
    font-weight: 900;
    color: #000;
}

.kd-port-hero-box {
    position: relative;
    min-height: auto;
    border-radius: 40px;
    overflow: hidden;
    padding: 35px 35px 70px;
}

.kd-port-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kd-port-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.kd-port-tags-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 120px;
}

.kd-port-tags-wrap .kd-port-tag {
    /* padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff !important;
    text-align: center;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    transition: 0.4s ease;
    background: transparent !important; */

    font-family: "Inter VF", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 22.4px;
    color: rgb(221, 221, 221) !important;
    background-color: rgba(0, 0, 0, 0) !important;
    letter-spacing: -0.32px;
    text-align: center;
    vertical-align: baseline;
    text-decoration: none;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);

}

.kd-port-tag:hover {
    color: #fff;
    transform: translateY(-3px);
}

.kd-port-hero-content {
    position: relative;
    z-index: 2;
    max-width: 19.375rem;
}

.kd-port-subtitle {
    display: block;
    color: #d7d7d7;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.kd-port-hero-title {
    color: #fff;
    font-size: 45px;
    line-height: 1;
    font-weight: 700;
}

#kdPortTextSlider {
    display: inline-block;
    min-width: 100%;
}

/* =====================================================
    MARQUEE
===================================================== */

.kd-port-scroll-marquee {
    position: absolute;
    left: 50%;
    bottom: 42px;
    transform: translateX(-50%);
    width: 30%;
    overflow: hidden;
    z-index: 3;
}

.kd-port-scroll-marquee {
    position: absolute;
    left: 50%;
    bottom: 81px;
    transform: translateX(-50%);
    width: 30%;
    overflow: hidden;
    z-index: 3;
}

.kd-port-marquee-track {
    display: flex;
    gap: 70px;
    width: max-content;
    animation: kdPortMarquee 15s linear infinite;
}

.kd-port-marquee-track span {
    color: #d7d7d7;
    font-size: .9rem;
    letter-spacing: 2px;
    white-space: nowrap;
}

@keyframes kdPortMarquee {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/* =====================================================
    CONTACT
===================================================== */

.kd-port-contact-wrap {
    position: absolute;
    right: 35px;
    bottom: 35px;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    gap: 14px;
}

.kd-port-contact-img {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    overflow: hidden;
    flex-shrink: 0;
}

.kd-port-contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kd-port-contact-card {
    position: relative;
    width: 270px;
    min-height: 110px;
    background: rgb(255 255 255 / 16%);
    backdrop-filter: blur(18px);
    border-radius: 24px;
    padding: 24px;
    overflow: hidden;
    transition: 0.5s ease;
}

.kd-port-dot {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: var(--kd-orange);
    border-radius: 50%;
}

.kd-port-contact-default {
    transition: 0.4s ease;
}

.kd-port-contact-default h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.kd-port-contact-default p {
    color: #d8d8d8;
    font-size: 1rem;
    margin: 0;
}

.kd-port-contact-hover {
    position: absolute;
    inset: 0;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    transform: translateY(20px);
}

.kd-port-contact-item {
    margin-bottom: 14px;
}

.kd-port-contact-item span {
    display: block;
    color: #c9c9c9;
    font-size: 14px;
    margin-bottom: 4px;
}

.kd-port-contact-item a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
}

.kd-port-contact-card:hover {
    width: 380px;
    min-height: 240px;
}

.kd-port-contact-card:hover .kd-port-contact-default {
    opacity: 0;
    visibility: hidden;
}

.kd-port-contact-card:hover .kd-port-contact-hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =====================================================
    MENU
===================================================== */

.kd-port-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.kd-port-side-menu {
    position: fixed;
    top: 14px;
    right: -100%;
    width: 660px;
    height: calc(100vh - 28px);
    background: #f8f8f8;
    border-radius: 40px;
    z-index: 99;
    padding: 40px;
    transition: 0.5s ease;
    overflow-y: auto;
}

.kd-port-side-menu.active {
    right: 14px;
}

.kd-port-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.kd-port-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background: #ece9e6;
    font-size: 28px;
}

.kd-port-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.kd-port-mobile-nav li {
    margin-bottom: 12px;
}

.kd-port-mobile-nav li a {
    color: #000;
    text-decoration: none;
    font-size: 72px;
    line-height: 1;
    font-weight: 500;
}

.kd-port-menu-btn-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.kd-port-pill-btn {
    height: 60px;
    padding: 0 28px;
    background: #ece9e6;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #000;
    font-size: 22px;
    font-weight: 600;
}

.kd-port-pill-btn span {
    width: 7px;
    height: 7px;
    background: var(--kd-orange);
    border-radius: 50%;
}

.kd-port-social-wrap {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.kd-port-social-wrap a {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid #d8d8d8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    font-size: 24px;
}

.kd-port-menu-contact {
    background: #000;
    border-radius: 36px;
    min-height: 240px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.kd-port-menu-contact-content h4 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
}

.kd-port-menu-contact img {
    width: 220px;
}

.kd-port-menu-footer {
    display: flex;
    gap: 25px;
}

.kd-port-menu-footer a {
    color: #6d6d6d;
    text-decoration: none;
    font-size: 18px;
}

/* =====================================================
    PARTNERS
===================================================== */

.kd-port-partner-sec {
    padding: 120px 0;
    overflow: hidden;
    background: var(--kd-bg);
}

.kd-port-partner-top {
    margin-bottom: 70px;
}

.kd-port-partner-label {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--kd-black);
}

.kd-port-partner-label span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--kd-orange);
}

.kd-port-partner-title {
    max-width: 820px;

    font-size: 74px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;

    color: var(--kd-black);

    margin: 0;
}

/* =====================================================
    SLIDER
===================================================== */

.kd-port-partner-slider {
    overflow: hidden;
    position: relative;
}

.kd-port-partner-track {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: max-content;

    animation: kdPortPartnerScroll 30s linear infinite;
}

.kd-port-partner-slider:hover .kd-port-partner-track {
    animation-play-state: paused;
}

/* =====================================================
    ITEM
===================================================== */

.kd-port-partner-item {
    width: 320px;
    flex-shrink: 0;
}

.kd-port-partner-card {
    width: 100%;
    height: 270px;

    background: rgba(255, 255, 255, 0.65);

    border: 1px solid rgba(0, 0, 0, 0.03);

    border-radius: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.5s ease;

    overflow: hidden;
}

.kd-port-partner-card img {
    width: 120px;
    object-fit: contain;

    transition: 0.5s ease;
}

.kd-port-partner-content {
    text-align: center;
    padding-top: 24px;
}

.kd-port-partner-content h4 {
    font-size: 1.15rem;
    line-height: 1;
    font-weight: 700;

    color: var(--kd-black);

    margin-bottom: 12px;
}

.kd-port-partner-content p {
    font-size: .9rem;
    line-height: 1.45;
    font-weight: 500;

    color: #8a8a8a;

    max-width: 220px;
    margin: auto;
}

/* =====================================================
    HOVER
===================================================== */

.kd-port-partner-item:hover .kd-port-partner-card {
    transform: translateY(-12px);

    background: var(--kd-white);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.06);
}

.kd-port-partner-item:hover .kd-port-partner-card img {
    transform: scale(1.08) rotate(-2deg);
}

/* =====================================================
    ANIMATION
===================================================== */

@keyframes kdPortPartnerScroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/* =====================================================
    SELECTED WORK
===================================================== */

.kd-port-selected-sec {
    padding: 110px 0 130px;
    background: var(--kd-bg);

    border-top: 1px solid var(--kd-border);
}

.kd-port-selected-wrap {
    position: relative;
}

.kd-port-selected-title {
    position: relative;
    font-size: 128px !important;
    color: var(--kd-black);
    margin: 0;
    font-weight: 600;
    line-height: 108.8px;
    color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0);
    letter-spacing: -2.56px;
}

.kd-port-selected-title span {
    position: absolute;
    top: 8px;
    right: 40px;

    width: 34px;
    height: 34px;

    background: var(--kd-orange);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--kd-white);

    font-size: 18px;
    font-weight: 700;

    letter-spacing: 0;
}

.kd-port-selected-content {
    max-width: 290px;
    margin: auto;
}

.kd-port-selected-content h5 {
    font-size: .8rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.5px;

    color: var(--kd-black);

    margin-bottom: 36px;
}

.kd-port-selected-content p {
    font-size: .8rem;
    line-height: 1.45;
    font-weight: 500;

    color: #6d6d6d;

    margin: 0;
}

.kd-port-selected-count {
    text-align: right;
    font-size: 128px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -5px;
    color: var(--kd-black);
}

.kd-port-selected-count span {
    margin-right: 10px;
}

/* =====================================================
    WORK SHOWCASE
===================================================== */

.kd-port-work-sec {
    padding: 80px 0 140px;
    background: var(--kd-bg);
    overflow: hidden;
}

.kd-port-work-wrap {
    max-width: 1400px;
    margin: auto;
}

/* =====================================================
    ITEM
===================================================== */

.kd-port-work-item {
    position: relative;

    display: block;

    width: 100%;
    max-width: 1050px;

    margin: 0 auto 260px;

    text-decoration: none;
}

.kd-port-work-item:last-child {
    margin-bottom: 0;
}

/* =====================================================
    IMAGE WRAP
===================================================== */

.kd-port-work-image-wrap {
    position: relative;

    border-radius: 42px;
    overflow: hidden;

    transform-origin: center center;

    transform:
        perspective(1200px) rotateX(14deg) rotateY(0deg) scale(0.92);

    opacity: 0.4;

    transition:
        transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 1s cubic-bezier(0.22, 1, 0.36, 1);

    box-shadow:
        0 60px 80px rgba(0, 0, 0, 0.18);
}

/* ACTIVE */
.kd-port-work-item.kd-port-active .kd-port-work-image-wrap {

    transform:
        perspective(1200px) rotateX(0deg) rotateY(0deg) scale(1);

    opacity: 1;

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.16);
}

.kd-port-work-image-wrap img {
    width: 100%;
    height: 530px;
    object-fit: cover;
    display: block;
    transition: transform 1.2s ease;
}

.kd-port-work-item:hover .kd-port-work-image-wrap img {
    transform: scale(1.05);
}

/* =====================================================
    TAG
===================================================== */

.kd-port-work-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;

    height: 44px;
    padding: 0 18px;

    border-radius: 60px;

    background: rgba(255, 255, 255, 0.96);

    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--kd-black);

    font-size: 16px;
    font-weight: 700;

    z-index: 3;
}

.kd-port-work-tag span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--kd-orange);
}

/* =====================================================
    CURSOR FOLLOW
===================================================== */

.kd-port-work-cursor {
    position: absolute;
    top: 0;
    left: 0;

    width: auto;
    padding: 10px 20px;
    height: auto;

    border-radius: 10px;

    background: #0000004f;
    backdrop-filter: blur(50px);

    color: var(--kd-white);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: .5;
    font-weight: 500;

    pointer-events: none;

    z-index: 10;

    opacity: 0;
    visibility: hidden;

    transform:
        translate(-50%, -50%) scale(0.5);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.kd-port-work-item:hover .kd-port-work-cursor {
    opacity: 1;
    visibility: visible;

    transform:
        translate(-50%, -50%) scale(1);
}

/* =====================================================
    FEATURE GRID
===================================================== */

.kd-port-feature-sec {
    padding: 80px 0 120px;
    background: var(--kd-bg);
}

.kd-port-orbit-card,
.kd-port-chat-card,
.kd-port-pricing-card {
    border-radius: 34px;
    overflow: hidden;
    position: relative;
}


/* =====================================================
    ORBIT CARD
===================================================== */

.kd-port-orbit-card {
    height: 100%;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kd-port-orbit-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at center,
            rgba(255, 255, 255, 0.04),
            transparent 65%);
}

/* =====================================================
    RINGS
===================================================== */

.kd-port-orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.kd-port-ring-one {
    width: 580px;
    height: 580px;

    animation: kdPortOrbitOne 18s linear infinite;
}

.kd-port-ring-two {
    width: 320px;
    height: 320px;

    animation: kdPortOrbitTwo 12s linear infinite reverse;
}

/* =====================================================
    AVATAR
===================================================== */

.kd-port-avatar {
    position: absolute;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.3);
}

.kd-port-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OUTER */
.kd-port-avatar-1 {
    top: 30px;
    left: 70px;
}

.kd-port-avatar-2 {
    top: 10px;
    right: 90px;
}

.kd-port-avatar-3 {
    bottom: 40px;
    right: 30px;
}

.kd-port-avatar-4 {
    bottom: 50px;
    left: 50px;
}

/* INNER */
.kd-port-avatar-5 {
    top: -20px;
    left: 90px;
}

.kd-port-avatar-6 {
    bottom: 50px;
    right: -10px;
}

/* =====================================================
    CONTENT
===================================================== */

.kd-port-orbit-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.kd-port-orbit-content h3 {
    color: var(--kd-white);

    font-size: 68px;
    line-height: 1.05;
    font-weight: 700;

    max-width: 420px;
}

/* =====================================================
    CHAT CARD
===================================================== */

.kd-port-chat-card {
    background: #d9d5d0;
    min-height: 420px;

    padding: 50px 60px;
}

.kd-port-chat-label {
    display: block;

    text-align: center;

    color: #7c7873;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 50px;
}

.kd-port-chat-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.kd-port-chat-message {
    opacity: 0;
    transform: translateY(30px);

    animation: kdPortChatReveal 12s infinite;
}

.kd-port-chat-message:nth-child(1) {
    animation-delay: 0s;
}

.kd-port-chat-message:nth-child(2) {
    animation-delay: 1.5s;
}

.kd-port-chat-message:nth-child(3) {
    animation-delay: 3s;
}

.kd-port-chat-message:nth-child(4) {
    animation-delay: 4.5s;
}

.kd-port-chat-message:nth-child(5) {
    animation-delay: 6s;
}

.kd-port-chat-message:nth-child(6) {
    animation-delay: 7.5s;
}

.kd-port-chat-message.left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kd-port-chat-message.left img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.kd-port-chat-message span {
    min-height: 52px;

    background: var(--kd-white);

    border-radius: 50px;

    display: inline-flex;
    align-items: center;

    padding: 0 24px;

    color: var(--kd-black);

    font-size: 18px;
    font-weight: 500;
}

.kd-port-chat-message.right {
    padding-left: 54px;
}

/* =====================================================
    PRICING
===================================================== */

.kd-port-pricing-card {
    height: 420px;
    background: #000;
}

.kd-port-pricing-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kd-port-pricing-content {
    position: absolute;
    inset: 0;

    padding: 44px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.kd-port-pricing-content h3 {
    color: var(--kd-white);

    font-size: 58px;
    line-height: 1;
    font-weight: 700;

    max-width: 280px;
}

.kd-port-pricing-btn {
    height: 58px;
    padding: 0 24px;

    background: var(--kd-white);

    border-radius: 60px;

    display: inline-flex;
    align-items: center;
    gap: 14px;

    color: var(--kd-black);
    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    transition: 0.4s ease;
}

.kd-port-pricing-btn span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--kd-orange);
}

.kd-port-pricing-btn:hover {
    transform: translateY(-4px);
    color: var(--kd-black);
}

/* =====================================================
    ANIMATION
===================================================== */

@keyframes kdPortOrbitOne {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes kdPortOrbitTwo {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }

}

@keyframes kdPortChatReveal {

    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    5% {
        opacity: 1;
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        transform: translateY(0);
    }

    30% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px);
    }

}

/* =====================================================
    CHAT MESSAGE
===================================================== */

.kd-port-chat-message {
    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.kd-port-chat-message.kd-port-show {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
    ABOUT SECTION
===================================================== */

.kd-port-about-sec {
    padding: 120px 0;
    background: var(--kd-bg);
    overflow: hidden;
}

/* =====================================================
    LEFT VIDEO
===================================================== */

.kd-port-about-video-wrap {
    position: relative;
    height: 85vh;
    border-radius: 34px;
    transform: translateY(0);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    margin: 0px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.kd-port-about-video-wrap:hover {
    transform: translateY(-12px);

    box-shadow:
        0 60px 100px rgba(0, 0, 0, 0.14);
}

.kd-port-about-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 1.2s ease;
}

.kd-port-about-video-wrap:hover .kd-port-about-video {
    transform: scale(1.08);
}

/* =====================================================
    OVERLAY
===================================================== */

.kd-port-about-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.4));
}

/* =====================================================
    GLASS CARD
===================================================== */

.kd-port-about-card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 72%;
    padding: 48px;
    border-radius: 26px;
    background: rgba(62, 36, 18, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform 0.6s ease, background 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.kd-port-about-video-wrap:hover .kd-port-about-card {
    transform:
        translate(-50%, -50%) scale(1.03);

    background:
        rgba(62, 36, 18, 0.4);
}

.kd-port-about-card h3 {
    color: var(--kd-white);
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    background-color: rgba(0, 0, 0, 0);
    letter-spacing: -0.32px;
    text-align: center;
}

.kd-port-about-user h5 {
    color: var(--kd-white);

    font-size: 28px;
    font-weight: 700;

    margin-bottom: 6px;
}

.kd-port-about-user p {
    color: rgba(255, 255, 255, 0.7);

    font-size: 16px;
    margin: 0;
}

/* =====================================================
    LOGO
===================================================== */

.kd-port-about-logo {
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    color: var(--kd-white);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0;
}

/* =====================================================
    RIGHT CONTENT
===================================================== */

.kd-port-about-content {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 100%;
    padding: 3rem 1.5rem;
    display: flex;
    box-sizing: border-box;
}

.kd-port-about-label {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--kd-black);

    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 34px;
}

.kd-port-about-label span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--kd-orange);
}

.kd-port-about-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 48.4px;
    color: var(--kd-black);
    background-color: rgba(0, 0, 0, 0);
    letter-spacing: -0.88px;
    text-align: start;
    vertical-align: baseline;
}

.kd-port-about-text {
    /* max-width: 440px; */
    color: #4d4d4d;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 50px;
}

/* =====================================================
    BUTTON
===================================================== */

.kd-port-about-btn {
    height: 70px;
    padding: 0 34px;

    background: var(--kd-black);

    border-radius: 80px;

    display: inline-flex;
    align-items: center;
    gap: 16px;

    color: var(--kd-white);
    text-decoration: none;

    font-size: 18px;
    font-weight: 700;

    transition: 0.4s ease;
}

.kd-port-about-btn span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--kd-orange);
}

.kd-port-about-btn:hover {
    color: var(--kd-white);

    transform: translateY(-4px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.14);
}

/* ====================================================== */
/* Custom Global Section Style overrides */
.kd-port-services-section {
    background-color: #000000;
    color: #ffffff;

}

.kd-port-card-wrapper {
    height: 310px;
}

/* The magic sticky setup */
.kd-port-stack-container {
    position: relative;
}

/* Individual row item act as a stack layer */
.kd-port-stack-item {
    position: sticky;
    top: 120px;
    /* Offset to keep things below the global header navbar if you have one */
    background-color: #000000;
    /* Solid background prevents elements behind from bleeding through */
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    box-shadow: 0px -20px 30px rgba(0, 0, 0, 0.9);
    /* Subtle depth when layers overlap */
}

/* Left side elements stay pinned while right side finishes scrolling */
.kd-port-sticky-column {
    position: -webkit-sticky;
    position: sticky;
    top: 140px;
    align-self: start;
    height: fit-content;
}

/* Design Polish tags styling matching UI screenshot */
.kd-port-tag {
    background-color: #1a1a1a !important;
    color: #7a7a7a !important;
    transition: all 0.3s ease;
}

.kd-port-tag:hover {
    background-color: #2a2a2a !important;
    color: #ffffff !important;
}

.kd-port-badge {
    background-color: #ff3b30 !important;
    /* Custom deep red/orange accent */
    font-size: 14px;
}

.kd-port-card-img {
    width: 100%;
    max-width: 420px;
    object-fit: cover;
}

.kd-port-card-text {
    max-width: 420px;
    color: #8a8a8a !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =====================================================
    TOP
===================================================== */

.kd-port-services-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    margin-bottom: 100px;
}

.kd-port-services-title {
    color: var(--kd-white);

    font-size: 92px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: -4px;
}

.kd-port-services-icons {
    display: flex;
    justify-content: space-evenly;
}

.kd-port-services-icon {
    color: var(--kd-white);
    font-size: 18px;

    animation: kdPortRotateIcon 6s linear infinite;
}

.kd-port-services-icon:nth-child(2) {
    animation-duration: 8s;
}

.kd-port-services-icon:nth-child(3) {
    animation-duration: 10s;
}

.kd-port-services-icon:nth-child(4) {
    animation-duration: 12s;
}

.kd-port-services-count {
    color: var(--kd-white);

    font-size: 82px;
    font-weight: 700;
}

/* =====================================================
    ANIMATION
===================================================== */
/* Container alignment adjustments */
.kd-port-services-top {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    width: 100%;
}

/* Base style for icons layout */
.kd-port-services-icons {
    flex-grow: 1;
    max-width: 50%;
    /* Adjust space allocated for icons in the center */
}

/* Target the individual icon containers for infinite spinning */
.kd-port-services-icon {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;

    /* Animation Assignment */
    animation: kdPortInfiniteSpin 6s linear infinite;
}

/* Staggering the start times slightly creates a more dynamic kinetic wave flow */
.kd-port-services-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.kd-port-services-icon:nth-child(3) {
    animation-delay: 1s;
}

.kd-port-services-icon:nth-child(4) {
    animation-delay: 1.5s;
}


/* --- ANIMATION KEYFRAMES --- */
@keyframes kdPortInfiniteSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =====================================================
    img-slider section
===================================================== */
.kd-port-img-slide-sec {
    background-color: #000000 !important;
    /* Rich deep black backdrop */
    width: 100%;
    height: 80vh;
    padding: 100px 0px;
}

.kd-port-img-slide-sec .kd-port-partner-top {
    margin-bottom: 70px;
    z-index: 9;
    /* padding-bottom: 99px; */
}

/* Clear spatial container configuration */
.kd-port-3d-stage {
    position: absolute;
    width: 300px;
    height: 400px;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    perspective: 1500px;
}

#ring {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    user-select: none;
}

/* Individual Image Panels configuration */
.kd-port-img-slide-sec .img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.kd-port-img-slide-sec .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}

/* Deep horizontal cinematic edge-vignette shading */
.kd-port-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.4) 20%,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0.4) 80%,
            rgba(0, 0, 0, 1) 100%);
    z-index: 2;
}

/* Interactive Drag Overlay Cover Layer */
#dragger {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    cursor: grab;
}

#dragger:active {
    cursor: grabbing;
}


/* ===============================
   CUSTOM CURSOR FOLLOW
================================= */
/* =========================================
   DRAG FOLLOW PILL
========================================= */

#drag-pill {
    position: fixed;
    top: 0;
    left: 0;

    width: 140px;
    height: 140px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.15);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    pointer-events: none;

    z-index: 999999;

    opacity: 0;

    transform: translate(-50%, -50%) scale(.7);

    transition:
        opacity .3s ease,
        transform .3s ease,
        background .3s ease;

    mix-blend-mode: difference;
}

/* visible */
#drag-pill.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* while dragging */
#drag-pill.dragging {
    transform: translate(-50%, -50%) scale(1.12);
    background: rgba(255, 255, 255, 0.18);
}

/* =====================================================
    TESTIMONIALS
===================================================== */

.kd-port-testimonial-sec {
    padding: 120px 0;
    background: var(--kd-bg);
    padding-left: 20px;
    padding-right: 20px;
}

.kd-port-testimonial-label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 34px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.kd-port-testimonial-label span {
    width: 6px;
    height: 6px;
    border-radius: 50%;

    background: var(--kd-orange);
}

.kd-port-testimonial-title {
    font-size: 82px;
    line-height: 0.95;
    font-weight: 700;

    letter-spacing: -4px;

    color: var(--kd-black);

    margin-bottom: 80px;
}

/* =====================================================
    STATS
===================================================== */

.kd-port-testimonial-stats p {
    color: #888;
    font-size: 18px;

    margin-bottom: 40px;
}

.kd-port-testimonial-stat-item {
    margin-bottom: 40px;
}

.kd-port-testimonial-stat-item h3 {
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 8px;
}

.kd-port-testimonial-stat-item h5 {
    color: #7b7b7b;

    font-size: 16px;
    line-height: 1.5;

    margin-bottom: 18px;
}

.kd-port-testimonial-line {
    width: 100%;
    height: 2px;

    background: #d7d2cb;

    position: relative;
}

.kd-port-testimonial-line span {
    position: absolute;
    left: 0;
    top: 0;

    height: 100%;

    background: var(--kd-black);
}

/* =====================================================
    FEATURE CARD
===================================================== */

.kd-port-testimonial-feature-card {
    position: relative;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.kd-port-testimonial-slider-wrap .slick-list.draggable {
    height: 96vh !important;
}

.kd-port-testimonial-feature-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.14);
}

.kd-port-testimonial-feature-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 1s ease;
}

.kd-port-testimonial-feature-card:hover img {
    transform: scale(1.05);
}

.kd-port-testimonial-feature-overlay {
    position: absolute;
    inset: 0;

    padding: 40px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0));
}

/* =====================================================
    STARS
===================================================== */

.kd-port-stars {
    display: flex;
    gap: 4px;

    color: #ff9f2d;

    margin-bottom: 24px;
}

/* =====================================================
    FEATURE TEXT
===================================================== */

.kd-port-testimonial-feature-overlay h3 {
    color: var(--kd-white);
    font-size: 24px;
    font-weight: 500;
    line-height: 31.2px;
    letter-spacing: -0.32px;
    margin-bottom: 35px;
}

.kd-port-testimonial-user h4 {
    color: var(--kd-white);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.kd-port-testimonial-user p {
    color: rgba(255, 255, 255, 0.7);

    font-size: 15px;
}

/* =====================================================
    RIGHT SLIDER
===================================================== */

.kd-port-testimonial-slider .slick-track {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
}

.kd-port-testimonial-card {
    background: rgba(255, 255, 255, 0.55);

    border-radius: 24px;

    padding: 42px;

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.kd-port-testimonial-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08);
}

.kd-port-testimonial-card h3 {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 20px;
}

.kd-port-testimonial-user-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.kd-port-testimonial-user-wrap img {
    width: 52px;
    height: 52px;

    border-radius: 14px;

    object-fit: cover;
}

.kd-port-testimonial-user-wrap h4 {
    font-size: 18px;
    font-weight: 700;

    margin-bottom: 2px;
}

.kd-port-testimonial-user-wrap p {
    color: #777;
    font-size: 14px;
}

/* =====================================================
    MOBILE ARROWS
===================================================== */

.kd-port-testimonial-arrows {
    display: flex;
    gap: 14px;

    margin-top: 24px;
}

.kd-port-testimonial-arrows button {
    width: 54px;
    height: 54px;

    border: none;
    border-radius: 50%;

    background: var(--kd-black);
    color: var(--kd-white);

    transition: 0.4s ease;
}

.kd-port-testimonial-arrows button:hover {
    transform: translateY(-4px);
}



/* slider section */


.carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: "TikTok Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: #da0;
}

.cards-wrapper {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-50%, -50%);
}

.card {
    position: absolute;
    width: 20vw;
    max-width: 300px;
    min-width: 190px;
    height: auto;
    aspect-ratio: 0.6;
    box-shadow: -4px 4px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 3.3em;
    user-select: none;
    background: linear-gradient(240deg, #fff 20%, #ddd 70%);
}

.cursor {
    position: fixed;
    left: -45px;
    top: -60px;
    font-size: 90px;
    pointer-events: none;
    user-select: none;
    opacity: 0;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000000;
    /* Dark premium backdrop style */
    user-select: none;
}

.cards-wrapper {
    position: absolute;
    left: 50%;
    top: 25%;
    /* Pushed down slightly to accommodate the bottom center rotation radius scale */
    transform: translate(-50%, -50%);
}

.card {
    position: absolute;
    width: 22vw;
    max-width: 320px;
    min-width: 200px;
    height: auto;
    aspect-ratio: 0.7;
    /* Optimized cinematic portrait card layout aspect ratio */
    box-shadow: -10px 15px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Clips the child images smoothly inside the curved borders */
    border-radius: 16px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Force inner graphic panels to maintain layout proportions correctly */
.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.cursor {
    position: fixed;
    left: -45px;
    top: -60px;
    font-size: 70px;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    z-index: 100;
}

/* =====================================================
    FAQ
===================================================== */

/* =====================================================
    FAQ SECTION BASE
===================================================== */
.kd-port-faq-sec {
    padding: 120px 0;
    background-color: #fcfbf7;
    /* Off-white container background color */
}

/* Ensure the grid columns stretch equally */
.kd-port-faq-sec .row {
    display: flex;
    align-items: stretch;
}

/* Ensure right column correctly behaves as a stretch-container */
.kd-port-faq-sec .col-lg-7 {
    display: flex;
    flex-direction: column;
}

/* =====================================================
    LEFT SIDE CONTENT
===================================================== */
.kd-port-faq-left {
    padding-right: 2rem;
}

.kd-port-faq-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #000000;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.kd-port-faq-label span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ff4500;
    /* Custom orange tone */
}

.kd-port-faq-title {
    font-size: 84px;
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -3px;
    color: #000000;
    margin-bottom: 24px;
}

.kd-port-faq-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 48px;
}

/* =====================================================
    ACCORDION STYLING
===================================================== */
.kd-port-faq-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kd-port-faq-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Interactive Title Header Button */
.kd-port-faq-head {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    text-align: left;
}

.kd-port-faq-head-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Number badges */
.kd-port-faq-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    background-color: #ff4500;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.kd-port-faq-head h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    letter-spacing: -0.3px;
}

/* Toggle Icon styling */
.kd-port-faq-icon {
    font-size: 20px;
    color: #0d2b45;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

/* Panels Body Content styling */
.kd-port-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 32px 0 80px;
    /* Aligns paragraph indentation perfectly under heading */
}

.kd-port-faq-body p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 0px;
}

/* =====================================================
    DYNAMIC ACTIVE TRANSITIONS (JavaScript State Classes)
===================================================== */
.kd-port-faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.kd-port-faq-item.active .kd-port-faq-body {
    max-height: 300px;
    /* Adjust or eliminate via JS if content heights fluctuate heavily */
    padding: 0 32px 24px 80px;
}

.kd-port-faq-item.active .kd-port-faq-icon {
    transform: rotate(45deg);
    /* Seamlessly alters a single + icon asset into a neat close 'x' icon */
}

/* =====================================================
    RIGHT SIDE IMAGE BOUNDARY MATCH FIX
===================================================== */

.kd-port-faq-image-wrap {
    width: 100%;
    height: 95vh;
    min-height: 300px;
    overflow: hidden;
    border-radius: 34px;
}

.kd-port-faq-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =====================================================
    RESPONSIVE LAYOUT OPTIMIZATIONS
===================================================== */
@media (max-width: 991px) {
    .kd-port-faq-title {
        font-size: 54px;
        letter-spacing: -1px;
    }

    .kd-port-faq-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .kd-port-faq-image-wrap {
        height: 480px;
        /* Ensures dynamic display viewport mapping safety across smaller screen breakpoints */
    }

    .kd-port-faq-body {
        padding: 0 24px 0 72px;
    }

    .kd-port-faq-item.active .kd-port-faq-body {
        padding: 0 24px 20px 72px;
    }
}

/* =====================================================
    BLOG
===================================================== */

.kd-port-blog-sec {
    padding: 120px 0;
    background: var(--kd-bg);
}

/* =====================================================
    TOP
===================================================== */

.kd-port-blog-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 60px;
}

.kd-port-blog-top-left {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* =====================================================
    LABEL
===================================================== */

.kd-port-blog-label {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 1px;
}

.kd-port-blog-label span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--kd-orange);
}

/* =====================================================
    TITLE
===================================================== */

.kd-port-blog-title {
    color: var(--kd-black);

    font-size: 82px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: -4px;

    margin: 0;
}

/* =====================================================
    RIGHT
===================================================== */

.kd-port-blog-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* =====================================================
    ARROWS
===================================================== */

.kd-port-blog-arrows {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kd-port-blog-arrows button {
    width: 54px;
    height: 54px;

    border: none;
    border-radius: 50%;

    background: var(--kd-black);
    color: var(--kd-white);

    transition: 0.4s ease;
}

.kd-port-blog-arrows button:hover {
    transform: translateY(-4px);
}

/* =====================================================
    BUTTON
===================================================== */

.kd-port-blog-btn {
    height: 58px;
    padding: 0 26px;

    border-radius: 60px;

    background: var(--kd-black);

    display: inline-flex;
    align-items: center;
    gap: 14px;

    color: var(--kd-white);
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    transition: 0.4s ease;
}

.kd-port-blog-btn span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--kd-orange);
}

.kd-port-blog-btn:hover {
    transform: translateY(-4px);

    color: var(--kd-white);
}

/* =====================================================
    SLIDER
===================================================== */

.kd-port-blog-slider {
    margin: 0 -14px;
}

.kd-port-blog-slide {
    padding: 0 14px;
}

/* =====================================================
    CARD
===================================================== */

.kd-port-blog-card {
    display: block;

    text-decoration: none;
}

/* =====================================================
    IMAGE
===================================================== */

.kd-port-blog-image-wrap {
    position: relative;

    aspect-ratio: 1.15/1;

    border-radius: 24px;
    overflow: hidden;

    margin-bottom: 26px;
}

.kd-port-blog-image-wrap img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s ease,
        filter 0.6s ease;
}

.kd-port-blog-card:hover img {
    transform: scale(1.06);

    filter: brightness(0.92);
}

/* =====================================================
    HOVER BUTTON
===================================================== */

.kd-port-blog-hover-btn {
    position: absolute;
    top: 18px;
    right: 18px;

    width: 58px;
    height: 58px;

    border-radius: 18px;

    background: rgba(0, 0, 0, 0.82);

    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--kd-white);

    font-size: 18px;

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(20px) rotate(-10deg);

    transition: 0.45s ease;
}

.kd-port-blog-card:hover .kd-port-blog-hover-btn {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0) rotate(0deg);
}

/* =====================================================
    CONTENT
===================================================== */

.kd-port-blog-content span {
    display: block;

    color: #7a7a7a;

    font-size: 15px;
    font-weight: 500;

    margin-bottom: 14px;
}

.kd-port-blog-content h3 {
    color: var(--kd-black);
    font-size: 2rem;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1px;
    transition: 0.4s ease;
}

.kd-port-blog-card:hover .kd-port-blog-content h3 {
    opacity: 0.7;
}


/* =====================================================
    CTA
===================================================== */

.kd-port-cta-sec {
    position: relative;

    padding: 180px 0;

    background: #000;

    border-radius: 34px;

    overflow: hidden;
}

/* =====================================================
    TOP MARQUEE
===================================================== */

.kd-port-cta-move-text {
    position: absolute;
    top: 24px;
    left: 0;

    width: 100%;

    overflow: hidden;

    z-index: 10;
}

.kd-port-cta-marquee {
    display: flex;
    gap: 60px;

    width: max-content;

    animation: kdPortMarquee 12s linear infinite;
}

.kd-port-cta-marquee span {
    color: rgba(255, 255, 255, 0.18);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 3px;

    white-space: nowrap;
}

/* =====================================================
    GRID
===================================================== */

.kd-port-cta-grid {
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(rgba(255, 255, 255, 0.12) 1px,
            transparent 1px);

    background-size: 28px 28px;

    mask-image:
        radial-gradient(circle at center,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0) 75%);

    opacity: 0.55;

    z-index: 1;
}

/* =====================================================
    CONTENT
===================================================== */

.kd-port-cta-content {
    position: relative;
    z-index: 20;

    text-align: center;
}

/* =====================================================
    TITLE
===================================================== */

.kd-port-cta-title {
    color: var(--kd-white);

    font-size: 130px;
    line-height: 0.92;
    font-weight: 700;

    letter-spacing: -7px;

    max-width: 1100px;

    margin:
        0 auto 60px;
}

/* =====================================================
    BUTTON
===================================================== */

.kd-port-cta-btn {
    height: 66px;
    padding: 0 32px;

    border-radius: 60px;

    background: var(--kd-white);

    display: inline-flex;
    align-items: center;
    gap: 14px;

    color: var(--kd-black);
    text-decoration: none;

    font-size: 17px;
    font-weight: 600;

    position: relative;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.kd-port-cta-btn span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--kd-orange);
}

.kd-port-cta-btn:hover {
    transform: translateY(-4px);

    color: var(--kd-black);

    box-shadow:
        0 15px 40px rgba(255, 255, 255, 0.18);
}

/* =====================================================
    CURSOR GLOW
===================================================== */

.kd-port-cta-cursor {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    pointer-events: none;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, 0.07) 0%,
            rgba(255, 255, 255, 0) 70%);

    transform:
        translate(-50%, -50%);

    z-index: 2;

    transition:
        transform 0.08s linear;
}

/* =====================================================
    ANIMATION
===================================================== */

@keyframes kdPortMarquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

/* =====================================================
    FOOTER
===================================================== */

.kd-port-footer-sec {
    padding: 10px 0 0;
    background: var(--kd-bg);
}

/* =====================================================
    WRAP
===================================================== */

.kd-port-footer-wrap {
    background: rgba(255, 255, 255, 0.55);

    border-radius: 34px 34px 0 0;

    padding: 60px 40px 30px;

    overflow: hidden;

    position: relative;
}

/* =====================================================
    MENU TITLE
===================================================== */

.kd-port-footer-menu-title {
    color: var(--kd-black);

    font-size: 22px;
    font-weight: 700;

    margin-bottom: 26px;
}

/* =====================================================
    MENU
===================================================== */

.kd-port-footer-menu {
    list-style: none;

    padding: 0;
    margin: 0;
}

.kd-port-footer-menu li {
    margin-bottom: 14px;
}

.kd-port-footer-menu a {
    color: #2d2d2d;

    text-decoration: none;

    font-size: 16px;
    font-weight: 500;

    position: relative;

    transition: 0.4s ease;
}

.kd-port-footer-menu a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -4px;

    width: 0;
    height: 1px;

    background: var(--kd-black);

    transition: 0.4s ease;
}

.kd-port-footer-menu a:hover::after {
    width: 100%;
}

.kd-port-footer-menu a:hover {
    color: var(--kd-black);
}

/* =====================================================
    RIGHT
===================================================== */

.kd-port-footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* =====================================================
    SOCIAL
===================================================== */

.kd-port-footer-social {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 40px;
}

.kd-port-footer-social a {
    color: var(--kd-black);

    font-size: 28px;

    transition: 0.4s ease;
}

.kd-port-footer-social a:hover {
    transform:
        translateY(-4px) rotate(6deg);
}

/* =====================================================
    NEWSLETTER
===================================================== */

.kd-port-footer-newsletter {
    margin-bottom: 40px;
}

.kd-port-footer-newsletter h5 {
    font-size: 16px;
    font-weight: 500;

    margin-bottom: 18px;
}

.kd-port-footer-newsletter form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kd-port-footer-newsletter input {
    width: 240px;
    height: 64px;

    border: none;
    outline: none;

    border-radius: 20px;

    background: rgba(0, 0, 0, 0.04);

    padding: 0 22px;

    font-size: 16px;
}

.kd-port-footer-newsletter button {
    height: 64px;
    padding: 0 28px;

    border: none;
    border-radius: 20px;

    background: var(--kd-black);

    color: var(--kd-white);

    font-size: 16px;
    font-weight: 600;

    transition: 0.4s ease;
}

.kd-port-footer-newsletter button:hover {
    transform: translateY(-4px);
}

/* =====================================================
    MINI LINKS
===================================================== */

.kd-port-footer-mini-links {
    display: flex;
    align-items: center;
    gap: 24px;

    flex-wrap: wrap;
}

.kd-port-footer-mini-links a {
    color: #555;

    text-decoration: none;

    font-size: 14px;

    transition: 0.4s ease;
}

.kd-port-footer-mini-links a:hover {
    color: var(--kd-black);
}

/* =====================================================
    MIDDLE
===================================================== */

.kd-port-footer-middle {
    margin-top: 70px;
    margin-bottom: 40px;
}

.kd-port-footer-middle p {
    color: #555;

    font-size: 14px;

    display: flex;
    align-items: center;
    gap: 14px;

    flex-wrap: wrap;
}

.kd-port-footer-middle span {
    opacity: 0.4;
}

/* =====================================================
    BRAND
===================================================== */

.kd-port-footer-brand-wrap {
    overflow: hidden;
}

.kd-port-footer-brand {
    color: var(--kd-black);

    font-size: 220px;
    line-height: 0.85;
    font-weight: 700;

    letter-spacing: -12px;

    margin: 0;

    display: flex;
    align-items: flex-end;

    flex-wrap: wrap;
}

/* CHARACTER */
.kd-port-footer-brand span {
    display: inline-block;

    opacity: 0;

    transform:
        translateY(140px) rotate(8deg);

    animation:
        kdPortFooterChar 0.8s forwards;
}

/* DELAYS */
.kd-port-footer-brand span:nth-child(1) {
    animation-delay: 0.05s;
}

.kd-port-footer-brand span:nth-child(2) {
    animation-delay: 0.1s;
}

.kd-port-footer-brand span:nth-child(3) {
    animation-delay: 0.15s;
}

.kd-port-footer-brand span:nth-child(4) {
    animation-delay: 0.2s;
}

.kd-port-footer-brand span:nth-child(5) {
    animation-delay: 0.25s;
}

.kd-port-footer-brand span:nth-child(6) {
    animation-delay: 0.3s;
}

.kd-port-footer-brand span:nth-child(7) {
    animation-delay: 0.35s;
}

.kd-port-footer-brand span:nth-child(8) {
    animation-delay: 0.4s;
}

.kd-port-footer-brand sup {
    font-size: 70px;

    top: -1em;

    position: relative;
}

/* =====================================================
    ANIMATION
===================================================== */

@keyframes kdPortFooterChar {

    to {

        opacity: 1;

        transform:
            translateY(0) rotate(0deg);

    }

}

/* =====================================================
    CASE HERO
===================================================== */

.kd-port-case-hero-sec {
    padding: 40px 0 0;
    background: var(--kd-bg);
}

/* =====================================================
    TOP
===================================================== */

.kd-port-case-top {
    display: flex;
    align-items: center;
    gap: 42px;

    margin-bottom: 24px;
}

.kd-port-case-brand {
    color: var(--kd-black);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}

.kd-port-case-category {
    color: #7a7a7a;

    font-size: 15px;
    font-weight: 500;
}

/* =====================================================
    TITLE
===================================================== */

.kd-port-case-title {
    max-width: 980px;

    color: var(--kd-black);

    font-size: 86px;
    line-height: 0.95;
    font-weight: 700;

    letter-spacing: -5px;

    margin-bottom: 46px;
}

/* =====================================================
    IMAGE WRAP
===================================================== */

.kd-port-case-image-wrap {
    position: relative;

    display: block;

    width: 100%;
    height: 950px;

    border-radius: 26px;

    overflow: hidden;

    text-decoration: none;

    cursor: pointer;
}

/* =====================================================
    IMAGE
===================================================== */

.kd-port-case-image-wrap img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1);

    transition:
        transform 1.6s cubic-bezier(.22, 1, .36, 1),
        filter 0.8s ease;
}

/* HOVER */

.kd-port-case-image-wrap:hover img {

    transform: scale(1.08);

    filter: brightness(0.95);

}

/* =====================================================
    BUY BUTTON
===================================================== */

.kd-port-case-buy-btn {
    position: absolute;

    right: 18px;
    bottom: 18px;

    height: 58px;
    padding: 0 26px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(10px);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--kd-black);

    font-size: 15px;
    font-weight: 600;

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.kd-port-case-image-wrap:hover .kd-port-case-buy-btn {

    transform: translateY(-4px);

    background: #ffffff;

}

/* =====================================================
    INTRODUCTION SECTION
===================================================== */
/* =====================================================
    INTRO SECTION
===================================================== */

.kd-port-intro-sec {

    position: relative;

    overflow: hidden;

    padding: 120px 0;

    background: var(--kd-bg);

}

/* =====================================================
    CONTENT
===================================================== */

.kd-port-intro-content {

    max-width: 100%;

}

/* =====================================================
    EYEBROW
===================================================== */

.kd-port-intro-eyebrow {

    display: inline-block;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.16em;

    color: var(--kd-black);

    margin-bottom: 28px;

}

/* =====================================================
    TITLE
===================================================== */

.kd-port-intro-title {

    font-size: clamp(42px, 5vw, 88px);

    line-height: 0.95;

    font-weight: 700;

    letter-spacing: -0.05em;

    color: var(--kd-black);

    margin-bottom: 34px;

}

/* =====================================================
    TEXT
===================================================== */

.kd-port-intro-text {

    font-size: 18px;

    line-height: 1.9;

    color: #565656;

    max-width: 520px;

    margin: 0;

}

/* =====================================================
    IMAGE WRAP
===================================================== */

.kd-port-intro-image-wrap {

    position: relative;

    width: 100%;

    height: 820px;

    overflow: hidden;

    border-radius: 28px;

    cursor: pointer;

    transition:
        transform 0.6s ease,
        box-shadow 0.6s ease;

}

/* =====================================================
    IMAGE
===================================================== */

.kd-port-intro-image-wrap img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 1.5s cubic-bezier(.22, 1, .36, 1),
        filter 0.6s ease;

}

/* =====================================================
    HOVER
===================================================== */

.kd-port-intro-image-wrap:hover {

    transform: translateY(-8px);

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.14);

}

.kd-port-intro-image-wrap:hover img {

    transform: scale(1.08);

    filter: brightness(0.96);

}


/* =====================================================
    HOME VERSE / PROJECT DETAILS
===================================================== */
/* =====================================================
    PROJECT SECTION
===================================================== */

.kd-port-proj-sec {

    padding: 120px 0;

    background: var(--kd-bg);

    overflow: hidden;

}

/* =====================================================
    BRAND
===================================================== */

.kd-port-proj-brand {

    font-size: clamp(48px, 5vw, 92px);

    line-height: 0.95;

    font-weight: 700;

    letter-spacing: -0.05em;

    color: var(--kd-black);

    margin: 0;

}

/* =====================================================
    DESCRIPTION
===================================================== */

.kd-port-proj-desc {

    font-size: clamp(28px, 3vw, 54px);

    line-height: 1.1;

    font-weight: 600;

    letter-spacing: -0.03em;

    color: var(--kd-black);

    margin-bottom: 28px;

    max-width: 900px;

}

/* =====================================================
    SUB DESC
===================================================== */

.kd-port-proj-subdesc {

    font-size: 20px;

    line-height: 1.8;

    color: #5e5e5e;

    max-width: 620px;

    margin: 0;

}

/* =====================================================
    BOTTOM ROW
===================================================== */

.kd-port-proj-bottom-row {

    margin-top: 120px;

}

/* =====================================================
    LOGO
===================================================== */

.kd-port-proj-logo {

    width: 140px;
    height: 140px;

    border-radius: 32px;

    background: #111;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    overflow: hidden;

    transition:
        transform 0.6s ease,
        border-radius 0.6s ease;
}

/* ICON */

.kd-port-proj-logo i {

    font-size: 52px;

    color: #dbf86e;

    transition:
        transform 0.6s ease;

}

/* HOVER */

.kd-port-proj-logo:hover {

    transform: translateY(-10px);

    border-radius: 40px;

}

.kd-port-proj-logo:hover i {

    transform:
        scale(1.08) rotate(-6deg);

}

/* =====================================================
    META
===================================================== */

.kd-port-proj-meta {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 40px;

    flex-wrap: wrap;

    padding-top: 24px;

    border-top: 1px solid rgba(0, 0, 0, 0.1);

}

/* =====================================================
    META ITEM
===================================================== */

.kd-port-meta-item {

    min-width: 180px;

}

.kd-port-meta-item span {

    display: block;

    font-size: 14px;

    font-weight: 500;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color: #7b7b7b;

    margin-bottom: 14px;

}

.kd-port-meta-item strong {

    display: block;

    font-size: 28px;

    line-height: 1.2;

    font-weight: 700;

    color: var(--kd-black);

}


/* =====================================================
    TIMELINE SECTION
===================================================== */
.kd-port-timeline-sec {
    padding: 120px 0;
    background-color: #050505;
    color: #fff;
}

.kd-port-timeline-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.kd-port-timeline-title {
    font-size: 58px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.kd-port-timeline-title span {
    color: #b5b2ff;
}

.kd-port-timeline-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: #999;
    margin: 0;
}

.kd-port-timeline-row {
    position: relative;
}

.kd-port-timeline-col {
    padding: 0 40px;
    position: relative;
}

/* Vertical separator line between columns */
.kd-port-timeline-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
}

.kd-port-timeline-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.kd-port-timeline-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.kd-port-timeline-duration {
    font-size: 16px;
    color: #b3b3b3;
    font-weight: 500;
}

.kd-port-timeline-phase {
    font-size: 38px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.kd-port-timeline-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.kd-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s ease;
    cursor: pointer;
}

.kd-pill-dark {
    background-color: #2a2a2a;
    color: #d1d1d1;
}

.kd-pill-purple {
    background-color: #b5b2ff;
    color: #000;
}

/* Hover effects for all pills */
.kd-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.kd-pill-dark:hover {
    background-color: #b5b2ff;
    color: #000;
}

.kd-pill-purple:hover {
    background-color: #fff;
    color: #000;
}

/* =====================================================
    CHALLENGES ACCORDION SECTION
===================================================== */
.kd-port-challenges-sec {
    padding: 120px 0;
    background-color: #1b1924;
    color: #fff;
}

.kd-port-challenges-container {
    max-width: 1200px;
    margin: 0 auto;
}

.kd-port-challenges-title {
    font-size: 38px;
    font-weight: 300;
    color: #d1d1d1;
    margin-bottom: 70px;
    line-height: 1.4;
    text-align: center;
}

.kd-port-challenges-title strong {
    font-weight: 700;
    color: #fff;
}

.kd-port-accordion-item {
    margin-bottom: 40px;
}

.kd-port-accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 30px;
    cursor: pointer;
    text-align: left;
    transition: 0.3s ease;
}

.kd-port-accordion-header:hover {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.kd-port-accordion-header.active {
    border-bottom-color: transparent;
}

.kd-port-acc-title {
    display: flex;
    align-items: center;
    gap: 25px;
}

.kd-port-acc-num {
    width: 65px;
    height: 65px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
}

.kd-port-acc-title h3 {
    font-size: 28px;
    font-weight: 300;
    color: #d1d1d1;
    margin: 0;
    line-height: 1.25;
}

.kd-port-acc-icon {
    font-size: 20px;
    color: #888;
    transition: transform 0.4s ease;
}

/* Accordion Toggle Icon Animation */
.kd-port-accordion-header.active .kd-port-acc-icon {
    transform: rotate(180deg);
    color: #fff;
}

.kd-port-accordion-body {
    display: none;
    padding: 40px 0 20px;
}

.kd-port-prob-sol-head {
    margin-bottom: 50px;
    padding-left: 90px;
}

.kd-pill-red {
    display: inline-block;
    background-color: #ff5e5e;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 30px;
}

.kd-pill-yellow {
    display: inline-block;
    background-color: #e5f512;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 30px;
}

.kd-port-acc-block {
    padding-left: 90px;
    margin-bottom: 60px;
}

.kd-port-acc-subhead {
    margin-bottom: 25px;
}

.kd-port-acc-subhead span {
    display: inline-block;
    background: #fff;
    color: #123456;
    /* Dark blue/black */
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 4px;
}

.kd-port-acc-text {
    font-size: 15px;
    color: #c9c9c9;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

.kd-port-acc-text strong {
    color: #fff;
    font-weight: 700;
}

.kd-port-acc-quote {
    background: rgba(0, 0, 0, 0.2);
    padding: 24px;
    border-radius: 8px;
    font-size: 13px;
    font-style: italic;
    color: #888;
    text-align: center;
    line-height: 1.6;
    margin-top: 30px;
}


/* =====================================================
    EMPATHY MAP SECTION
===================================================== */
.kd-port-empathy-sec {
    padding: 100px 0;
    background-color: #050505;
}

.kd-port-empathy-container {
    max-width: 1100px;
    margin: 0 auto;
}

.kd-port-empathy-title {
    font-size: 22px;
    color: #a0a0a0;
    font-weight: 400;
    margin-bottom: 50px;
    margin-left: 10px;
}

.kd-port-empathy-row {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
}

.kd-port-empathy-card {
    background-color: #151515;
    padding: 50px;
    height: 100%;
    min-height: 440px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Rounded Corners matching the flower petal shape */
.kd-port-empathy-tl {
    border-radius: 120px 120px 0 120px;
}

.kd-port-empathy-tr {
    border-radius: 120px 120px 120px 0;
}

.kd-port-empathy-bl {
    border-radius: 120px 0 120px 120px;
}

.kd-port-empathy-br {
    border-radius: 0 120px 120px 120px;
}

/* Image Card Overrides */
.kd-port-empathy-img-card {
    padding: 0;
    background-color: transparent;
}

.kd-port-empathy-img-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.kd-port-empathy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.kd-port-empathy-img-card:hover .kd-port-empathy-img {
    transform: scale(1.1);
}

.kd-port-empathy-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 80px 40px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    text-align: center;
    color: #fff;
    pointer-events: none;
    z-index: 2;
}

.kd-port-empathy-img-overlay h4 {
    font-size: 34px !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
}

.kd-port-empathy-img-overlay p {
    font-size: 16px;
    color: #d1d1d1;
    margin: 0;
}

/* Text Content */
.kd-port-empathy-card h4 {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 35px;
}

.kd-port-empathy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kd-port-empathy-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 22px;
    font-size: 14px;
    color: #c9c9c9;
    line-height: 1.6;
}

.kd-port-empathy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background-color: #888;
    border-radius: 50%;
}

/* Quotes Slider */
.kd-port-empathy-quote-icon {
    font-size: 42px;
    color: #444;
    margin-top: 10px;
    margin-bottom: 25px;
}

.kd-port-empathy-slider {
    margin-top: auto;
    margin-bottom: auto;
}

.kd-port-empathy-slide h3 {
    font-size: 28px;
    line-height: 1.4;
    font-weight: 300;
    color: #fff;
    margin: 0;
}

/* Slick Dots adjustments for quotes */
.kd-port-empathy-slider .slick-dots {
    bottom: -40px;
    text-align: left;
}

.kd-port-empathy-slider .slick-dots li {
    margin: 0 4px;
}

.kd-port-empathy-slider .slick-dots li button::before {
    color: #fff;
    opacity: 0.2;
}

.kd-port-empathy-slider .slick-dots li.slick-active button::before {
    color: #fff;
    opacity: 1;
}

/* =====================================================
    PRESTO HERO
===================================================== */

.kd-port-presto-hero-sec {
    padding: 80px 0 120px;

    background: #000;

    overflow: hidden;
}

/* =====================================================
    TITLE
===================================================== */

.kd-port-presto-hero-head {
    text-align: center;

    margin-bottom: 60px;
}

.kd-port-presto-hero-title {
    color: #fff;

    font-size: 110px;
    line-height: 0.95;
    font-weight: 300;

    letter-spacing: -5px;

    margin: 0;
}

/* PRESTO */

.kd-port-presto-hero-title span {
    color: #dbf86e;

    font-weight: 500;
}

/* BOLD */

.kd-port-presto-hero-title strong {
    font-weight: 700;
}

/* =====================================================
    MAIN WRAP
===================================================== */

.kd-port-presto-main-wrap {
    position: relative;

    max-width: 1350px;
    margin: 0 auto;

    height: 700px;

    border-radius: 34px;

    overflow: hidden;
}

/* =====================================================
    BACKGROUND SLIDER
===================================================== */

.kd-port-presto-bg-slider,
.kd-port-presto-bg-slide {
    height: 100%;
}

.kd-port-presto-bg-slide {
    overflow: hidden;
}

.kd-port-presto-bg-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1.8s cubic-bezier(.22, 1, .36, 1),
        filter 0.8s ease;
}

/* ZOOM */

.kd-port-presto-bg-slide:hover img {

    transform: scale(1.08);

    filter: brightness(0.92);

}

/* =====================================================
    PHONE
===================================================== */

.kd-port-presto-phone-wrap {
    position: absolute;

    left: 50%;
    bottom: -20px;

    transform:
        translateX(-50%) rotate(-36deg);

    width: 420px;

    z-index: 20;

    pointer-events: none;
}

.kd-port-presto-phone-wrap img {
    width: 100%;

    display: block;

    filter:
        drop-shadow(0 40px 100px rgba(0, 0, 0, 0.45));
}

/* =====================================================
    SLICK FIX
===================================================== */

.kd-port-presto-bg-slider .slick-list,
.kd-port-presto-bg-slider .slick-track {
    height: 100%;
}

/* =====================================================
    RESPONSIVE
===================================================== */

@media(max-width:1199px) {

    .kd-port-presto-hero-title {
        font-size: 82px;
    }

    .kd-port-presto-main-wrap {
        height: 560px;
    }

    .kd-port-presto-phone-wrap {
        width: 340px;
    }

}

/* =====================================================
    TARGET AUDIENCE SECTION
===================================================== */
.kd-port-audience-sec {
    padding: 120px 0;
    background-color: #050505;
    color: #fff;
}

.kd-port-audience-container {
    max-width: 1100px;
    margin: 0 auto;
}

.kd-port-audience-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    color: #c9c9c9;
    margin-bottom: 40px;
}

.kd-port-audience-tag .dot {
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
}

.kd-port-audience-title {
    font-size: 46px;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 90px;
    letter-spacing: -1px;
}

.kd-port-audience-title span.dim {
    color: #777;
}

/* Three Columns with Dividers */
.kd-port-audience-col {
    position: relative;
    padding: 0 50px;
}

/* Vertical Gradient Dividers */
.kd-port-audience-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5%;
    bottom: 5%;
    width: 1px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(223, 235, 119, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
}

.kd-port-audience-col:first-child {
    padding-left: 0;
}

.kd-port-audience-col:last-child {
    padding-right: 0;
}

.kd-port-audience-col-title {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #fff;
}

/* Bars */
.kd-port-audience-bar-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.kd-port-audience-percent {
    font-size: 15px;
    color: #999;
    width: 35px;
}

.kd-port-audience-bar {
    background-color: #1a1a1a;
    color: #999;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 12px;
    min-width: 100px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.kd-port-audience-bar.active {
    background-color: #dfeb77;
    color: #000;
    font-weight: 500;
}

/* =====================================================
    TYPOGRAPHY & COLOR SECTION
===================================================== */
.kd-port-typo-sec {
    padding: 100px 0;
    background-color: #0c0814;
    overflow: hidden;
}

.kd-port-typo-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    /* Padding to allow floating pills space */
}

/* Main Card */
.kd-port-typo-card {
    position: relative;
    width: 100%;
    min-height: 540px;
    background: radial-gradient(circle at top left, #60459c 0%, #301f56 50%, #17112e 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 60px;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Alphabet Top Right */
.kd-port-typo-alphabet {
    align-self: flex-end;
    text-align: center;
    color: #e0e0e0;
    font-size: 22px;
    line-height: 1.6;
    letter-spacing: 2px;
    font-weight: 300;
    font-family: 'Satoshi', sans-serif;
}

/* Center Title */
.kd-port-typo-main {
    align-self: center;
    font-size: 130px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -2px;
    font-family: 'Satoshi', sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Colors Row */
.kd-port-typo-colors {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.kd-port-color-pill {
    padding: 24px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    flex: 1;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Floating Parallax Pills */
.kd-port-typo-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #888;
    font-size: 16px;
    padding: 16px 45px;
    border-radius: 40px;
    z-index: 5;
    pointer-events: none;
    /* Let mouse interact with wrap underneath */
}

.kd-port-typo-light {
    top: 10px;
    left: -20px;
    transform: rotate(-30deg);
}

.kd-port-typo-regular {
    top: 45%;
    left: -40px;
    transform: rotate(20deg);
}

.kd-port-typo-medium {
    top: -20px;
    right: 35%;
    transform: rotate(-15deg);
}

.kd-port-typo-semibold {
    top: 45%;
    right: -40px;
    transform: rotate(15deg);
}

/* =====================================================
    GRID STYLE GUIDE SECTION
===================================================== */
.kd-port-grid-sec {
    padding: 120px 0;
    background-color: #161616;
}

.kd-port-grid-row {
    max-width: 1200px;
    margin: 0 auto;
}

.kd-port-grid-content {
    padding-right: 50px;
}

.kd-port-grid-title {
    font-size: 52px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.kd-port-grid-desc {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.kd-port-grid-specs {
    display: flex;
    gap: 80px;
    margin-top: 50px;
}

.kd-port-grid-spec-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.kd-port-grid-spec-item {
    display: flex;
    align-items: center;
    gap: 30px;
}

.kd-port-grid-spec-item .label {
    font-size: 16px;
    color: #777;
    width: 60px;
}

.kd-port-grid-spec-item .value {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

/* Phone Mockup Area */
.kd-port-grid-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}

/* Measurements */
.kd-port-measure {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: monospace;
}

.kd-port-measure-top {
    flex-direction: column;
    top: 0;
    left: 75%;
}

.kd-port-measure-right {
    top: 15%;
    right: 0;
}

.kd-port-measure-bottom {
    flex-direction: column;
    bottom: -10px;
    left: 25%;
}

.kd-port-measure-left {
    bottom: 15%;
    left: -10px;
}

/* Measurement Lines */
.kd-port-measure-line-v {
    width: 2px;
    height: 40px;
    background: #8e62ff;
    position: relative;
}

.kd-port-measure-line-v::before,
.kd-port-measure-line-v::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #e5f512;
    border-radius: 50%;
}

.kd-port-measure-line-v::before {
    top: 0;
}

.kd-port-measure-line-v::after {
    bottom: 0;
}

.kd-port-measure-line-h {
    height: 2px;
    width: 40px;
    background: #8e62ff;
    position: relative;
}

.kd-port-measure-line-h::before,
.kd-port-measure-line-h::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #e5f512;
    border-radius: 50%;
}

.kd-port-measure-line-h::before {
    left: 0;
}

.kd-port-measure-line-h::after {
    right: 0;
}

/* Phone Frame */
.kd-port-grid-phone-frame {
    width: 330px;
    height: 670px;
    border: 5px solid #dcdcdc;
    border-radius: 45px;
    position: relative;
    background: #0f0f0f;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.kd-port-grid-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: #000;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.kd-port-grid-screen {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0 16px;
}

.kd-port-grid-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 16px;
}

.grid-col {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    height: 100%;
}

.kd-port-grid-app-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
    pointer-events: none;
    letter-spacing: 5px;
    z-index: 5;
}

/* =====================================================
    UI DESIGN BREAKDOWN SECTION
===================================================== */

.kd-port-uidesign-sec {

    padding: 140px 0;

    background: #fdfcf8;

    position: relative;

}

/* =====================================================
    CONTAINER
===================================================== */

.kd-port-uidesign-sec .container-fluid {

    max-width: 1440px;

    margin: 0 auto;

    padding-inline: 40px;

}

/* =====================================================
    HEADER
===================================================== */

.kd-port-uidesign-header {

    margin-bottom: 120px;

}

/* TAG */

.kd-port-uidesign-tag {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: 13px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    color: #666;

    margin-bottom: 26px;

}

.kd-port-uidesign-tag::before {

    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #ff4d1f;

}

/* TITLE */

.kd-port-uidesign-main-title {

    font-size: clamp(54px, 6vw, 110px);

    line-height: 0.95;

    font-weight: 700;

    letter-spacing: -0.05em;

    color: #111;

    margin: 0;

}

/* =====================================================
    ROW
===================================================== */

.kd-port-uidesign-row {

    align-items: center;

    min-height: 700px;

    margin-bottom: 160px;

}

.kd-port-uidesign-row:last-child {

    margin-bottom: 0;

}

/* =====================================================
    TEXT COLUMN
===================================================== */

.kd-port-uidesign-text-col {

    position: relative;

    z-index: 5;

    display: flex;

    align-items: center;

}

/* =====================================================
    CONTENT
===================================================== */

.kd-port-uidesign-content {

    width: 100%;

    max-width: 520px;

    display: block;

}

/* =====================================================
    CONTENT TITLE
===================================================== */

.kd-port-uidesign-content h3 {

    font-size: clamp(34px, 3vw, 54px);

    line-height: 1;

    font-weight: 700;

    letter-spacing: -0.04em;

    margin-bottom: 28px;

    color: #111;

}

/* =====================================================
    CONTENT TEXT
===================================================== */

.kd-port-uidesign-content p {

    font-size: 18px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 40px;

}

.kd-port-uidesign-content p strong {

    color: #111;

    font-weight: 600;

}

/* =====================================================
    PILLS
===================================================== */

.kd-port-uidesign-pills {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

}

/* SINGLE PILL */

.kd-uidesign-pill {

    padding: 13px 26px;

    border-radius: 999px;

    background: #ebeae3;

    color: #555;

    font-size: 14px;

    font-weight: 500;

    cursor: pointer;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;

}

/* ACTIVE */

.kd-uidesign-pill.active {

    background: #111;

    color: #fff;

}

/* HOVER */

.kd-uidesign-pill:hover {

    transform: translateY(-3px);

}

/* =====================================================
    IMAGE COLUMN
===================================================== */

.kd-port-uidesign-img-col {

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

}

/* =====================================================
    IMAGE
===================================================== */

.kd-port-uidesign-img {
    width: 100%;
    height: 80vh;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 34px;
    display: block;
    /* margin-left: auto; */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
    transition: transform 1.2s cubic-bezier(.22, 1, .36, 1), box-shadow 0.6s ease;
}

/* HOVER */

.kd-port-uidesign-img-col:hover .kd-port-uidesign-img {

    transform: scale(1.04);

    box-shadow:
        0 50px 120px rgba(0, 0, 0, 0.16);

}



/* ========================================================
   MOODBOARD CORE & LAYOUT STYLES
   ======================================================== */
.kd-port-moodboard-sec {
    padding: 100px 0;
    background-color: #0f1013;
    color: #ffffff;
    overflow: hidden;
}

.kd-port-moodboard-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Satoshi', sans-serif;
}

.kd-port-moodboard-title span {
    color: var(--primary-accent, #9169ff);
}

.kd-port-moodboard-subtitle {
    font-size: 1.1rem;
    color: #8a8d93;
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
    IMAGE TILE ZOOM EFFECT
===================================================== */

.kd-moodboard-tile {
    overflow: hidden;
}

.kd-tile-inner img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1.2s cubic-bezier(.22, 1, .36, 1),
        filter 0.6s ease;

    will-change: transform;
}

/* HOVER */

.kd-moodboard-tile:hover .kd-tile-inner img {

    transform: scale(1.08);

    filter: brightness(0.95);

}

/* OPTIONAL PREMIUM OVERLAY */

.kd-tile-inner::after {

    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.18),
            transparent);

    opacity: 0;

    transition: opacity 0.5s ease;

    pointer-events: none;

    z-index: 1;
}

.kd-moodboard-tile:hover .kd-tile-inner::after {

    opacity: 1;

}

/* Theme Switcher Widget */
.kd-port-theme-switcher {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.kd-theme-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 30px;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.kd-theme-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.kd-theme-btn.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
}

.theme-color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

/* Moodboard CSS Grid */
.kd-moodboard-container {
    display: grid;
    grid-template-columns: 3.5fr 2fr 1fr 3.5fr;
    grid-template-rows: 2.8fr 1.6fr 1.6fr 1.6fr 0.9fr;
    gap: 20px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background-color: #002d54;
    /* Default Border Frame Color (Classic Blue) */
    padding: 20px;
    border-radius: 12px;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    aspect-ratio: 1.15;
}

/* Grid Coordinates */
#kdMoodboardTileTextureTopLeft {
    grid-column: 1;
    grid-row: 1;
}

#kdMoodboardTileDesignTopMiddle {
    grid-column: 2 / 4;
    grid-row: 1;
}

#kdMoodboardTileLifestyleTopRight {
    grid-column: 4;
    grid-row: 1 / 3;
}

#kdMoodboardTileLifestyleBottomLeft {
    grid-column: 1;
    grid-row: 2 / 5;
}

#kdMoodboardTileFeatureCenterLeft {
    grid-column: 2;
    grid-row: 2 / 4;
}

#kdMoodboardTileColorCenterRight {
    grid-column: 3;
    grid-row: 2 / 4;
}

#kdMoodboardTileEtcMiddleRight {
    grid-column: 4;
    grid-row: 3;
}

#kdMoodboardTileDesignBottomCenter {
    grid-column: 2 / 4;
    grid-row: 4;
}

#kdMoodboardTileTextureBottomRight {
    grid-column: 4;
    grid-row: 4 / 6;
}

#kdMoodboardTileColorBottomBar {
    grid-column: 1 / 4;
    grid-row: 5;
}

/* Grid Item Elements */
.kd-moodboard-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.kd-tile-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 2;
}

.kd-tile-label {
    font-family: 'Satoshi', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    user-select: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Micro-animations: Smooth scale and brightness bounce */
.kd-moodboard-tile:hover {
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* ========================================================
   THEME STYLES - Demonstrating customized targets
   ======================================================== */

/* --- 1. CLASSIC BLUE THEME --- */
.kd-theme-classic {
    background-color: #0c203b;
    /* Dark navy frame */
    border: 4px solid #0c203b;
}

.kd-theme-classic .kd-tile-texture .kd-tile-inner {
    background-color: #eceff1;
}

.kd-theme-classic .kd-tile-texture .kd-tile-label {
    color: #263238;
}

.kd-theme-classic .kd-tile-design .kd-tile-inner {
    background-color: #b0bec5;
}

.kd-theme-classic .kd-tile-design .kd-tile-label {
    color: #ffffff;
}

.kd-theme-classic .kd-tile-lifestyle .kd-tile-inner {
    background-color: #eceff1;
}

.kd-theme-classic .kd-tile-lifestyle .kd-tile-label {
    color: #263238;
}

.kd-theme-classic #kdMoodboardTileLifestyleBottomLeft .kd-tile-inner {
    background-color: #b0bec5;
    color: #ffffff;
}

/* Override classic lifestyle to make it blue */
.kd-theme-classic #kdMoodboardTileLifestyleBottomLeft .kd-tile-label {
    color: #ffffff;
}

.kd-theme-classic .kd-tile-feature .kd-tile-inner {
    background-color: #b0bec5;
}

.kd-theme-classic .kd-tile-feature .kd-tile-label {
    color: #ffffff;
}

.kd-theme-classic .kd-tile-color .kd-tile-inner {
    background-color: #eceff1;
}

.kd-theme-classic .kd-tile-color .kd-tile-label {
    color: #263238;
}

.kd-theme-classic .kd-tile-etc .kd-tile-inner {
    background-color: #b0bec5;
}

.kd-theme-classic .kd-tile-etc .kd-tile-label {
    color: #ffffff;
}


/* --- 2. CYBERPUNK NEON THEME --- */
.kd-theme-cyberpunk {
    background-color: #ff0055;
    /* Neon Pink Frame */
    border: 4px solid #ff0055;
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.4);
}

.kd-theme-cyberpunk .kd-moodboard-tile .kd-tile-inner {
    background-color: #0b0c10;
}

.kd-theme-cyberpunk .kd-tile-label {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

/* Individual customization examples */
.kd-theme-cyberpunk #kdMoodboardTileFeatureCenterLeft .kd-tile-inner {
    background-color: #00ffff;
}

.kd-theme-cyberpunk #kdMoodboardTileFeatureCenterLeft .kd-tile-label {
    color: #0b0c10;
    text-shadow: none;
}

.kd-theme-cyberpunk #kdMoodboardTileColorCenterRight .kd-tile-inner {
    background-color: #ffff00;
}

.kd-theme-cyberpunk #kdMoodboardTileColorCenterRight .kd-tile-label {
    color: #0b0c10;
    text-shadow: none;
}

.kd-theme-cyberpunk #kdMoodboardTileColorBottomBar .kd-tile-inner {
    background-color: #ff0055;
}

.kd-theme-cyberpunk #kdMoodboardTileColorBottomBar .kd-tile-label {
    color: #ffffff;
    text-shadow: none;
}


/* --- 3. WARM TERRACOTTA THEME --- */
.kd-theme-terracotta {
    background-color: #5d3629;
    /* Deep terracotta frame */
    border: 4px solid #5d3629;
}

.kd-theme-terracotta .kd-tile-texture .kd-tile-inner {
    background-color: #f7e6df;
}

.kd-theme-terracotta .kd-tile-texture .kd-tile-label {
    color: #5d3629;
}

.kd-theme-terracotta .kd-tile-design .kd-tile-inner {
    background-color: #d9886c;
}

.kd-theme-terracotta .kd-tile-design .kd-tile-label {
    color: #ffffff;
}

.kd-theme-terracotta .kd-tile-lifestyle .kd-tile-inner {
    background-color: #f4d0c4;
}

.kd-theme-terracotta .kd-tile-lifestyle .kd-tile-label {
    color: #5d3629;
}

.kd-theme-terracotta .kd-tile-feature .kd-tile-inner {
    background-color: #c06c53;
}

.kd-theme-terracotta .kd-tile-feature .kd-tile-label {
    color: #ffffff;
}

.kd-theme-terracotta .kd-tile-color .kd-tile-inner {
    background-color: #e5b3a3;
}

.kd-theme-terracotta .kd-tile-color .kd-tile-label {
    color: #5d3629;
}

.kd-theme-terracotta .kd-tile-etc .kd-tile-inner {
    background-color: #a75037;
}

.kd-theme-terracotta .kd-tile-etc .kd-tile-label {
    color: #ffffff;
}


/* --- 4. EMERALD GARDEN THEME --- */
.kd-theme-emerald {
    background-color: #12372a;
    /* Deep forest frame */
    border: 4px solid #12372a;
}

.kd-theme-emerald .kd-tile-texture .kd-tile-inner {
    background-color: #fbfbfb;
}

.kd-theme-emerald .kd-tile-texture .kd-tile-label {
    color: #12372a;
}

.kd-theme-emerald .kd-tile-design .kd-tile-inner {
    background-color: #436850;
}

.kd-theme-emerald .kd-tile-design .kd-tile-label {
    color: #fbfbfb;
}

.kd-theme-emerald .kd-tile-lifestyle .kd-tile-inner {
    background-color: #adbc9f;
}

.kd-theme-emerald .kd-tile-lifestyle .kd-tile-label {
    color: #12372a;
}

.kd-theme-emerald #kdMoodboardTileFeatureCenterLeft .kd-tile-inner {
    background-color: #436850;
}

.kd-theme-emerald #kdMoodboardTileFeatureCenterLeft .kd-tile-label {
    color: #fbfbfb;
}

.kd-theme-emerald #kdMoodboardTileColorCenterRight .kd-tile-inner {
    background-color: #fbfbfb;
}

.kd-theme-emerald #kdMoodboardTileColorCenterRight .kd-tile-label {
    color: #12372a;
}

.kd-theme-emerald .kd-tile-etc .kd-tile-inner {
    background-color: #adbc9f;
}

.kd-theme-emerald .kd-tile-etc .kd-tile-label {
    color: #12372a;
}


/* --- 5. MINIMALIST DARK THEME --- */
.kd-theme-minimalist {
    background-color: #222222;
    border: 4px solid #222222;
}

.kd-theme-minimalist .kd-moodboard-tile .kd-tile-inner {
    background-color: #111111;
    border: 1px solid #333333;
}

.kd-theme-minimalist .kd-tile-label {
    color: #888888;
}

.kd-theme-minimalist .kd-moodboard-tile:hover .kd-tile-inner {
    background-color: #ffffff;
}

.kd-theme-minimalist .kd-moodboard-tile:hover .kd-tile-label {
    color: #000000;
}


/* =====================================================
    USER TESTING SECTION
===================================================== */

.kd-port-user-testing-sec {

    padding: 140px 0;

    background: #f7f6f2;

    overflow: hidden;

}

/* =====================================================
    CONTAINER
===================================================== */

.kd-port-user-testing-sec .container-fluid {

    max-width: 1540px;

    margin: 0 auto;

    padding-inline: 40px;

}

/* =====================================================
    HEADING
===================================================== */

.kd-port-user-testing-head {

    max-width: 1500px;

    margin-bottom: 70px;

}

.kd-port-user-testing-title {

    font-size: clamp(42px, 5vw, 92px);

    line-height: 0.95;

    font-weight: 700;

    letter-spacing: -0.06em;

    color: #111;

    margin: 0;

}

/* =====================================================
    META
===================================================== */

.kd-port-user-testing-meta {

    display: flex;

    align-items: center;

    gap: 28px;

    margin-bottom: 120px;

}

/* AVATARS */

.kd-port-user-testing-avatars {

    display: flex;

    align-items: center;

}

.kd-port-user-testing-avatars img {

    width: 62px;
    height: 62px;

    border-radius: 50%;

    object-fit: cover;

    border: 4px solid #f7f6f2;

    margin-left: -18px;

}

.kd-port-user-testing-avatars img:first-child {

    margin-left: 0;

}

/* META TEXT */

.kd-port-user-testing-meta p {

    font-size: 22px;

    line-height: 1.6;

    color: #222;

    max-width: 420px;

    margin: 0;

}

/* =====================================================
    FLOW
===================================================== */

.kd-port-user-testing-flow {

    align-items: flex-start;

}

/* =====================================================
    ITEM
===================================================== */

.kd-port-user-testing-item {

    text-align: center;

}

/* LABEL */

.kd-port-user-testing-item h4 {

    font-size: 26px;

    font-weight: 600;

    margin-bottom: 34px;

    color: #111;

}

/* =====================================================
    IMAGE WRAP
===================================================== */

.kd-port-user-testing-img-wrap {

    position: relative;

    overflow: hidden;

    border-radius: 48px;

    transition:
        transform 0.6s ease,
        box-shadow 0.6s ease;

}

/* IMAGE */

.kd-port-user-testing-img-wrap img {
    width: 100%;
    display: block;
    border-radius: 48px;
    transition: transform 1.2s cubic-bezier(.22, 1, .36, 1);
    height: 80vh;
    object-fit: cover;
}

/* HOVER */

.kd-port-user-testing-img-wrap:hover {

    transform: translateY(-10px);

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.14);

}

.kd-port-user-testing-img-wrap:hover img {

    transform: scale(1.06);

}

/* ==========================================================================
   ABOUT-ME SPLIT SCROLL PAGE CUSTOM STYLES
   ========================================================================== */

/* Marquee Animation */
.kd-marquee-track {
    animation: kd-marquee 25s linear infinite;
}

.kd-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes kd-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Custom Accordion Styling */
.kd-accordion-btn::after {
    display: none;
}

.kd-accordion-btn {
    position: relative;
}

.kd-accordion-btn::before {
    content: "\f061";
    /* FontAwesome arrow-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #111;
    transition: all 0.3s ease;
}

.kd-accordion-btn:not(.collapsed)::before {
    transform: translateY(-50%) rotate(45deg);
    background-color: #111;
    color: #fff;
}

.accordion-item {
    border-color: rgba(0, 0, 0, 0.05) !important;
}

/* =====================================================
    META
===================================================== */

.kd-port-user-testing-meta {

    display: flex;

    align-items: center;

    gap: 28px;

    margin-bottom: 120px;

}

/* AVATARS */

.kd-port-user-testing-avatars {

    display: flex;

    align-items: center;

}

.kd-port-user-testing-avatars img {

    width: 62px;
    height: 62px;

    border-radius: 50%;

    object-fit: cover;

    border: 4px solid #f7f6f2;

    margin-left: -18px;

}

.kd-port-user-testing-avatars img:first-child {

    margin-left: 0;

}

/* META TEXT */

.kd-port-user-testing-meta p {

    font-size: 22px;

    line-height: 1.6;

    color: #222;

    max-width: 420px;

    margin: 0;

}

/* =====================================================
    FLOW
===================================================== */

.kd-port-user-testing-flow {

    align-items: flex-start;

}

/* =====================================================
    ITEM
===================================================== */

.kd-port-user-testing-item {

    text-align: center;

}

/* LABEL */

.kd-port-user-testing-item h4 {

    font-size: 26px;

    font-weight: 600;

    margin-bottom: 34px;

    color: #111;

}

/* =====================================================
    IMAGE WRAP
===================================================== */

.kd-port-user-testing-img-wrap {

    position: relative;

    overflow: hidden;

    border-radius: 48px;

    transition:
        transform 0.6s ease,
        box-shadow 0.6s ease;

}

/* IMAGE */

.kd-port-user-testing-img-wrap img {
    width: 100%;
    display: block;
    border-radius: 48px;
    transition: transform 1.2s cubic-bezier(.22, 1, .36, 1);
    height: 80vh;
    object-fit: cover;
}

/* HOVER */

.kd-port-user-testing-img-wrap:hover {

    transform: translateY(-10px);

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.14);

}

.kd-port-user-testing-img-wrap:hover img {

    transform: scale(1.06);

}

/* ==========================================================================
   ABOUT-ME SPLIT SCROLL PAGE CUSTOM STYLES
   ========================================================================== */

/* Marquee Animation */
.kd-marquee-track {
    animation: kd-marquee 25s linear infinite;
}

.kd-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes kd-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Custom Accordion Styling */
.kd-accordion-btn::after {
    display: none;
}

.kd-accordion-btn {
    position: relative;
}

.kd-accordion-btn::before {
    content: "\f061";
    /* FontAwesome arrow-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #111;
    transition: all 0.3s ease;
}

.kd-accordion-btn:not(.collapsed)::before {
    transform: translateY(-50%) rotate(45deg);
    background-color: #111;
    color: #fff;
}

.accordion-item {
    border-color: rgba(0, 0, 0, 0.05) !important;
}

/* Hide scrollbar for the fixed sidebar */
#kdSidebarNav::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

#kdSidebarNav {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Stack Cards & Hover Effects */
.kd-hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kd-hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.kd-stack-card {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#contact input::placeholder,
#contact textarea::placeholder {
    color: #757575 !important;
}

#contact select option {
    background: #282828;
    color: #ffffff;
}

#contact .btn-light:hover {
    background: #e4e4e4 !important;
}

.right-scroll-content section {
    padding: 0px 20px;
}

.right-scroll-content .about-section h1 {
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.06em;
    color: #111;
    margin: 0;
}

/* =====================================================
   CASE STUDY DETAILS & COVER IMAGE (SCREENSHOT)
===================================================== */

.kd-cs-header-sec {
    background: #ffffff;
    border-top: 1px solid var(--kd-border);
    border-bottom: 1px solid var(--kd-border);
    padding: 30px 48px;
    margin-bottom: 40px;
}

.kd-cs-header-box {
    width: 100%;
}

.kd-cs-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 48px !important;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #1a1a1a;
    margin: 0;
}

.kd-cs-cover-sec {
    padding: 0 48px;
    margin-bottom: 60px;
}

.kd-cs-cover-card-wrapper {
    position: relative;
    width: 100%;
}

.kd-cs-cover-card {
    position: relative;
    width: 100%;
    height: 520px;
    background: #eeeeee;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    /* Crucial for overlapping lightbulb */
    transition: background 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* PLACEHOLDER STATE */
.kd-cs-cover-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.kd-cs-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.kd-cs-placeholder-icon {
    width: 64px;
    height: 64px;
    color: #9c9c9c;
}

.kd-cs-placeholder-text {
    font-size: 17px;
    font-weight: 500;
    color: #9c9c9c;
    letter-spacing: -0.3px;
}

/* ACTIVE COVER LAYER */
.kd-cs-cover-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.kd-cs-cover-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.kd-cs-cover-card.active-mode .kd-cs-cover-media img {
    transform: scale(1);
}

/* INTERACTIVE LIGHTBULB STICKER */
.kd-cs-bulb-sticker {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(35%, -35%) rotate(15deg);
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 10;
    color: #1a1a1a;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
}

.kd-cs-bulb-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.kd-bulb-glass {
    fill: #ffffff;
    stroke: currentColor;
    transition: fill 0.4s ease, stroke 0.4s ease;
}

.kd-bulb-filament,
.kd-bulb-filament-glow {
    stroke: currentColor;
    transition: stroke 0.4s ease;
}

.kd-bulb-base {
    fill: none;
    stroke: currentColor;
}

.kd-bulb-tip {
    fill: currentColor;
}

.kd-bulb-ray {
    opacity: 0;
    transition: opacity 0.4s ease, stroke 0.4s ease;
}

/* Hover and Click states */
.kd-cs-bulb-sticker:hover {
    transform: translate(35%, -35%) rotate(22deg) scale(1.1);
    color: #000000;
}

.kd-cs-bulb-sticker.active {
    transform: translate(35%, -35%) rotate(20deg) scale(1.15);
    color: #eab308;
    /* Bright yellow */
    filter: drop-shadow(0 0 16px rgba(254, 240, 138, 0.9)) drop-shadow(0 0 6px rgba(234, 179, 8, 0.5));
}

.kd-cs-bulb-sticker.active .kd-bulb-glass {
    fill: #fef08a;
    /* Soft gold fill */
    stroke: #eab308;
}

.kd-cs-bulb-sticker.active .kd-bulb-filament,
.kd-cs-bulb-sticker.active .kd-bulb-filament-glow {
    stroke: #ca8a04;
}

.kd-cs-bulb-sticker.active .kd-bulb-ray {
    opacity: 1;
    stroke: #eab308;
    animation: kdBulbRaysPulse 1.2s infinite alternate ease-in-out;
}

/* Sparkle/Pulse animations for rays */
.kd-cs-bulb-sticker.active .ray-1 {
    animation-delay: 0.1s;
}

.kd-cs-bulb-sticker.active .ray-2 {
    animation-delay: 0.3s;
}

.kd-cs-bulb-sticker.active .ray-3 {
    animation-delay: 0.2s;
}

.kd-cs-bulb-sticker.active .ray-4 {
    animation-delay: 0.4s;
}

.kd-cs-bulb-sticker.active .ray-5 {
    animation-delay: 0s;
}

@keyframes kdBulbRaysPulse {
    0% {
        opacity: 0.4;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Creative Active Mode Cover styling */
.kd-cs-cover-card.active-mode {
    background: #111111;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.kd-cs-cover-card.active-mode .kd-cs-cover-placeholder {
    opacity: 0;
    visibility: hidden;
}

.kd-cs-cover-card.active-mode .kd-cs-cover-media {
    opacity: 1;
    visibility: visible;
}

/* RESPONSIVE STYLING */
@media (max-width: 991px) {
    .kd-cs-header-sec {
        padding: 24px 30px;
    }

    .kd-cs-title {
        font-size: 38px !important;
    }

    .kd-cs-cover-sec {
        padding: 0 30px;
    }

    .kd-cs-cover-card {
        height: 400px;
    }

    .kd-cs-bulb-sticker {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 575px) {
    .kd-cs-header-sec {
        padding: 20px 20px;
        margin-bottom: 25px;
    }

    .kd-cs-title {
        font-size: 30px !important;
        letter-spacing: -1px;
    }

    .kd-cs-cover-sec {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .kd-cs-cover-card {
        height: 280px;
    }

    .kd-cs-bulb-sticker {
        width: 42px;
        height: 42px;
        transform: translate(25%, -25%) rotate(15deg);
    }

    .kd-cs-bulb-sticker:hover,
    .kd-cs-bulb-sticker.active {
        transform: translate(25%, -25%) rotate(20deg) scale(1.1);
    }
}

/* =====================================================
   CASE STUDY DETAILS & COVER IMAGE HOVER EFFECTS
===================================================== */

.kd-cs-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}

/* Card hover scaling & brightening */
.kd-cs-cover-card:hover .kd-cs-cover-img {
    transform: scale(1.02);
    filter: brightness(1.05);
}

/* Glow lightbulb on card hover */
.kd-cs-cover-card:hover .kd-cs-bulb-sticker {
    transform: translate(35%, -35%) rotate(22deg) scale(1.15);
    color: #eab308;
    filter: drop-shadow(0 0 18px rgba(254, 240, 138, 0.95)) drop-shadow(0 0 6px rgba(234, 179, 8, 0.6));
}

.kd-cs-cover-card:hover .kd-cs-bulb-sticker .kd-bulb-glass {
    fill: #fef08a;
    stroke: #eab308;
}

.kd-cs-cover-card:hover .kd-cs-bulb-sticker .kd-bulb-ray {
    opacity: 1;
    stroke: #eab308;
    animation: kdBulbRaysPulse 1.2s infinite alternate ease-in-out;
}

/* =====================================================
   CASE STUDY CONTEXT & ANIMATED ARROW
===================================================== */

.kd-cs-context-sec {
    padding: 60px 48px;
    background: transparent;
    position: relative;
}

.relative-container {
    position: relative;
}

.kd-cs-section-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 48px !important;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.kd-cs-paragraph {
    font-size: 19px;
    line-height: 1.75;
    color: #555555;
    margin-bottom: 25px;
    max-width: 95%;
}

.kd-cs-subtext {
    font-size: 16px;
    color: #a3a3a3;
    margin: 0;
}

/* ARROW & ANNOTATION */
.kd-cs-arrow-annotation {
    position: absolute;
    top: -20px;
    right: 80px;
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.kd-cs-arrow-text {
    font-family: 'Architects Daughter', cursive, sans-serif;
    font-size: 17px;
    color: #666666;
    transform: rotate(6deg);
    margin-bottom: 5px;
    text-align: center;
    white-space: nowrap;
}

.kd-cs-arrow-svg {
    width: 120px;
    height: 120px;
    color: #111111;
    overflow: visible;
    transform-origin: top right;
    animation: arrowIndicatorFloat 2.5s infinite ease-in-out;
}

.kd-arrow-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    transition: stroke-dashoffset 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.kd-arrow-head {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    transition: stroke-dashoffset 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.4s;
}

/* Scroll triggered animation state */
.kd-cs-arrow-annotation.draw-active .kd-arrow-path,
.kd-cs-arrow-annotation.draw-active .kd-arrow-head {
    stroke-dashoffset: 0;
}

@keyframes arrowIndicatorFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(8px) rotate(-2deg);
    }
}

/* RESPONSIVE STYLING FOR CONTEXT & ARROW */
@media (max-width: 1199px) {
    .kd-cs-arrow-annotation {
        right: 20px;
        top: -30px;
        width: 200px;
    }

    .kd-cs-arrow-svg {
        width: 100px;
        height: 100px;
    }

    .kd-cs-arrow-text {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .kd-cs-context-sec {
        padding: 40px 30px;
    }

    .kd-cs-section-title {
        font-size: 38px !important;
    }

    .kd-cs-arrow-annotation {
        position: relative;
        top: 20px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        margin: 20px auto 0;
        align-items: center;
    }

    .kd-cs-arrow-svg {
        transform-origin: center;
        animation: arrowIndicatorFloatMobile 2.5s infinite ease-in-out;
    }

    .kd-cs-arrow-text {
        transform: rotate(2deg);
    }
}

@keyframes arrowIndicatorFloatMobile {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

@media (max-width: 575px) {
    .kd-cs-context-sec {
        padding: 30px 20px;
    }

    .kd-cs-section-title {
        font-size: 30px !important;
    }

    .kd-cs-paragraph {
        font-size: 16px;
        line-height: 1.65;
    }

    .kd-cs-arrow-annotation {
        width: 180px;
    }

    .kd-cs-arrow-svg {
        width: 80px;
        height: 80px;
    }

    .kd-cs-arrow-text {
        font-size: 14px;
    }
}

/* =====================================================
   CASE STUDY PROBLEM STATEMENT
===================================================== */

.kd-cs-problem-sec {
    padding: 60px 48px;
    background: transparent;
    position: relative;
}

.kd-cs-problem-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 48px !important;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.kd-cs-problem-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

/* Hover lift & shadow */
.kd-cs-problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Icon Wrap & Waves */
.kd-cs-card-icon-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.kd-cs-card-icon {
    position: relative;
    z-index: 3;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.kd-cs-card-icon svg {
    width: 30px;
    height: 30px;
}

.kd-cs-icon-waves {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kd-cs-icon-waves .wave {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(74, 85, 104, 0.06);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s ease;
}

.kd-cs-icon-waves .wave-1 {
    width: 70px;
    height: 70px;
}

.kd-cs-icon-waves .wave-2 {
    width: 95px;
    height: 95px;
}

.kd-cs-icon-waves .wave-3 {
    width: 120px;
    height: 120px;
}

/* Waves hover scaling */
.kd-cs-problem-card:hover .wave-1 {
    transform: scale(1.1);
    border-color: rgba(74, 85, 104, 0.12);
}

.kd-cs-problem-card:hover .wave-2 {
    transform: scale(1.15);
    border-color: rgba(74, 85, 104, 0.09);
}

.kd-cs-problem-card:hover .wave-3 {
    transform: scale(1.2);
    border-color: rgba(74, 85, 104, 0.06);
}

/* Titles Duplication Overlay */
.kd-cs-card-titles {
    position: relative;
    width: 100%;
    height: 30px;
    margin-bottom: 15px;
}

.kd-cs-card-title-shadow {
    position: absolute;
    top: 2.5px;
    left: -2px;
    width: 100%;
    text-align: center;
    color: rgba(0, 0, 0, 0.05);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    z-index: 1;
    margin: 0;
    transition: transform 0.4s ease, color 0.4s ease;
}

.kd-cs-card-title {
    position: relative;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a1a;
    z-index: 2;
    margin: 0;
}

/* Titles Hover interaction */
.kd-cs-problem-card:hover .kd-cs-card-title-shadow {
    transform: translate(-1.5px, 1.5px);
    color: rgba(0, 0, 0, 0.08);
}

.kd-cs-card-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #666666;
    margin: 0;
    max-width: 90%;
}

/* Problem Footer */
.kd-cs-problem-footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--kd-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kd-cs-footer-web {
    font-size: 14px;
    color: #a3a3a3;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.kd-cs-footer-sparkle {
    font-size: 18px;
    color: #a3a3a3;
}

/* RESPONSIVE STYLING */
@media (max-width: 991px) {
    .kd-cs-problem-sec {
        padding: 40px 30px;
    }

    .kd-cs-problem-title {
        font-size: 38px !important;
        margin-bottom: 30px;
    }

    .kd-cs-problem-card {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .kd-cs-problem-row {
        --bs-gutter-y: 1.5rem;
    }
}

@media (max-width: 575px) {
    .kd-cs-problem-sec {
        padding: 30px 20px;
    }

    .kd-cs-problem-title {
        font-size: 30px !important;
    }

    .kd-cs-problem-card {
        padding: 30px 15px;
    }

    .kd-cs-card-titles {
        height: 28px;
    }

    .kd-cs-card-title,
    .kd-cs-card-title-shadow {
        font-size: 19px;
    }

    .kd-cs-card-desc {
        font-size: 15px;
    }
}

/* =====================================================
   CASE STUDY CRAFTED SOLUTION & COLLAGE GRID
===================================================== */

.kd-cs-solution-sec {
    padding: 60px 48px;
    background: transparent;
    position: relative;
}

.kd-cs-solution-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 48px !important;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

/* Floating Arrow Annotation for Solution */
.kd-cs-solution-arrow {
    top: -20px;
    right: 80px;
}

/* COLLAGE CSS GRID */
.kd-cs-collage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
    margin-top: 45px;
}

.kd-cs-collage-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #eeeeee;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.kd-cs-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hover effects */
.kd-cs-collage-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    z-index: 5;
}

.kd-cs-collage-item:hover img {
    transform: scale(1.05);
}

/* Specific Grid Positions (Desktop) */
@media (min-width: 992px) {
    .kd-cs-collage-grid {
        grid-template-rows: 240px 180px 240px 240px;
        /* Heights matching layout proportions */
    }

    .item-teal-phone {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .item-slanted-apps {
        grid-column: 2;
        grid-row: 1;
    }

    .item-hand-app {
        grid-column: 3;
        grid-row: 1;
    }

    .item-mountain-phone {
        grid-column: 4;
        grid-row: 1 / 3;
    }

    .item-leaf-shadow {
        grid-column: 2 / 4;
        grid-row: 2 / 4;
    }

    .item-graffiti-phone {
        grid-column: 1;
        grid-row: 3;
    }

    .item-slanted-typo {
        grid-column: 1 / 3;
        grid-row: 4;
    }

    .item-phone-dark {
        grid-column: 3;
        grid-row: 4;
    }

    .item-floating-phone {
        grid-column: 4;
        grid-row: 3 / 5;
    }
}

/* Tablet view (2 Columns grid) */
@media (min-width: 768px) and (max-width: 991px) {
    .kd-cs-solution-sec {
        padding: 40px 30px;
    }

    .kd-cs-solution-title {
        font-size: 38px !important;
    }

    .kd-cs-collage-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-gap: 20px;
    }

    /* Reset layout for 2-column masonry or grid */
    .kd-cs-collage-item {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 300px;
    }

    .item-leaf-shadow,
    .item-slanted-typo {
        grid-column: span 2 !important;
        height: 320px;
    }
}

/* Mobile view (1 Column stacked) */
@media (max-width: 767px) {
    .kd-cs-solution-sec {
        padding: 30px 20px;
    }

    .kd-cs-solution-title {
        font-size: 30px !important;
    }

    .kd-cs-collage-grid {
        grid-template-columns: 1fr;
        grid-gap: 16px;
    }

    .kd-cs-collage-item {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 250px;
    }

    .item-leaf-shadow {
        height: 200px;
    }

    .item-slanted-typo {
        height: 220px;
    }
}

/* =====================================================
   CASE STUDY THE STORY SECTION
===================================================== */

.kd-cs-story-sec {
    padding: 60px 48px;
    background: transparent;
    position: relative;
}

.kd-cs-story-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 48px !important;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.kd-cs-story-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    /* Slightly rounded as seen in screenshot */
    padding: 40px 35px;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.kd-cs-story-card-tag {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #9c9c9c;
    /* Lighter grey heading as seen in screenshot */
    margin-bottom: 18px;
    letter-spacing: -0.3px;
    transition: color 0.4s ease;
}

.kd-cs-story-card-text {
    font-size: 16px;
    line-height: 1.65;
    color: #444444;
    margin: 0;
}

/* Hover effects for the Story Card */
.kd-cs-story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(255, 77, 31, 0.2);
    /* Highlight border on hover with portfolio theme orange */
}

.kd-cs-story-card:hover .kd-cs-story-card-tag {
    color: var(--kd-orange);
    /* Highlight tag with portfolio theme orange on hover */
}

/* RESPONSIVE OVERRIDES */
@media (max-width: 991px) {
    .kd-cs-story-sec {
        padding: 40px 30px;
    }

    .kd-cs-story-title {
        font-size: 38px !important;
        margin-bottom: 30px;
    }

    .kd-cs-story-card {
        padding: 30px 25px;
    }
}

@media (max-width: 767px) {
    .kd-cs-story-row {
        --bs-gutter-y: 1.5rem;
    }
}

@media (max-width: 575px) {
    .kd-cs-story-sec {
        padding: 30px 20px;
    }

    .kd-cs-story-title {
        font-size: 30px !important;
    }

    .kd-cs-story-card {
        padding: 25px 20px;
    }

    .kd-cs-story-card-tag {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .kd-cs-story-card-text {
        font-size: 15px;
    }
}

/* =====================================================
   CASE STUDY PROJECT GOAL SECTION
===================================================== */

.kd-cs-goal-sec {
    padding: 60px 48px;
    background: transparent;
    position: relative;
}

.kd-cs-goal-row {
    /* Bootstrap row is flex, align-items-stretch keeps heights equal */
}

.kd-cs-goal-content {
    padding-right: 30px;
}

.kd-cs-goal-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 48px !important;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.kd-cs-goal-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #888888;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
}

.kd-cs-goal-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #444444;
    margin-bottom: 30px;
}

/* Custom list layout */
.kd-cs-goal-list {
    list-style: none;
    counter-reset: goal-counter;
    padding: 0;
    margin: 0;
}

.kd-cs-goal-list li {
    counter-increment: goal-counter;
    position: relative;
    padding-left: 54px;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 20px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
}

.kd-cs-goal-list li::before {
    content: "0" counter(goal-counter);
    position: absolute;
    left: 0;
    top: 2px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #9c9c9c;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effects for list items */
.kd-cs-goal-list li:hover {
    color: var(--kd-orange);
    transform: translateX(10px);
}

.kd-cs-goal-list li:hover::before {
    color: var(--kd-orange);
    transform: scale(1.1);
}

/* Dynamic height-matching image wrapper */
.kd-cs-goal-img-wrapper {
    position: relative;
    height: 100%;
    min-height: 480px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.kd-cs-goal-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hover effects for image wrapper */
.kd-cs-goal-img-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.kd-cs-goal-img-wrapper:hover .kd-cs-goal-img {
    transform: scale(1.04);
}

/* RESPONSIVE OVERRIDES */
@media (max-width: 991px) {
    .kd-cs-goal-sec {
        padding: 40px 30px;
    }

    .kd-cs-goal-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .kd-cs-goal-title {
        font-size: 38px !important;
        margin-bottom: 20px;
    }

    .kd-cs-goal-img-wrapper {
        height: 400px;
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .kd-cs-goal-sec {
        padding: 30px 20px;
    }

    .kd-cs-goal-title {
        font-size: 30px !important;
    }

    .kd-cs-goal-img-wrapper {
        height: 300px;
    }

    .kd-cs-goal-list li {
        padding-left: 40px;
        font-size: 15px;
    }
}

/* =====================================================
   QUANTITATIVE RESEARCH
===================================================== */

.kd-qr-sec {
    padding: 100px 0;
    background: #ffffff;
    border-bottom: 1px solid #ececec;
}

.kd-qr-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #1a1a1a;
    margin-bottom: 70px;
}

.kd-qr-item {
    margin-bottom: 40px;
}

.kd-qr-item:last-child {
    margin-bottom: 0;
}

.kd-qr-heading {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #8d8d8d;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.kd-qr-list {
    margin: 0;
    padding-left: 18px;
}

.kd-qr-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 4px;
}

.kd-qr-card {
    background: #f4f4f4;
    height: 140px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding-left: 45px;
    position: relative;
}

.kd-qr-placeholder {
    width: 55%;
}

.kd-qr-placeholder span {
    display: block;
    height: 8px;
    background: #e6e6e6;
    margin-bottom: 14px;
}

.kd-qr-placeholder span:nth-child(1) {
    width: 80%;
}

.kd-qr-placeholder span:nth-child(2) {
    width: 60%;
}

.kd-qr-placeholder span:nth-child(3) {
    width: 45%;
}

.kd-qr-image {
    width: 180px;
    height: auto;
    object-fit: contain;
    margin-right: -20px;
}


/* ==========================================
   ANALYSIS SECTION
========================================== */

.kd-analysis-sec {
    padding: 100px 0;
    background: #fff;
}

.kd-analysis-title {
    font-size: 48px;
    font-weight: 500;
    color: #232323;
    margin-bottom: 45px;
    letter-spacing: -1px;
}

.kd-analysis-card {
    background: #f8f8f8;
    padding: 24px;
    min-height: 150px;
    transition: all .4s ease;
}

.kd-analysis-card:hover {
    transform: translateY(-5px);
}

.kd-analysis-card h4 {
    font-size: 20px;
    font-weight: 500;
    color: #555;
    margin-bottom: 12px;
}

.kd-analysis-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* ==========================================
   IMAGE SLIDER
========================================== */

.kd-analysis-slider-wrap {
    margin-top: 60px;
}

.kd-analysis-slider {
    margin: 0 -12px;
}

.kd-analysis-slide {
    padding: 0 12px;
}

.kd-analysis-slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* Remove Slick Overflow */
.kd-analysis-slider .slick-list {
    overflow: hidden;
}

.kd-analysis-slider .slick-track {
    display: flex;
    align-items: center;
}

.kd-analysis-swiper {
    overflow: hidden;
}

.kd-analysis-slide {
    height: auto;
}

.kd-analysis-slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.kd-idea-slider-wrap {
    position: relative;
}

.kd-idea-slider {
    overflow: hidden;
}

.kd-idea-track {
    display: flex;
    gap: 24px;
}

.kd-idea-slide {
    flex: 0 0 calc(33.333% - 16px);
}

.kd-idea-slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.kd-idea-arrow {
    width: 56px;
    height: 56px;
    border: none;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: .3s;
}

.kd-prev {
    left: -28px;
}

.kd-next {
    right: -28px;
}

.kd-idea-arrow:hover {
    transform: translateY(-50%) scale(1.08);
}

@media(max-width:991px) {

    .kd-idea-slide {
        flex: 0 0 50%;
    }

}

@media(max-width:767px) {

    .kd-idea-slide {
        flex: 0 0 85%;
    }

    .kd-prev {
        left: 10px;
    }

    .kd-next {
        right: 10px;
    }

}

/* =====================================================
   BRAINSTORMING & IDEATION
===================================================== */

.kd-idea-sec .kd-idea-title {
    font-size: 48px;
    font-weight: 500;
    color: #232323;
    margin-bottom: 50px;
}

.kd-idea-sec .kd-idea-card {
    background: #fafafa;
    border: 1px solid #efefef;
    padding: 22px;
    min-height: 145px;
}

.kd-idea-sec .kd-idea-card h4 {
    font-size: 20px;
    font-weight: 500;
    color: #777;
    margin-bottom: 12px;
}

.kd-idea-sec .kd-idea-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* =====================================================
   SLIDER
===================================================== */

.kd-idea-sec .kd-idea-slider-wrap {
    position: relative;
    margin-top: 50px;
}

.kd-idea-sec .kd-idea-slider {
    overflow: hidden;
}

.kd-idea-sec .kd-idea-track {
    display: flex;
    gap: 24px;
}

.kd-idea-sec .kd-idea-slide {
    flex: 0 0 calc(33.333% - 16px);
}

.kd-idea-sec .kd-idea-slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* =====================================================
   ARROWS
===================================================== */

.kd-idea-sec .kd-idea-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: none;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    z-index: 20;
    transition: all .35s ease;
}

.kd-idea-sec .kd-idea-arrow:hover {
    transform: translateY(-50%) scale(1.08);
}

.kd-idea-sec .kd-prev {
    left: -28px;
}

.kd-idea-sec .kd-next {
    right: -28px;
}

.kd-idea-sec .kd-idea-arrow i {
    font-size: 18px;
    color: #222;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:991px) {

    .kd-idea-sec .kd-idea-title {
        font-size: 38px;
    }

    .kd-idea-sec .kd-idea-slide {
        flex: 0 0 calc(50% - 12px);
    }

    .kd-idea-sec .kd-idea-slide img {
        height: 240px;
    }

}

@media(max-width:767px) {

    .kd-idea-sec .kd-idea-title {
        font-size: 30px;
    }

    .kd-idea-sec .kd-idea-card {
        min-height: auto;
    }

    .kd-idea-sec .kd-idea-slide {
        flex: 0 0 85%;
    }

    .kd-idea-sec .kd-idea-slide img {
        height: 220px;
    }

    .kd-idea-sec .kd-prev {
        left: 10px;
    }

    .kd-idea-sec .kd-next {
        right: 10px;
    }

    .kd-idea-sec .kd-idea-arrow {
        width: 46px;
        height: 46px;
    }

}

/* Smooth continuous movement */
.kd-analysis-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}



/* ==========================================
   BRAINSTORMING & IDEATION SECTION
========================================== */
.kd-ideation-sec {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #ececec;
}

.kd-ideation-title {
    font-size: 48px;
    font-weight: 500;
    color: #232323;
    margin-bottom: 45px;
    letter-spacing: -1px;
}

.kd-ideation-card {
    background: #f8f8f8;
    padding: 40px 35px;
    min-height: 180px;
    border-radius: 8px;
    transition: all .4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.kd-ideation-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
    border-color: rgba(255, 77, 31, 0.2);
}

.kd-ideation-card h4 {
    font-size: 22px;
    font-weight: 500;
    color: #232323;
    margin-bottom: 16px;
}

.kd-ideation-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Slider Wrap & Arrows styling */
.kd-ideation-slider-wrap {
    margin-top: 60px;
    position: relative;
}

.kd-ideation-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 24px;
}

.kd-ideation-prev,
.kd-ideation-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #dcdcdc;
    background: #ffffff;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.kd-ideation-prev:hover,
.kd-ideation-next:hover {
    background: var(--kd-orange, #ff4d1f);
    border-color: var(--kd-orange, #ff4d1f);
    color: #ffffff;
    transform: scale(1.05);
}

.kd-ideation-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    --slide-width: calc((100% - 48px) / 3);
}

@media (max-width: 991px) {
    .kd-ideation-slider-container {
        --slide-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 767px) {
    .kd-ideation-slider-container {
        --slide-width: 85%;
    }
}

.kd-ideation-slider-track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.kd-ideation-slide {
    width: var(--slide-width);
    flex-shrink: 0;
}

.kd-ideation-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.kd-ideation-img-wrap img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.kd-ideation-slide:hover .kd-ideation-img-wrap {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
}

.kd-ideation-slide:hover .kd-ideation-img-wrap img {
    transform: scale(1.04);
}


/* ======================================
   WIREFRAME SECTION
====================================== */

.kd-wireframe-sec {
    padding: 100px 0;
}

.kd-wireframe-sec .kd-wireframe-title {
    font-size: 52px;
    font-weight: 500;
    color: #252525;
    margin-bottom: 60px;
}

.kd-wireframe-sec .kd-wireframe-slider-wrap {
    position: relative;
}

.kd-wireframe-sec .kd-wireframe-slide {
    padding: 0 10px;
}

.kd-wireframe-sec .kd-wireframe-slide img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    display: block;
}

.kd-wireframe-sec .kd-wireframe-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #000;
    color: #fff;
    z-index: 10;
}

.kd-wireframe-sec .kd-wireframe-prev {
    left: -24px;
}

.kd-wireframe-sec .kd-wireframe-next {
    right: -24px;
}

.kd-wireframe-sec .slick-track {
    display: flex;
    align-items: center;
}

/* ======================================
   RESPONSIVE
====================================== */

@media(max-width:991px) {

    .kd-wireframe-sec .kd-wireframe-title {
        font-size: 40px;
    }

    .kd-wireframe-sec .kd-wireframe-slide img {
        height: 400px;
    }

}

@media(max-width:767px) {

    .kd-wireframe-sec .kd-wireframe-title {
        font-size: 30px;
    }

    .kd-wireframe-sec .kd-wireframe-slide img {
        height: 300px;
    }

    .kd-wireframe-sec .kd-wireframe-prev {
        left: 10px;
    }

    .kd-wireframe-sec .kd-wireframe-next {
        right: 10px;
    }

}

/* Iteration */

.kd-iteration-sec {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.kd-iteration-slider-wrap {
    position: relative;
    margin-top: 60px;
}

.kd-iteration-nav {
    display: none; /* hidden on desktop */
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 24px;
}

.kd-iteration-prev,
.kd-iteration-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #dcdcdc;
    background: #ffffff;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.kd-iteration-prev:hover,
.kd-iteration-next:hover {
    background: var(--kd-orange, #ff4d1f);
    border-color: var(--kd-orange, #ff4d1f);
    color: #ffffff;
    transform: scale(1.05);
}

.kd-iteration-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    --slide-width: 320px;
}

.kd-iteration-slider-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    will-change: transform;
}

.kd-iteration-slide {
    flex: 0 0 var(--slide-width);
    max-width: 100%;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.kd-iteration-card {
    background: #fcfcfc;
    border: 1px solid #ececec;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.kd-iteration-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(255, 77, 31, 0.2);
}

.kd-iteration-sec .kd-iteration-card {
    position: relative;
}

.kd-iteration-sec .kd-iteration-card img {
    width: 100%;
    display: block;
}

.kd-iteration-sec .kd-iteration-emoji {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 42px;
}

.kd-iteration-arrow-wrap {
    flex-shrink: 0;
    width: 120px;
    display: flex;
    justify-content: center;
}

.kd-iteration-sec .kd-iteration-svg-arrow {
    width: 120px;
    height: 60px;
}

.kd-iteration-sec .kd-arrow-path,
.kd-iteration-sec .kd-arrow-head {
    fill: none;
    stroke: #6f6f6f;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kd-mockup-sec {
    padding: 100px 0;
    overflow: hidden;
}

.kd-mockup-sec .kd-mockup-title {
    font-size: 52px;
    margin-bottom: 60px;
    color: #252525;
}

.kd-mockup-sec .kd-mockup-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.kd-mockup-sec .kd-mockup-column {
    height: 700px;
    overflow: hidden;
    position: relative;
}

.kd-mockup-sec .kd-mockup-track {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.kd-mockup-sec .kd-mockup-card {
    border-radius: 24px;
    overflow: hidden;
    background: #f5f5f5;
}

.kd-mockup-sec .kd-mockup-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kd-mockup-sec .kd-mockup-card.tall {
    height: 420px;
}

.kd-mockup-sec .kd-mockup-card.medium {
    height: 280px;
}

.kd-mockup-sec .kd-mockup-card.short {
    height: 180px;
}

.kd-mockup-sec .kd-mockup-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all .4s cubic-bezier(.22, .61, .36, 1);
}

.kd-screen-sec {
    padding: 100px 0;
}

.kd-screen-sec .kd-screen-title {
    font-size: 52px;
    margin-bottom: 12px;
    color: #252525;
}

.kd-screen-sec .kd-screen-subtitle {
    color: #9c9c9c;
    margin-bottom: 40px;
}

.kd-screen-sec .kd-screen-slider-wrap {
    position: relative;
}

.kd-screen-sec .kd-screen-slide {
    padding: 0 10px;
}

.kd-screen-sec .kd-screen-content-card {
    height: 100%;
    border: 1px solid #ececec;
    padding: 24px;
    background: #fff;
}

.kd-screen-sec .kd-screen-content-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
}

.kd-screen-sec .kd-screen-content-card p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.kd-screen-sec .kd-screen-image-card {
    height: 100%;
}

.kd-screen-sec .kd-screen-image-card img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: contain;
    display: block;
}

.kd-screen-sec .kd-screen-arrow {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #000;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.kd-screen-sec .kd-screen-prev {
    left: -25px;
}

.kd-screen-sec .kd-screen-next {
    right: -25px;
}

/* =====================================================
   DESIGN SYSTEM
===================================================== */

.kd-design-system-sec {
    padding: 100px 0;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.kd-design-system-sec .kd-design-system-wrap {
    max-width: 1280px;
    margin: 0 auto;
}

.kd-design-system-sec .kd-design-system-title {
    font-size: 52px;
    font-weight: 500;
    line-height: 1.1;
    color: #252525;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.kd-design-system-sec .kd-design-system-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #8f8f8f;
    margin-bottom: 16px;
}

.kd-design-system-sec .kd-design-system-content {
    max-width: 1150px;
    margin-bottom: 60px;
}

.kd-design-system-sec .kd-design-system-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}

/* ======================================
   IMAGE
====================================== */

.kd-design-system-sec .kd-design-system-image-wrap {
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    border-radius: 0;
    background: #f3f3f3;
    border: 1px solid #ececec;
}

.kd-design-system-sec .kd-design-system-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =====================================================
   PROTOTYPE SECTION
===================================================== */

.kd-prototype-sec {
    padding: 100px 0;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.kd-prototype-sec .kd-prototype-wrap {
    max-width: 1280px;
    margin: 0 auto;
}

.kd-prototype-sec .kd-prototype-title {
    font-size: 52px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #252525;
    margin-bottom: 40px;
}

/* ======================================
   FIGMA EMBED
====================================== */

.kd-prototype-sec .kd-prototype-frame-wrap {
    width: 100%;
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    border: 1px solid #ececec;
    background: #f5f5f5;
}

.kd-prototype-sec .kd-prototype-frame {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ======================================
   PLACEHOLDER
====================================== */

.kd-prototype-sec .kd-prototype-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    color: #8d8d8d;
    font-size: 18px;
    line-height: 1.6;
    background: #f5f5f5;
}

.kd-prototype-sec .kd-prototype-placeholder span {
    max-width: 500px;
}

/* =====================================================
   USER TESTING
===================================================== */

.kd-testing-sec {
    padding: 100px 0;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.kd-testing-sec .kd-testing-title {
    font-size: 52px;
    font-weight: 500;
    color: #252525;
    margin-bottom: 40px;
}

/* ======================================
   USER TEST CARD
====================================== */

.kd-testing-sec .kd-testing-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 30px;
    border: 1px solid #ececec;
    margin-bottom: 80px;
}

.kd-testing-sec .kd-testing-avatar {
    width: 52px;
    flex-shrink: 0;
}

.kd-testing-sec .kd-testing-avatar img {
    width: 100%;
    display: block;
}

.kd-testing-sec .kd-testing-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #666;
}

.kd-testing-sec .kd-testing-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* ======================================
   CONCLUSION
====================================== */

.kd-testing-sec .kd-testing-conclusion-title {
    font-size: 48px;
    font-weight: 500;
    color: #252525;
    margin-bottom: 40px;
}

.kd-testing-sec .kd-testing-conclusion-title span {
    color: #b8b8b8;
    font-weight: 400;
}

/* ======================================
   IMAGE GRID
====================================== */

.kd-testing-sec .kd-testing-image-card {
    overflow: hidden;
}

.kd-testing-sec .kd-testing-image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: all .4s ease;
}

.kd-testing-sec .kd-testing-image-card:hover img {
    transform: scale(1.04);
}

.kd-improve-sec {
    padding: 90px 0;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    background: #fff;
}

.kd-improve-sec .kd-improve-title {
    font-size: 48px;
    font-weight: 500;
    color: #252525;
    margin-bottom: 42px;
}

.kd-improve-sec .kd-improve-card {
    border: 1px solid #ececec;
    padding: 28px 36px;
    margin-bottom: 38px;
    background: #fff;
}

.kd-improve-sec .kd-improve-card h4 {
    font-size: 18px;
    font-weight: 400;
    color: #777;
    margin-bottom: 18px;
}

.kd-improve-sec .kd-improve-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    margin: 0;
}

@media(max-width:767px) {

}