:root {
    --font-header: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --color-blue-header: #0022aa;
    --color-grey-story: #e0e0e0;
    --color-dark-tools: #1a1a1a;
    --color-yellow-team: #e6d700;
    --color-gold-founder: #b8860b;
    --color-green-v: #ccff00;
    --color-silver-s: #c0c0c0;
    --color-cyan-m: #00ffff;
    --color-purple-a: #9933ff;
    --color-dark-cta: #111;
    --color-blue-footer: #1a1aff;
    --color-btna-green: #ccff00;
}

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

body {
    font-family: var(--font-body);
    background-color: #f0f0f0;
    overflow-x: hidden;
    line-height: 1.6;
    color: #333;
}

h1,
h2,
h3 {
    font-family: var(--font-header);
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1px;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.image-placeholder {
    background-color: rgba(0, 0, 0, 0.2);
    border: 2px dashed #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animations */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Toolbar Styles */
.main-toolbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 2rem;
    font-family: var(--font-header);
    background: transparent;
}

.toolbar-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toolbar-left,
.toolbar-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    /* ~18px */
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #c7f908;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
    transform: translateY(-15px);
    /* Move icons higher as requested */
}

.social-icons a {
    color: white;
    font-size: 1.25rem;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: #c7f908;
}

.mobile-menu-btn {
    display: none;
    /* Hidden on desktop */
    font-size: 1.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .toolbar-container {
        padding-top: 1rem;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .toolbar-left {
        gap: 1rem;
    }

    .toolbar-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #0c19ad;
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        padding: 2rem;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .toolbar-right.active {
        right: 0;
    }

    .social-icons {
        margin-left: 0;
        margin-top: 2rem;
    }
}

/* Header */
.header {
    background-color: #0C1AC1;
    color: white;
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 10rem;
    /* Increased top spacing to accommodate toolbar */
    position: relative;
    overflow: hidden;
}

.title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.star-placeholder {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.1s ease-out;
    position: absolute;
}

.star-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Star positions */
.star-tl {
    top: -80px;
    left: -100px;
}

.star-bl {
    bottom: -20px;
    left: -180px;
}

.star-tr {
    top: -80px;
    right: -100px;
}

.star-br {
    bottom: -20px;
    right: -180px;
}

.logo-title {
    z-index: 5;
    animation: title-entry 1s ease-out forwards;
    opacity: 0;
    transform: scale(0.8);
    position: relative;
    line-height: 1;
    margin: 0;
    width: 700px;
}

.logo-title img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes title-entry {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.header-bottom-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 0;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    transform: scale(1.6);
    transform-origin: bottom center;
}

.header-img {
    width: 150px;
    height: 150px;
    border-bottom: none;
    object-fit: cover;
    transform: translateY(100%);
    animation: slide-up 0.8s ease-out forwards;
    background-color: transparent !important;
    box-shadow: none !important;
}

.header-img:nth-child(1) {
    animation-delay: 0.5s;
}

.header-img:nth-child(2) {
    animation-delay: 0.6s;
}

.header-img:nth-child(3) {
    animation-delay: 0.7s;
}

.header-img:nth-child(4) {
    animation-delay: 0.8s;
}

.header-img:nth-child(5) {
    animation-delay: 0.9s;
}

@keyframes slide-up {
    to {
        transform: translateY(0);
    }
}

/* Our Story */
/* Our Story */
/* Our Story */
.our-story {
    background-color: #D8D8D8;
    /* Light Grey Background */
    padding: 5rem 2rem;
    position: relative;
    color: #333;
}

.story-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.story-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    border-left: none;
    padding-left: 0;
    margin-bottom: 10px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 6px;
    background-color: var(--color-btn-green);
    margin: 10px auto 0;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.story-col {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.story-col:hover {
    transform: translateY(-10px);
    border-color: var(--color-btn-green);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.story-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(204, 255, 0, 0.05), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.story-col:hover::before {
    opacity: 1;
}

.story-col h3 {
    color: #000;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--color-btn-green);
    padding-bottom: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.story-col p {
    line-height: 1.8;
    color: #444;
    font-size: 1.15rem;
    position: relative;
    z-index: 1;
}

/* Highlight Text Effect */
/* Highlight Text Effect */
/* Highlight Text Effect - Bold Only */
.highlight-text {
    background: none;
    color: black;
    /* Explicitly setting to black for light background */
    font-weight: bold;
    padding: 0;
}

/* Tools We Use */
.tools-section {
    background-color: var(--color-dark-tools);
    color: white;
    padding: 3rem 2rem 0 2rem;
    text-align: center;
    position: relative;
    /* Added for absolute positioning of the image */
}

/* ... existing code ... */

.small-story-image {
    width: 250px;
    height: auto;
    object-fit: contain;
    /* Absolute positioning to sit "on" the container */
    position: absolute;
    top: -220px;
    right: 1%;
    border-radius: 8px;
    z-index: 10;
}

.tools-section .section-title {
    border: none;
    margin-bottom: 2rem;
    color: white;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-items: center;
}

.tools-container-bg {
    background-color: #333;
    /* Lighter grey container */
    padding: 3rem 3rem 6rem 3rem;
    border-radius: 20px 20px 0 0;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-height: 100%;
}

.tool-icon {
    width: 80px;
    height: 80px;
    background-color: #333;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #555;
    transition: transform 0.2s, background-color 0.2s;
    font-size: 0.8rem;
    padding: 5px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.tool-icon svg {
    width: 60%;
    height: 60%;
    fill: white;
    transition: transform 0.2s;
}

.tool-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    transition: transform 0.2s;
}

.tool-icon img.large-img {
    width: 95%;
    height: 95%;
}

.tool-icon svg path {
    fill: white !important;
}

.tool-icon:hover svg {
    transform: scale(1.1);
}

.tool-icon span {
    color: white;
    font-size: 0.75rem;
    line-height: 1.2;
    display: block;
    width: 100%;
}

.tool-icon:hover {
    transform: scale(1.1);
    background-color: #444;
    border-color: var(--color-btn-green);
}

/* Meet The Team */
.meet-team {
    background-color: var(--color-yellow-team);
    padding: 6rem 2rem;
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    /* Ensure images stay within bounds */
}

.meet-team .section-title {
    position: relative;
    z-index: 10;
    /* Keep title above images */
}

.team-visuals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 0;
}

.team-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    animation: fade-in 1.5s ease-out forwards;
}

.team-fg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: 0;
    animation: slide-up-fg 1s ease-out forwards;
    animation-delay: 0.5s;
    /* Slight delay for FG */
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slide-up-fg {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

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

.char-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.char-content.reverse {
    flex-direction: row-reverse;
}

.char-image-container {
    flex: 1;
    height: 900px;
    /* Increased from 500px */
}

.char-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    box-shadow: none;
}

/* Kept for reference or cleanup, but currently unused */
.char-placeholder {
    display: none;
}

.char-text {
    flex: 1;
    color: #fff;
}

.char-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.char-text h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.char-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.vertical-role {
    font-family: var(--font-header);
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    white-space: nowrap;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    color: #fff;
}

.char-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid;
}

/* Founder Specific */
.founder {
    background-color: #1a1a1a;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* ... existing founder styles ... */

.founder::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 0;
    bottom: 2rem;
    width: 47%;
    background: linear-gradient(to right, #DDB979, #D1A149 33%);
    border-radius: 0 150% 150% 0 / 0 100% 100% 0;
    z-index: 1;
}

/* Ensure content sits above the background */
.founder .char-content {
    position: relative;
    z-index: 2;
}

.founder .char-text {
    margin-left: 6rem;
}

.founder .char-image-container {
    margin-left: -4rem;
}

.founder .char-text h2 {
    color: var(--color-gold-founder);
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.founder .char-text p {
    background: none;
    border: none;
    padding: 0;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Horizontal Scroll Team Section */
.team-scroll-container {
    height: 400vh;
    /* 100vh per slide */
    position: relative;
    background-color: #7E8599;
}

.team-sticky-viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.team-horizontal-track {
    display: flex;
    height: 100%;
    width: 500%;
    /* 5 sections */
    will-change: transform;
}

.team-horizontal-track .character-section {
    width: 20%;
    /* 1/4 of 400% = 100% of viewport */
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    /* Ensure inner content centers */
    align-items: center;
    justify-content: center;
    background-color: #7E8599;
    position: relative;
    overflow: hidden;
}

/* Role Styling (Horizontal) */
.grade-role,
.horizontal-role {
    font-family: var(--font-header);
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-top: -10px;
    /* Pull closer to name */
    margin-bottom: 2rem;
}

.char-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align for most, or context specific */
}

/* Diagonal Panel Design */
.char-image-container::before {
    content: '';
    position: absolute;
    top: -10%;
    bottom: -10%;
    left: -5%;
    /* Adjusted to center the wider panel */
    width: 100%;
    /* 2x wider (from 60%) */
    background-color: var(--panel-color, );
    transform: skewX(30deg);
    /* Increased tilt to the left */
    z-index: -1;
    border-radius: 20px;
}

.char-img {
    z-index: 2;
    position: relative;
    left: -15%;
}

/* Text Styling Updates for Light BG */
.team-horizontal-track .char-text {
    transform: translateY(-20%);
    /* Move text block higher as requested */
}

.team-horizontal-track .char-text h2 {
    color: #333;
}

.team-horizontal-track .char-text p {
    color: #555;
    background: none;
    border-color: var(--panel-color);
    border-left: 4px solid var(--panel-color);
    padding-left: 1rem;
}

.horizontal-role {
    color: #666;
}


/* Individual Character Styles adjusted for Horizontal Flow */
.mr-v {
    --panel-color: var(--color-green-v);
}


.mr-v .char-img {
    /* Individual positioning for Mr. V image */
    left: 20%;
    bottom: 0;
    top: 60%;
    transform-origin: bottom center;
    position: absolute;
    transform: scale(1.8);
}

.mr-v .char-text {
    /* Individual positioning for Mr. V text */
    transform: translateY(-180%);

}

.mr-v .char-image-container::before {
    left: 18%;
    width: 120%;
    transform: skewX(45deg);
}

.mr-v .char-text h2 {
    color: #000;
    position: relative;
    right: 100%;
    transform: rotate(14deg);
}

.mr-v .horizontal-role {
    color: #000;
}

.mr-v .side-role {
    position: absolute;
    top: 40%;
    right: -650px;
    transform: rotate(45deg);
    font-weight: 900;
    /* Bold as requested */
    font-size: 6rem;
    letter-spacing: 5px;
    color: #CCFF00;
    /* Subtle or bold? User said 'in bold'. I'll make it visible but maybe distinct */
    color: #CCFF00;
    white-space: nowrap;
    z-index: 0;
}

.mr-v .mrv-quote {
    position: absolute;
    top: 10%;
    right: 5%;
    max-width: 400px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    text-align: right;
    font-weight: 500;
    z-index: 10;
    padding-right: 1.5rem;
    border-right: 4px solid #d3d3d3;
    /* Light grey bar */
}

.mr-v .char-text p {
    color: #000;
    background: rgba(255, 255, 255, 0.5);
    border-color: #000;
}


.mrs-s {
    --panel-color: var(--color-silver-s);
}

.mrs-s .char-image-container::before {
    left: 30%;
    width: 120%;
    transform: skewX(40deg);
}

.mrs-s .char-img {
    /* Individual positioning for Mr. V image */
    left: 30%;
    top: 13%;
    transform: scale(1.3);
}

.mrs-s .char-text {
    /* Individual positioning for Mr. V text */
    transform: translateY(330%);

}

.mrs-s .char-text h2 {
    color: #ffffff;
    position: relative;
    right: 120%;

}

.mrs-s .horizontal-role {
    color: #000;
}

.mrs-s .side-role {
    position: absolute;
    top: 40%;
    right: -770px;
    transform: rotate(50deg);
    font-weight: 900;
    /* Bold as requested */
    font-size: 6rem;
    letter-spacing: 2px;
    color: #C0C0C0;
    /* Subtle or bold? User said 'in bold'. I'll make it visible but maybe distinct */
    color: #C0C0C0;
    white-space: nowrap;
    z-index: 0;
}

.mrs-s .mrss-quote {
    position: absolute;
    top: 10%;
    right: 5%;
    max-width: 400px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    text-align: right;
    font-weight: 500;
    z-index: 10;
    padding-right: 1.5rem;
    border-right: 4px solid #d3d3d3;
    /* Light grey bar */
}

.mrs-s .char-text p {
    color: #000;
    background: rgba(255, 255, 255, 0.5);
    border-color: #000;
}


.mr-m {
    --panel-color: var(--color-cyan-m);
}

.mr-m .char-image-container::before {
    left: 42%;
    width: 120%;
    transform: skewX(45deg);
}

.mr-m .char-img {
    /* Individual positioning for Mr. V image */
    left: 25%;
    top: 13%;
    transform: scale(1.3);
}

.mr-m .char-text {
    /* Individual positioning for Mr. V text */
    transform: translateY(330%);

}

.mr-m .char-text h2 {
    color: #ffffff;
    position: relative;
    right: 100%;
    right: 120%;
}

.mr-m .horizontal-role {
    color: #000;
}

.mr-m .side-role {
    position: absolute;
    top: 40%;
    right: -845px;
    transform: rotate(45deg);
    font-weight: 900;
    /* Bold as requested */
    font-size: 5.5rem;
    letter-spacing: 1px;
    color: #161a1a;
    /* Subtle or bold? User said 'in bold'. I'll make it visible but maybe distinct */
    color: #00FFFF;
    white-space: nowrap;
    z-index: 0;
}

.mr-m .mrm-quote {
    position: absolute;
    top: 10%;
    right: 5%;
    max-width: 400px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    text-align: right;
    font-weight: 500;
    z-index: 10;
    padding-right: 1.5rem;
    border-right: 4px solid #d3d3d3;
    /* Light grey bar */
}

.mr-m .char-text p {
    color: #000;
    background: rgba(255, 255, 255, 0.5);
    border-color: #000;
}


.mr-a {
    --panel-color: #5539a2;
}

.mr-a .char-image-container::before {
    left: 50%;
    width: 120%;
    transform: skewX(45deg);
}

.mr-a .char-img {
    /* Individual positioning for Mr. V image */
    left: 20%;
    top: 13%;
    transform: scale(1.6);
}


.mr-a .char-text {
    /* Individual positioning for Mr. V text */
    transform: translateY(330%);

}

.mr-a .char-text h2 {
    color: #000;
    position: relative;
    right: 130%;
}

.mr-a .horizontal-role {
    color: #000;
}

.mr-a .side-role {
    position: absolute;
    top: 40%;
    right: -890px;
    transform: rotate(45deg);
    font-weight: 900;
    /* Bold as requested */
    font-size: 5rem;
    letter-spacing: 1px;
    color: #5539A2;
    /* Subtle or bold? User said 'in bold'. I'll make it visible but maybe distinct */
    color: #5539A2;
    white-space: nowrap;
    z-index: 0;
}

.mr-a .mra-quote {
    position: absolute;
    top: 10%;
    right: 5%;
    max-width: 400px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    text-align: right;
    font-weight: 500;
    z-index: 10;
    padding-right: 1.5rem;
    border-right: 4px solid #d3d3d3;
    /* Light grey bar */
}

.mr-z {
    --panel-color: #8a1e1e;
}

.mr-z .char-image-container::before {
    left: 40%;
    width: 120%;
    transform: skewX(45deg);
}

.mr-z .char-img {
    /* Individual positioning for Mr. V image */
    left: 38%;
    top: 1%;
    transform: scale(1.5);
}


.mr-z .char-text {
    /* Individual positioning for Mr. V text */
    transform: translateY(330%);

}

.mr-z .char-text h2 {
    color: #000;
    position: relative;
    right: 120%;
}

.mr-z .horizontal-role {
    color: #000;
}

.mr-z .side-role {
    position: absolute;
    top: 30%;
    right: -586px;
    transform: rotate(45deg);
    font-weight: 900;
    /* Bold as requested */
    font-size: 5rem;
    letter-spacing: 1px;
    color: #8a1e1e;
    /* Subtle or bold? User said 'in bold'. I'll make it visible but maybe distinct */
    color: #8a1e1e;
    white-space: nowrap;
    z-index: 0;
}

.mr-z .mra-quote {
    position: absolute;
    top: 10%;
    right: 5%;
    max-width: 400px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    text-align: right;
    font-weight: 500;
    z-index: 10;
    padding-right: 1.5rem;
    border-right: 4px solid #d3d3d3;
    /* Light grey bar */
}

.mr-z .char-text p {
    color: #000;
    background: rgba(255, 255, 255, 0.5);
    border-color: #000;
}


.mr-z .mrz-quote {
    position: absolute;
    top: 10%;
    right: 5%;
    max-width: 400px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    text-align: right;
    font-weight: 500;
    z-index: 10;
    padding-right: 1.5rem;
    border-right: 4px solid #d3d3d3;
    /* Light grey bar */
}

.mr-z .char-text p {
    color: #000;
    background: rgba(255, 255, 255, 0.5);
    border-color: #000;
}


/* CTA Section */
.cta-section {
    background-color: var(--color-dark-cta);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.highlight-blue {
    color: blue;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.btn {
    padding: 1rem 2rem;
    font-family: var(--font-header);
    font-weight: bold;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    background-color: var(--color-btn-green);
    color: black;
}

.btn-secondary {
    background-color: var(--color-btn-green);
    color: black;
}

/* Footer */
.footer {
    background-color: var(--color-blue-footer);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-top-left-radius: 50% 20%;
    border-top-right-radius: 50% 20%;
    margin-top: -30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.icon-placeholder {
    width: 50px;
    height: 50px;
    background-color: var(--color-btn-green);
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 10px;
}

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

    .char-content,
    .char-content.reverse {
        flex-direction: column;
        text-align: center;
    }

    .logo-title {
        font-size: 3rem;
    }

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

    .char-header {
        flex-direction: column;
    }

    .vertical-role {
        writing-mode: horizontal-tb;
        transform: none;
        height: auto;
        margin-bottom: 1rem;
        font-size: 2rem;
        position: static;
    }

    .header-bottom-images {
        flex-wrap: wrap;
    }

    .header-img-placeholder {
        width: 60px;
        height: 60px;
    }
}

/* Digital Journey & Footer (New) */
.digital-journey-section {
    background-color: #181818;
    padding: 2.5rem;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    /* Ensure full height */
    display: flex;
    /* Flex container to allow height filling */
    flex-direction: column;
}

.dj-container {
    position: relative;
    width: 100%;
    height: 100%;
    /* Fill section */
    flex-grow: 1;
    /* Grow to fill */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dj-content {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 1rem 2.5rem 1rem;
    padding-top: 2.5rem;
}

.dj-text-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dj-title {
    font-size: 3rem;
    /* Fallback */
    font-weight: 900;
    line-height: 1.1;
    /* tight */
    letter-spacing: -0.05em;
    /* tighter */
    color: white;
    text-transform: uppercase;
    font-family: var(--font-header);
}

@media (min-width: 768px) {
    .dj-title {
        font-size: 3.75rem;
        /* md:text-6xl approx */
    }
}

.text-blue {
    color: #0C1AC1;
}

.text-lime {
    color: #c7f908;
}

.dj-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.btn-dj {
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-header);
    text-transform: uppercase;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* shadow-2xl */
}

.btn-dj-primary {
    background-color: #C7F908;
    color: #0E0E0E;
    border: 2px solid #C7F908;
}

.btn-dj-primary:hover {
    background-color: white;
    color: #c7f908;
}

.btn-dj-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-dj-secondary:hover {
    background-color: #C7F908;
    color: black;
    border-color: #C7F908;
}

.dj-video-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 0.5rem;
}

.video-wrapper {
    width: 24rem;
    /* w-96 */
    height: auto;
    display: block;
}

.dj-video {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

.footer-base {
    position: relative;
    background-color: #0C1AC1;
    min-height: 25vh;
    width: 100%;
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

.footer-header-container {
    position: relative;
    padding: 2rem 2rem 4rem 2rem;
    background: transparent;
    text-align: center;
    z-index: 5;
}

.footer-curve {
    position: relative;
    flex-grow: 1;
    width: 100%;
    min-height: 15vh;
    background-color: #C7F908;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    box-shadow: inset 0 10px 15px -10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1000px) {
    .footer-curve {
        border-top-left-radius: 50% 100%;
        border-top-right-radius: 50% 100%;
    }
}

.footer-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: white;
    text-transform: uppercase;
    font-family: var(--font-header);
}

.footer-socials {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 2.5rem;
    font-size: 2rem;
}

.social-link {
    color: #0E0E0E;
    transition: color 0.3s;
    text-decoration: none;
    /* remove underline */
}

.social-link:hover {
    color: #4F46E5;
}

.about-policy-links {
    display: flex;
    gap: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-policy-links a {
    color: #0e0e0e;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.about-policy-links a:hover {
    color: #0C1AC1;
}


.copyright-text {
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.625rem;
    /* 10px */
    color: #6b7280;
    /* gray-500 */
    z-index: 10;
}

/* Process Scroll Section - NEW (Vertical to Horizontal) */
.process-scroll-wrapper {
    height: 400vh;
    /* Adjust length of scroll */
    position: relative;
    background-color: #111827;
    /* Requested Color */
    color: #fff;
}

.process-sticky-viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; REMOVED to prevent track from centering its middle point */
    padding-left: 0;
    /* Remove left padding since we are centering */
}

.process-section-title {
    position: relative;
    /* Changed from absolute to flow with content */
    top: auto;
    left: auto;
    font-size: 3.5rem;
    /* Match Our Story (.section-title) */
    font-weight: 900;
    color: #fff;
    z-index: 10;
    text-transform: uppercase;
    text-align: center;
    /* Center text */
    width: 100%;
    /* Ensure it spans full width to center text */
    margin-bottom: 4rem;
    /* Gap after title */
    margin-top: -5vh;
    /* Slight adjustment to keep vertical balance */
}

.process-section-title::after {
    content: '';
    display: block;
    width: 60px;
    /* Match Our Story underline width */
    height: 6px;
    background-color: var(--color-btn-green);
    margin: 10px auto 0;
    /* Center underline */
}

.process-horizontal-track {
    display: flex;
    gap: 4vw;
    /* Reduced from 8vw */
    height: 65vh;
    /* Slightly reduced height to fit title */
    align-items: center;
    will-change: transform;
    margin-top: 0;
    padding-left: 5vw;
    /* Start with just a bit of padding */
    padding-right: 5vw;
    width: max-content;
    /* Ensure the container grows to fit all cards */
}

.process-card {
    flex-shrink: 0;
    width: 35vw;
    /* Increased width as requested */
    height: 100%;
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-15px);
    border-color: var(--color-btn-green);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--color-btn-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.p-number {
    font-family: var(--font-header);
    font-size: 4rem;
    /* Slightly smaller to fit nicely */
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    position: absolute;
    top: 3rem;
    right: 3rem;
    transition: color 0.3s;
    z-index: 1;
}

.process-card:hover .p-number {
    color: var(--color-btn-green);
    opacity: 0.8;
}

.p-content {
    margin-top: 0;
    /* Align to top */
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.p-content h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    max-width: 80%;
    /* Prevent overlapping with number */
    padding-right: 2rem;
}

.p-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Mobile Adjustments for Process */
@media (max-width: 768px) {
    .process-section-title {
        font-size: 2.5rem;
    }

    .process-scroll-wrapper {
        height: auto;
        /* Fallback for mobile if needed, or keep scroll */
    }

    .process-horizontal-track {
        flex-direction: column;
        height: auto;
        transform: none !important;
        margin-top: 10vh;
        gap: 2rem;
        padding-right: 5vw;
    }

    .process-sticky-viewport {
        position: relative;
        height: auto;
        padding-bottom: 4rem;
        overflow: visible;
    }

    .process-card {
        width: 100%;
        height: auto;
        min-height: 400px;
    }
}

.dj-content {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 1rem 2.5rem 1rem;
    padding-top: 2.5rem;
}

.dj-text-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dj-title {
    font-size: 3rem;
    /* Fallback */
    font-weight: 900;
    line-height: 1.1;
    /* tight */
    letter-spacing: -0.05em;
    /* tighter */
    color: white;
    text-transform: uppercase;
    font-family: var(--font-header);
}

@media (min-width: 768px) {
    .dj-title {
        font-size: 3.75rem;
        /* md:text-6xl approx */
    }
}

.text-blue {
    color: #0C1AC1;
}

.text-lime {
    color: #c7f908;
}

.dj-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.btn-dj {
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-header);
    text-transform: uppercase;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* shadow-2xl */
}

.btn-dj-primary {
    background-color: #C7F908;
    color: #0E0E0E;
    border: 2px solid #C7F908;
}

.btn-dj-primary:hover {
    background-color: white;
    color: #c7f908;
}

.btn-dj-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-dj-secondary:hover {
    background-color: #C7F908;
    color: black;
    border-color: #C7F908;
}

.dj-video-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 0.5rem;
}

.video-wrapper {
    width: 24rem;
    /* w-96 */
    height: auto;
    display: block;
}

.dj-video {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

.footer-base {
    position: relative;
    background-color: #0C1AC1;
    min-height: 25vh;
    width: 100%;
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

.footer-header-container {
    position: relative;
    padding: 2rem 2rem 4rem 2rem;
    background: transparent;
    text-align: center;
    z-index: 5;
}

.footer-curve {
    position: relative;
    flex-grow: 1;
    width: 100%;
    min-height: 15vh;
    background-color: #C7F908;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    box-shadow: inset 0 10px 15px -10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1000px) {
    .footer-curve {
        border-top-left-radius: 50% 100%;
        border-top-right-radius: 50% 100%;
    }
}

.footer-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: white;
    text-transform: uppercase;
    font-family: var(--font-header);
}

.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4rem;
    /* More spacing inside curve */
    padding-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 4rem;
    font-size: 3.75rem;
    /* text-6xl */
}

.social-link {
    color: #0E0E0E;
    transition: color 0.3s;
    text-decoration: none;
    /* remove underline */
}

.social-link:hover {
    color: #4F46E5;
    /* indigo-600 */
}

.copyright-text {
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.625rem;
    /* 10px */
    color: #6b7280;
    /* gray-500 */
    z-index: 10;
}

/* Process Carousel Section */
.process-carousel-section {
    background-color: #111;
    /* Dark theme */
    padding: 6rem 1rem;
    /* Reduced side padding */
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    /* Make it substantial */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4rem;
    letter-spacing: 2px;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 1.5rem;
    /* Space for underline */
}

.carousel-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #fff;
    /* Keeping it white/neutral or could be accent */
    border-radius: 2px;
}

.carousel-container-wrapper {
    max-width: 95%;
    /* Increased width */
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.carousel-container {
    overflow: hidden;
    /* Hide slides off screen */
    position: relative;
    padding: 2rem 0;
    /* Space for shadows */
}

.process-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 1rem;
}

.process-slide {
    min-width: calc((100% - 2rem) / 3);
    /* Show 3 slides (minus 2 gaps of 1rem) */
    background: rgba(255, 255, 255, 0.05);
    /* Glassmorphism base */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
    opacity: 1;
    /* Fully visible by default */
    transform: scale(1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    /* Ensure overlapping context */
}

.process-track:hover .process-slide {
    transform: scale(0.95);
    opacity: 0.5;
}

.process-track .process-slide:hover {
    transform: scale(1);
    opacity: 1;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.slide-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 1rem;
    left: auto;
    right: 1rem;
    line-height: 1;
    z-index: 0;
}

.slide-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #CCFF00;
    /* Use website accent color or similar */
    font-weight: 700;
    position: relative;
    z-index: 1;
    padding-right: 3rem;
}

.slide-content {
    position: relative;
    z-index: 1;
}

.slide-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
    margin-bottom: 0.25rem;
    max-width: 100%;
}

/* Navigation Buttons */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.nav-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: white;
    color: black;
    transform: scale(1.1);
    border-color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .process-slide {
        min-width: 100%;
        padding: 2rem;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-number {
        font-size: 4rem;
    }

    .carousel-section-title {
        font-size: 2rem;
    }
}

/* Floating Animations for Characters */
/* Defined specifically to preserve the scale of each character */

@keyframes float-mrv {

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

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

@keyframes float-mrss-mrm {

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

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

@keyframes float-mra {

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

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

@keyframes float-mrz {

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

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

.mr-v .char-img {
    animation: float-mrv 6s ease-in-out infinite;
}

.mrs-s .char-img {
    animation: float-mrss-mrm 6s ease-in-out infinite;
    animation-delay: 1s;
    /* Offset for natural feel */
}

.mr-m .char-img {
    animation: float-mrss-mrm 6s ease-in-out infinite;
    animation-delay: 2s;
    /* Offset for natural feel */
}

.mr-a .char-img {
    animation: float-mra 6s ease-in-out infinite;
    animation-delay: 3s;
    /* Offset for natural feel */
}

.mr-z .char-img {
    animation: float-mrz 6s ease-in-out infinite;
    animation-delay: 0.5s;
    /* Unique offset for natural stagger */
}