/* CONCEPT 3: APPLE STYLE MINIMALIST */



:root {

    --bg-color: #000000;

    --text-color: #F5F5F7;

    --accent-color: #2997FF;

    --dark-gray: #1D1D1F;

    --light-gray: #86868B;

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    background-color: var(--bg-color);

    color: var(--text-color);

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

    /* overflow-x: hidden; removed for ScrollTrigger */

}



/* Typography Base */

h1,

h2,

h3,

h4,

h5,

h6 {

    font-weight: 700;

    letter-spacing: -0.02em;

}



a {

    color: inherit;

    text-decoration: none;

}



/* Navbar */

.apple-nav {

    position: fixed;

    top: 0;

    width: 100%;

    padding: 1.5rem 0;

    z-index: 1000;

    background: rgba(0, 0, 0, 0.7);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}



.nav-container {

    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 0 2rem;

}



.logo-link {

    display: flex;

    align-items: center;

    gap: 1rem;

}



.nav-logo {

    width: 32px;

    height: 32px;

}



.nav-brand {

    font-weight: 700;

    font-size: 1.2rem;

    letter-spacing: -0.03em;

}



.nav-menu {

    list-style: none;

    display: flex;

    gap: 2.5rem;

}



.nav-menu a {

    font-size: 0.85rem;

    font-weight: 500;

    color: var(--light-gray);

    transition: color 0.3s ease;

}



.nav-menu a:hover {

    color: var(--text-color);

}



/* Hero Section */

.hero-section {

    position: relative;

    height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}



.hero-bg-video {

    position: absolute;

    inset: 0;

    z-index: 0;

}



.hero-bg-video video {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.hero-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.4) 100%);

}



.hero-content {

    position: relative;

    z-index: 1;

    text-align: center;

    margin-top: 10vh;

}



.hero-overline {

    font-size: 1.2rem;

    font-weight: 500;

    color: var(--light-gray);

    text-transform: uppercase;

    letter-spacing: 0.1em;

    margin-bottom: 1rem;

}



.hero-title {

    font-size: clamp(4rem, 12vw, 10rem);

    font-weight: 900;

    line-height: 1;

    letter-spacing: -0.05em;

    margin-bottom: 1.5rem;

    background: linear-gradient(180deg, #FFFFFF 0%, #A0A0A0 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}



.hero-subtitle {

    font-size: clamp(1.2rem, 3vw, 2rem);

    font-weight: 400;

    color: var(--light-gray);

}



/* Common Layout */

section {

    padding: 15vh 0;

}



.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 2rem;

}



.massive-text {

    font-size: clamp(2.5rem, 6vw, 5rem);

    line-height: 1.1;

    letter-spacing: -0.03em;

    margin-bottom: 2rem;

}



.massive-text .highlight {

    color: var(--text-color);

    background: linear-gradient(90deg, #FF2950 0%, #FF7B29 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}



.body-large {

    font-size: clamp(1.2rem, 2.5vw, 1.8rem);

    line-height: 1.5;

    color: var(--light-gray);

    max-width: 800px;

}



/* Services */

.section-header {

    text-align: center;

    margin-bottom: 8vh;

}



.section-title {

    font-size: 3.5rem;

    font-weight: 700;

    margin-bottom: 1rem;

}



.section-subtitle {

    font-size: 1.5rem;

    color: var(--light-gray);

}



.services-stack {

    display: flex;

    flex-direction: column;

    gap: 10vh;

}



.service-card {

    display: flex;

    flex-direction: column;

    gap: 2rem;

}



.service-image {

    width: 100%;

    height: 60vh;

    border-radius: 24px;

    overflow: hidden;

}



.service-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);

}



.service-card:hover .service-image img {

    transform: scale(1.05);

}



.service-info h3 {

    font-size: 2.5rem;

    margin-bottom: 1rem;

}



.service-info p {

    font-size: 1.2rem;

    color: var(--light-gray);

    line-height: 1.6;

    max-width: 600px;

}



/* Team Grid */

.team-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 3rem;

    margin-top: 5rem;

}



.team-member img {

    width: 100%;

    aspect-ratio: 1;

    object-fit: cover;

    border-radius: 24px;

    margin-bottom: 1.5rem;

    filter: grayscale(100%);

    transition: filter 0.5s ease;

}



.team-member:hover img {

    filter: grayscale(0%);

}



.team-member h4 {

    font-size: 1.5rem;

    margin-bottom: 0.5rem;

}



.team-member p {

    color: var(--light-gray);

}



/* Buttons */

.apple-btn {

    display: inline-block;

    padding: 1rem 2.5rem;

    background-color: var(--text-color);

    color: var(--bg-color);

    border-radius: 100px;

    font-weight: 600;

    font-size: 1.1rem;

    transition: transform 0.3s ease, opacity 0.3s ease;

}



.apple-btn:hover {

    transform: scale(1.05);

    opacity: 0.9;

}



/* Footer */

.apple-footer {

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    padding: 4rem 0;

    text-align: center;

    color: var(--light-gray);

    font-size: 0.9rem;

}



/* Animations (GSAP Setup) */

.reveal-text,

.scroll-reveal {

    opacity: 0;

    transform: translateY(40px);

}





/* --- Mobile Menu Styles --- */

.hamburger {

    display: none;

    flex-direction: column;

    justify-content: space-between;

    width: 30px;

    height: 20px;

    cursor: pointer;

    z-index: 1001;

}



.hamburger span {

    width: 100%;

    height: 2px;

    background-color: var(--text-color);

    transition: all 0.3s ease;

}











.mobile-overlay {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100vh;

    background: rgba(0, 0, 0, 0.95);

    backdrop-filter: blur(20px);

    z-index: 999;

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    pointer-events: none;

    transition: opacity 0.4s ease;

}



.mobile-overlay.active {

    opacity: 1;

    pointer-events: all;

}



.mobile-nav-links {

    list-style: none;

    text-align: center;

}



.mobile-nav-links li {

    margin: 2rem 0;

}



.mobile-nav-links a {

    font-size: 2.5rem;

    font-weight: 700;

    color: var(--text-color);

    text-transform: uppercase;

}



@media (max-width: 768px) {

    .team-cube {

        width: 260px;

        height: 260px;

    }

    .cube-face {

        width: 260px;

        height: 260px;

        padding: 15px;

    }

    .cube-face img {

        width: 100px;

        height: 100px;

    }

    .cube-front {
        transform: rotateY(0deg) translateZ(130px);
    }

    .cube-right {
        transform: rotateY(90deg) translateZ(130px);
    }

    .cube-back {
        transform: rotateY(180deg) translateZ(130px);
    }

    .cube-left {
        transform: rotateY(-90deg) translateZ(130px);
    }

    .cube-top {
        transform: rotateX(90deg) translateZ(130px);
    }

    .cube-bottom {
        transform: rotateX(-90deg) translateZ(130px);
    }

}



.hamburger {

    display: flex;

}



.hero-title {

    font-size: 4rem;

}



.massive-text {

    font-size: 2.5rem;

}



/* --- Zoom Sections (Services) --- */

.zoom-services-container {

    background-color: #000;

    position: relative;

    padding: 0;

}



.services-title {

    padding: 15vh 0 5vh;

}



.zoom-section {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100vh;

    overflow: hidden;

    background-color: #000;

}



.zoom-content {

    position: absolute;

    inset: 0;

    z-index: 1;

}



.zoom-content img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    opacity: 0.5;

    /* Darken background so text is readable */

}



.zoom-info {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;

    z-index: 2;

    width: 80%;

    max-width: 800px;

    opacity: 0;

    /* Will be revealed after zoom */

}



.zoom-info h3 {

    font-size: 4rem;

    font-weight: 900;

    margin-bottom: 1rem;

    text-transform: uppercase;

}



.zoom-info p {

    font-size: 1.5rem;

    color: #fff;

    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);

}



.zoom-svg {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    z-index: 3;

    pointer-events: none;

}





#smooth-wrapper {

    overflow-x: hidden;

    width: 100%;

}





.chart-grid line,

.graph-line,

.social-nodes>g,

.graph-area,

.social-paths path {

    opacity: 0;

}





.hamburger span:nth-child(1) {

    width: 100%;

}



.hamburger span:nth-child(2) {

    width: 75%;

}



.hamburger span:nth-child(3) {

    width: 50%;

}



.hamburger.active span:nth-child(1) {

    transform: translateY(9px) rotate(45deg);

    width: 100%;

}



.hamburger.active span:nth-child(2) {

    opacity: 0;

    width: 0;

}



.hamburger.active span:nth-child(3) {

    transform: translateY(-9px) rotate(-45deg);

    width: 100%;

}





@media (max-width: 768px) {

    .team-cube {

        width: 260px;

        height: 260px;

    }

    .cube-face {

        width: 260px;

        height: 260px;

        padding: 15px;

    }

    .cube-face img {

        width: 100px;

        height: 100px;

    }

    .cube-front {
        transform: rotateY(0deg) translateZ(130px);
    }

    .cube-right {
        transform: rotateY(90deg) translateZ(130px);
    }

    .cube-back {
        transform: rotateY(180deg) translateZ(130px);
    }

    .cube-left {
        transform: rotateY(-90deg) translateZ(130px);
    }

    .cube-top {
        transform: rotateX(90deg) translateZ(130px);
    }

    .cube-bottom {
        transform: rotateX(-90deg) translateZ(130px);
    }

}



.chart-grid,

.graph-line,

.graph-area {

    transform: scale(0.6) translateX(-500px);

    transform-origin: left bottom;

}


/* Lead Gen Bubble Grayscale Hover */

.bubble-inner {

    filter: grayscale(100%);

    transition: filter 0.3s ease, transform 0.3s ease;

}



.bubble-inner:hover {

    filter: grayscale(0%);

    transform: scale(1.05);

    z-index: 10;

}



.delay-3 {

    transition-delay: 0.6s;

}



.gpu-accel {

    will-change: transform, opacity;

}



/* Mobile Responsiveness for Our Services and General Site */

@media screen and (max-width: 768px) {



    /* Scale down SVG Mask text for zoom sections so they don't get cut off */

    .mask-text {

        font-size: 35px !important;

    }



    /* Keep sections full height, but scale the SVG inner graphics to the center of the screen (960,540) */

    .zoom-content,

    .zoom-svg {

        height: 100vh !important;

        top: 0 !important;

        transform: none !important;

    }



    /* Scale down and shift inner graphics to perfectly center them in the mobile viewport slice */

    .chart-grid,

    .graph-line,

    .graph-area {

        transform: translateX(600px) scale(0.5);

        transform-origin: 0% 500px;

    }



    .timeline-group {

        transform: translateX(750px) scale(0.6);

        transform-origin: 0% 650px;

    }



    /* Reduce typography sizes */

    .section-title {

        font-size: 2.2rem !important;

    }



    .section-subtitle {

        font-size: 1rem !important;

    }



    .massive-text {

        font-size: 2.5rem !important;

    }



    .body-large {

        font-size: 1.1rem !important;

    }



    /* Zoom Info (Our Services) */

    .zoom-info {

        width: 95% !important;

    }



    .zoom-info h3 {

        font-size: 2rem !important;

    }



    .zoom-info p {

        font-size: 1rem !important;

    }



    /* Adjust Chart Size (Actually Zoom In) */

    .chart-container {

        height: 250px !important;

        margin-top: 2rem !important;

    }



    .chart-container svg {

        transform: scaleY(2) !important;

        transform-origin: left center !important;

    }





    /* Move Lead Gen bubbles to the left and scale them slightly for mobile */

    .bubble-inner {

        transform: translateX(-10vw) scale(0.7) !important;

        transform-origin: center center;

    }



    /* Navbar adjust */

    nav ul {

        gap: 15px;

    }



    nav ul li a {

        font-size: 0.9rem;

    }

}



/* About Section Chart Hover Effects */

.chart-group {

    cursor: pointer;

}



.group-fb:hover path {

    stroke: #1877F2 !important;

}



.group-fb:hover circle {

    fill: #1877F2 !important;

    filter: drop-shadow(0 0 10px #1877F2) !important;

}



.group-fb:hover text {

    fill: #1877F2 !important;

}



.group-ig:hover path {

    stroke: #E1306C !important;

}



.group-ig:hover circle {

    fill: #E1306C !important;

    filter: drop-shadow(0 0 10px #E1306C) !important;

}



.group-ig:hover text {

    fill: #E1306C !important;

}



.group-wa:hover path {

    stroke: #25D366 !important;

}



.group-wa:hover circle {

    fill: #25D366 !important;

    filter: drop-shadow(0 0 10px #25D366) !important;

}



.group-wa:hover text {

    fill: #25D366 !important;

}

/* Dynamic Hero Background */

.hero-dynamic-bg {

    filter: grayscale(100%);

    transition: filter 1s ease-in-out;

}



.hero-section:hover .hero-dynamic-bg,

.hero-dynamic-bg:active {

    filter: grayscale(0%);

}



/* Highlight for The Power House of Branding */

.hero-overline {

    font-size: 1.5rem !important;

    font-weight: 700;

    letter-spacing: 4px;

    color: #fff;

    text-transform: uppercase;

    text-shadow: 0 0 10px rgba(41, 151, 255, 0.8), 0 0 20px rgba(225, 48, 108, 0.8);

    margin-bottom: 20px;

}



/* 3D Team Cube Styles */

.cube-scene {

    perspective: 1200px;

    width: 100%;

    height: 500px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    margin: 60px 0;

    cursor: grab;

    overflow: hidden;

}

.cube-scene:active {

    cursor: grabbing;

}



.team-cube {

    width: 350px;

    height: 350px;

    position: relative;

    transform-style: preserve-3d;

    transition: transform 0.1s ease-out;
    /* Smooth drag */

    transform: rotateX(0deg) rotateY(0deg);

}

.cube-face {

    position: absolute;

    width: 350px;

    height: 350px;

    background: #0f0f0f;

    border: 2px solid #000;

    padding: 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8), inset 0 0 40px rgba(225, 48, 108, 0.2);

    transition: box-shadow 0.3s ease;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    overflow: hidden;

}



/* Rubik's Grid Pattern Overlay */

.cube-face::after {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    pointer-events: none;

    z-index: 10;

    background:

        linear-gradient(90deg, transparent calc(33.33% - 2px), #000 calc(33.33% - 2px), #000 calc(33.33% + 2px), transparent calc(33.33% + 2px), transparent calc(66.66% - 2px), #000 calc(66.66% - 2px), #000 calc(66.66% + 2px), transparent calc(66.66% + 2px)),

        linear-gradient(0deg, transparent calc(33.33% - 2px), #000 calc(33.33% - 2px), #000 calc(33.33% + 2px), transparent calc(33.33% + 2px), transparent calc(66.66% - 2px), #000 calc(66.66% - 2px), #000 calc(66.66% + 2px), transparent calc(66.66% + 2px));

    border: 4px solid #000;

}



.cube-face:hover {

    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8), inset 0 0 50px rgba(41, 151, 255, 0.4);

}

.cube-face img {

    width: 120px;

    height: 120px;

    border-radius: 50%;

    object-fit: cover;

    margin-bottom: 15px;

    border: 3px solid #E1306C;

    position: relative;

    z-index: 2;

}

.cube-face h4 {

    color: #fff;

    margin-bottom: 5px;

    font-size: 1.2rem;

    position: relative;

    z-index: 2;

    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);

}

.cube-face p {

    color: #a5a5a5;

    font-size: 0.9rem;

    margin: 0;

    text-align: center;

    position: relative;

    z-index: 2;

    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);

}



/* Face positions */

.cube-front {
    transform: rotateY(0deg) translateZ(175px);
}

.cube-right {
    transform: rotateY(90deg) translateZ(175px);
}

.cube-back {
    transform: rotateY(180deg) translateZ(175px);
}

.cube-left {
    transform: rotateY(-90deg) translateZ(175px);
}

.cube-top {
    transform: rotateX(90deg) translateZ(175px);
}

.cube-bottom {
    transform: rotateX(-90deg) translateZ(175px);
}



.cube-instructions {



    margin-top: 50px;

    color: #a5a5a5;

    font-size: 0.9rem;

    letter-spacing: 2px;

    text-transform: uppercase;

    animation: pulse 2s infinite;

}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

}



/* Responsive Cube */

@media (max-width: 768px) {

    .team-cube {

        width: 260px;

        height: 260px;

    }

    .cube-face {

        width: 260px;

        height: 260px;

        padding: 15px;

    }

    .cube-face img {

        width: 100px;

        height: 100px;

    }

    .cube-front {
        transform: rotateY(0deg) translateZ(130px);
    }

    .cube-right {
        transform: rotateY(90deg) translateZ(130px);
    }

    .cube-back {
        transform: rotateY(180deg) translateZ(130px);
    }

    .cube-left {
        transform: rotateY(-90deg) translateZ(130px);
    }

    .cube-top {
        transform: rotateX(90deg) translateZ(130px);
    }

    .cube-bottom {
        transform: rotateX(-90deg) translateZ(130px);
    }

}

/* Dynamic Hero Background */
.hero-dynamic-bg {
    filter: grayscale(100%);
    transition: filter 1s ease-in-out;
}

.hero-section:hover .hero-dynamic-bg,
.hero-dynamic-bg:active {
    filter: grayscale(0%);
}

/* Highlight for The Power House of Branding */
.hero-overline {
    font-size: 1.5rem !important;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(41, 151, 255, 0.8), 0 0 20px rgba(225, 48, 108, 0.8);
    margin-bottom: 20px;
}

/* --- EMERGENCY OVERRIDES TO FIX LAYOUT --- */

/* Fix Hamburger Menu on Desktop */
.hamburger {
    display: none !important;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 30px !important;
        height: 20px !important;
        z-index: 9999 !important;
    }

    .hamburger span {
        display: block !important;
        height: 2px !important;
        background-color: #fff !important;
        transition: all 0.3s ease !important;
        margin-left: auto;
        /* Align to the right edge */
    }

    .hamburger span:nth-child(1) {
        width: 100% !important;
    }

    .hamburger span:nth-child(2) {
        width: 75% !important;
    }

    .hamburger span:nth-child(3) {
        width: 50% !important;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg) !important;
        width: 100% !important;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0 !important;
        width: 0 !important;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg) !important;
        width: 100% !important;
    }

    .nav-menu {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        /* Horizontally center items */
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 50vw !important;
        /* Extend to half page */
        height: 100vh !important;
        background: rgba(17, 17, 17, 0.95) !important;
        backdrop-filter: blur(10px);
        padding-top: 220px !important;
        /* Pushed menus even further down */
        padding-left: 0 !important;
        /* Removed left padding to allow true centering */
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
        z-index: 9998 !important;
        gap: 2.5rem !important;
        /* Increased gap between menus */
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu a {
        font-size: 1.1rem !important;
        /* Increased font size */
        letter-spacing: 1px !important;
        padding: 10px 20px !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
    }

    .nav-menu a:hover,
    .nav-menu a:active {
        background-color: #fff !important;
        color: #000 !important;
    }

    .nav-menu.active {
        right: 0 !important;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.4s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.5s;
    }
}

/* Fix Branding Chart alignment */
.chart-grid,
.graph-line,
.graph-area,
.social-nodes,
.social-paths {
    transform: none !important;
}

@media (max-width: 768px) {

    .chart-grid,
    .graph-line,
    .graph-area {
        transform: scale(0.6) !important;
        transform-origin: center center !important;
    }

    .timeline-group {
        transform: scale(0.6) !important;
        transform-origin: center center !important;
    }
}

/* Lead Gen Popup Grayscale to Color */
.bubble-inner img {
    filter: grayscale(100%);
    transition: filter 0.4s ease-in-out;
}

.bubble-container:hover .bubble-inner img,
.bubble-container:active .bubble-inner img {
    filter: grayscale(0%);
}

/* Correct Lead Gen Popup Grayscale */
.bubble-inner {
    filter: grayscale(100%) !important;
    transition: filter 0.4s ease-in-out;
    cursor: pointer;
}

.bubble-inner:hover,
.bubble-inner:active {
    filter: grayscale(0%) !important;
}

/* Smooth Navbar Hide/Show */
#navbar {
    transition: transform 0.4s ease-in-out, background 0.3s ease, border-bottom 0.3s ease !important;
}

/* Founder Interactive Card */
.founder-card-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 5rem;
    width: 100%;
}

.founder-card-interactive {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    max-width: 350px;
    overflow: hidden;
    cursor: pointer;
}

.founder-card-interactive.expanded {
    max-width: 1000px;
    background: #111;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(225, 48, 108, 0.2);
    border-color: rgba(225, 48, 108, 0.5);
}

.founder-image-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 300px;
    transition: transform 0.5s ease;
}

.founder-card-interactive.expanded .founder-image-col {
    transform: translateX(-20px);
}

.founder-image-col img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    /* Match other members */
    object-fit: cover;
    object-position: top center;
    border: 4px solid var(--accent-color);
    margin-bottom: 1rem;
    transition: all 0.5s ease;
}

.founder-card-interactive.expanded .founder-image-col img {
    transform: scale(1.05);
    border-color: #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.founder-card-interactive.expanded .founder-image-col img {
    transform: scale(1.05);
}

.founder-image-col h4 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.founder-details-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    max-width: 0;
    padding-left: 0;
}

.founder-card-interactive.expanded .founder-details-col {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    max-width: 600px;
    padding-left: 30px;
    border-left: 1px solid #333;
    margin-left: 20px;
}

.detail-block {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid #333;
    transition: border-color 0.3s ease;
}

.detail-block:hover {
    border-left-color: #FFD700;
}

.detail-block h5 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #fff, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.detail-block h5 svg {
    flex-shrink: 0;
}

.detail-block p {
    color: #a5a5a5;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .founder-card-interactive {
        flex-direction: column;
        max-width: 100%;
    }

    .founder-card-interactive.expanded {
        max-width: 100%;
    }

    .founder-details-col {
        transform: translateY(30px);
    }

    .founder-card-interactive.expanded .founder-details-col {
        transform: translateY(0);
        padding-left: 0;
        padding-top: 20px;
        border-left: none;
        border-top: 1px solid #333;
        margin-left: 0;
        margin-top: 20px;
        max-width: 100%;
    }
}

.team-grid-3 .team-member img {
    width: 250px !important;
    height: 250px !important;
    border-width: 3px;
    object-fit: cover;
    object-position: top center;
    image-rendering: high-quality;
    -webkit-font-smoothing: antialiased;
}

.team-grid-3 .team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-grid-3 .team-member p {
    font-size: 0.9rem;
}

.team-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
    justify-items: center;
}

@media (max-width: 768px) {
    .team-grid-3 {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .floating-whatsapp svg {
        width: 25px;
        height: 25px;
    }
}

/* Update floating whatsapp to handle img properly */
.floating-whatsapp {
    background-color: transparent !important;
    box-shadow: none !important;
}

.floating-whatsapp img {
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover img {
    transform: scale(1.1);
    box-shadow: 2px 2px 20px rgba(37, 211, 102, 0.5);
}

/* Service Overline Style */
.service-overline {
    font-size: 0.9rem !important;
    color: #aaa !important;
    letter-spacing: 2px !important;
    margin-bottom: 0.5rem !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
}

/* Hero Image Black & White to Color Transition */
.hero-dynamic-bg {
    filter: grayscale(100%);
    transition: filter 0.8s ease;
}

.hero-bg-video:hover .hero-dynamic-bg,
.hero-section:active .hero-dynamic-bg {
    filter: grayscale(0%);
}

/* Adjust Floating WhatsApp position slightly higher */
.floating-whatsapp {
    bottom: 50px !important;
}

/* Ensure zoom-info text sits on top of all SVGs */
.zoom-info {
    z-index: 10 !important;
}

/* Adjust WhatsApp icon higher */
.floating-whatsapp {
    bottom: 120px !important;
}

/* Social Icons in Header */
.header-socials {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: 20px;
}

.header-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.header-socials a:hover {
    opacity: 1;
}

/* Social Icons in Mobile Nav */
.mobile-socials {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.mobile-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* Hide header socials on mobile */
@media (max-width: 768px) {
    .header-socials {
        display: none !important;
    }
}

/* Ensure Floating WhatsApp has no white border and is higher */
.floating-whatsapp {
    background-color: #25D366 !important;
    border: none !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5) !important;
    bottom: 180px !important;
}

.floating-whatsapp svg {
    fill: white !important;
    width: 35px !important;
    height: 35px !important;
}

/* Contact Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.contact-card h4 {
    color: #86868B;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.contact-card p,
.contact-card a {
    color: #FFF;
    font-size: 1.1rem;
    text-decoration: none;
    line-height: 1.5;
}

.contact-card a:hover {
    color: #2997FF;
}

/* Hero Bulb Mobile Touch Fix */
.hero-dynamic-bg {
    cursor: pointer;
}

.hero-dynamic-bg.color-active {
    filter: grayscale(0%) !important;
}

/* Social icons gap increase */
.header-socials {
    gap: 30px !important;
}

.mobile-socials {
    gap: 30px !important;
}

/* Force Mobile Socials to Bottom */
.mobile-nav-links {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.mobile-socials {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    gap: 30px !important;
    justify-content: center;
}

/* Final Fix for Floating WhatsApp */
.floating-whatsapp {
    bottom: 40px !important;
    right: 50px !important;
}

/* Final Fix for Mobile Socials */
.mobile-nav-links {
    height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-bottom: 80px;
    /* Space for socials */
}

.mobile-socials {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex !important;
    flex-direction: row !important;
    gap: 30px !important;
    justify-content: center;
    z-index: 100;
}

/* Higher Floating WhatsApp */
.floating-whatsapp {
    bottom: 80px !important;
}

/* Audio Waves Animation */




/* Timeline Scaling for different views */
#master-timeline-scale {
    transform: scale(0.7) translate(0px, 100px);
    transform-origin: center;
}


/* Timeline Master Scale */
.timeline-master-scale {
    transform-origin: center;
    transform: scale(0.5) translate(-150px, 150px);
}

@media (max-width: 768px) {
    .timeline-master-scale {
        transform: scale(0.45) translate(-50px, 40px) !important;
    }
}

/* Dim images in Services section for text readability */
.zoom-content img {
    filter: grayscale(40%) brightness(0.4) !important;
}