/* @import "responsive.css"; */

/* CSS Variables for Theme Colors */
:root {
    /* Dark Mode (Default) */
    --bg-primary: #0E0815;
    --bg-secondary: #1A0B2E;
    --bg-surface: rgba(26, 11, 46, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #BDBDBD;
    --text-tertiary: #ccc;
    --color-purple: #7209B7;
    --color-cyan: #00D4FF;
    --color-cyan-dark: #00A8CC;
    --gradient-bg: linear-gradient(180deg, #1A0B2E 0%, #2D1B4E 100%);
    --card-bg: rgba(114, 9, 183, 0.3);
    --navbar-bg: rgba(114, 9, 183, 0.3);
    --shadow-color: rgba(114, 9, 183, 0.3);
}

/* Light Mode */
[data-theme="light"] {
    --bg-primary: #F8F7FF;
    --bg-secondary: #FFFFFF;
    --bg-surface: rgba(255, 255, 255, 0.95);
    --text-primary: #1A0B2E;
    --text-secondary: #5A565F;
    --text-tertiary: #6B6B6B;
    --color-purple: #7209B7;
    --color-cyan: #00A8CC;
    --color-cyan-dark: #0088AA;
    --gradient-bg: linear-gradient(180deg, #E8E6F5 0%, #D4D0E8 100%);
    --card-bg: rgba(255, 255, 255, 0.9);
    --navbar-bg: rgba(255, 255, 255, 0.9);
    --shadow-color: rgba(0, 0, 0, 0.1);
}

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

/* Humane Font Family - Thin (100) */
@font-face {
    font-family: 'Humane';
    src: url('../humane/Web-TT/Humane-Thin.woff2') format('woff2'),
        url('../humane/Web-TT/Humane-Thin.woff') format('woff'),
        url('../humane/Web-TT/Humane-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
    text-rendering: optimizeLegibility;
}

/* Humane Font Family - ExtraLight (200) */
@font-face {
    font-family: 'Humane';
    src: url('../humane/Web-TT/Humane-ExtraLight.woff2') format('woff2'),
        url('../humane/Web-TT/Humane-ExtraLight.woff') format('woff'),
        url('../humane/Web-TT/Humane-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
    text-rendering: optimizeLegibility;
}

/* Humane Font Family - Light (300) */
@font-face {
    font-family: 'Humane';
    src: url('../humane/Web-TT/Humane-Light.woff2') format('woff2'),
        url('../humane/Web-TT/Humane-Light.woff') format('woff'),
        url('../humane/Web-TT/Humane-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    text-rendering: optimizeLegibility;
}

/* Humane Font Family - Regular (400) */
@font-face {
    font-family: 'Humane';
    src: url('../humane/Web-TT/Humane-Regular.woff2') format('woff2'),
        url('../humane/Web-TT/Humane-Regular.woff') format('woff'),
        url('../humane/Web-TT/Humane-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    text-rendering: optimizeLegibility;
}

/* Humane Font Family - Medium (500) */
@font-face {
    font-family: 'Humane';
    src: url('../humane/Web-TT/Humane-Medium.woff2') format('woff2'),
        url('../humane/Web-TT/Humane-Medium.woff') format('woff'),
        url('../humane/Web-TT/Humane-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    text-rendering: optimizeLegibility;
}

/* Humane Font Family - SemiBold (600) */
@font-face {
    font-family: 'Humane';
    src: url('../humane/Web-TT/Humane-SemiBold.woff2') format('woff2'),
        url('../humane/Web-TT/Humane-SemiBold.woff') format('woff'),
        url('../humane/Web-TT/Humane-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    text-rendering: optimizeLegibility;
}

/* Humane Font Family - Bold (700) */
@font-face {
    font-family: 'Humane';
    src: url('../humane/Web-TT/Humane-Bold.woff2') format('woff2'),
        url('../humane/Web-TT/Humane-Bold.woff') format('woff'),
        url('../humane/Web-TT/Humane-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    text-rendering: optimizeLegibility;
}

/* Humane Font Family - ExtraBold (800) */
@font-face {
    font-family: 'Humane';
    src: url('../humane/Web-TT/Humane-ExtraBold.woff2') format('woff2'),
        url('../humane/Web-TT/Humane-ExtraBold.woff') format('woff'),
        url('../humane/Web-TT/Humane-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
    text-rendering: optimizeLegibility;
}

/* Humane Font Family - Black (900) */
@font-face {
    font-family: 'Humane';
    src: url('../humane/Web-TT/Humane-Black.woff2') format('woff2'),
        url('../humane/Web-TT/Humane-Black.woff') format('woff'),
        url('../humane/Web-TT/Humane-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
    text-rendering: optimizeLegibility;
}



body,
html {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    scroll-behavior: smooth;
    background: var(--bg-primary);
    color: var(--text-secondary);
    padding-bottom: 60px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2 {
    font-family: 'Humane', sans-serif;
    font-weight: 500;
    line-height: 100%;
    /* Regular weight */
}


h3 {
    font-family: 'Humane', sans-serif;
    font-size: 4rem !important;
    font-weight: 200;
    line-height: 1.2;
}


.purple {
    color: var(--color-purple);
}

.teal {
    color: var(--color-cyan);
}


.text-theme-primary {
    color: var(--text-primary);
}

.gradient-text-color {
    /* Apply linear gradient */
    background: linear-gradient(to right, #7209B7, #00D4FF);
    -webkit-background-clip: text;
    background-clip: text;
    /* Standard property for compatibility */
    background-clip: text;
    /* Standard property for compatibility */
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.fRegular {
    font-weight: 400;
}

.fLight {
    font-weight: 300;
}

.fMedium {
    font-weight: 500;
}

.fSemibold {
    font-weight: 600;
}

.fBold {
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    /* Main padding to control height and spacing */
    height: 60px;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
    overflow: hidden;
    /* Hide the pseudo-element before it animates */
    position: relative;
    z-index: 1;
    /* Keep text on top of the background effect */
    transition: color 0.5s ease-in-out;
}

.btn-primary {
    background-color: #0092FF !important;
    /* Base background color */
}

/* Pseudo-element for the ping-pong hover effect */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #006BFF;
    /* Darker shade for the effect */
    transition: width 0.5s ease-in-out;
    /* Animates the width */
    z-index: -1;
    /* Place behind the text */
}

/* Hover state for the ping-pong effect */
.btn-primary:hover::after {
    width: 100%;
    /* Expands the background on hover */
}

.btn-secondary {
    background-color: #3F2361 !important;
    /* Base background color */
    color: #ffffff;
}

/* Pseudo-element for the ping-pong hover effect */
.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #7209B7;
    /* Darker shade for the effect */
    transition: width 0.5s ease-in-out;
    /* Animates the width */
    z-index: -1;
    /* Place behind the text */
}

/* Hover state for the ping-pong effect */
.btn-secondary:hover::after {
    width: 100%;
    /* Expands the background on hover */
}


/* Button with icon */
.btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* Space between the icon and text */
}

.connectCta {
    width: 100%;
    position: fixed;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    bottom: 0px;
    z-index: 1;
}

.cover {
    width: 99vw;
    height: 100vh;
    position: relative;
}

.coverSplin {
    width: 100%;
    height: 100%;

}

.splineLogo {
    width: 140px;
    height: 44px;
    background-color: #000;
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-size: 12px;
    border-radius: 8px;
}

.navBox {
    position: fixed;
    width: 100%;
    z-index: 10;
}

.navbar {
    box-sizing: border-box;
    /* Ensures padding and border are included in the element's total width and height */
    z-index: 1;
    display: flex;
    border-radius: 12px;
    background: var(--navbar-bg);
    backdrop-filter: blur(8px);
    font-size: 12px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #000;
}

.navbar-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-links a:hover {
    color: var(--text-secondary);
}

.spline-watermark {
    display: hidden !important;
    position: relative !important;
}


.heading {
    font-size: 100px;
    font-weight: 400;
    line-height: 0.9;
}

.subText {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .3em;
}

.gradient-text {
    /* Apply linear gradient */
    background: linear-gradient(to right, #ffffff, #5A565F);
    -webkit-background-clip: text;
    background-clip: text;
    /* Standard property for compatibility */
    background-clip: text;
    /* Standard property for compatibility */
    -webkit-text-fill-color: transparent;
    color: transparent;
}

[data-theme="light"] .gradient-text {
    background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
}


/* Custom CSS to define the size and initial state of the cards */

.card {
    height: 480px;
    /* Set a fixed height for visual consistency */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    /* Hide content that might overflow during transitions */
    position: relative;
}

.card-content {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem;
}

.card-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.card-bg {
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    opacity: 0;
    /* Background is hidden by default */
}

.card-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* State when card is hovered/active */
.card.active .card-reveal {
    opacity: 1;
    transform: translateY(0);
}

.card.active .card-bg {
    opacity: 1;
    /* Background is visible when active */
}

/* Smooth scale effect on desktop hover */
@media (min-width: 1024px) {
    .card:hover {
        transform: translateY(-4px);
    }
}

#card-1 .card-bg {
    background-image: url('images/card-1.png');
}

/* Force white text on active card (video bg) in all modes */
.card.active .card-content,
.card.active .text-theme-primary {
    color: #ffffff !important;
}

#card-2 .card-bg {
    background-image: url('images/card-1.png');
}

#card-3 .card-bg {
    background-image: url('images/card-1.png');
}

#card-4 .card-bg {
    background-image: url('images/card-1.png');
}

/* Responsive Font Sizes for the main headlines */
.headline-lg {
    font-size: 3.5rem;
    line-height: 86%;
}

/* Hero Text Animations */
.hero-subtitle,
.hero-line,
.hero-description {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-subtitle.animate,
.hero-line.animate,
.hero-description.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered delays for hero lines */
.hero-subtitle.animate {
    transition-delay: 0.1s;
}

.hero-line[data-delay="0"].animate {
    transition-delay: 0.3s;
}

.hero-line[data-delay="1"].animate {
    transition-delay: 0.5s;
}

.hero-line[data-delay="2"].animate {
    transition-delay: 0.7s;
}

.hero-description.animate {
    transition-delay: 0.9s;
}


/* Solutions Section Styles */
.solutions-section {
    position: relative;
    overflow: hidden;
}

.solutions-title {
    font-family: 'Humane', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.2;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 320px);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Stagger animation for cards */
.solution-card[data-card="1"] {
    animation-delay: 0.1s;
}

.solution-card[data-card="2"] {
    animation-delay: 0.2s;
}

.solution-card[data-card="3"] {
    animation-delay: 0.3s;
}

.solution-card[data-card="4"] {
    animation-delay: 0.4s;
}

.solution-card[data-card="5"] {
    animation-delay: 0.5s;
}

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

.solution-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-title {
    font-family: 'Humane', sans-serif;
    font-size: 4rem !important;
    font-weight: 300;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
    transition: color 0.3s ease;
}

.solution-illustration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Grid positioning */
.solution-card-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    background: linear-gradient(135deg, #00D4FF 0%, #00A8CC 100%);
}


.solution-card-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    background: linear-gradient(135deg, #B8B3E9 0%, #8B7FC4 100%);
}

.solution-card-3 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    background: linear-gradient(135deg, #00D4FF 0%, #00A8CC 100%);
}

.solution-card-4 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    background: linear-gradient(135deg, #B8B3E9 0%, #8B7FC4 100%);
}

.solution-card-5 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    background: linear-gradient(135deg, #00D4FF 0%, #00A8CC 100%);
}

/* Hover effects */
.solution-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px var(--shadow-color);
}

.solution-card:hover .solution-card-inner {
    transform: scale(1.05);
}

.solution-card:hover .solution-illustration {
    transform: scale(1.1) rotate(2deg);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(114, 9, 183, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.solution-card:hover::before {
    opacity: 1;
}

.solutions-footer {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.8s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Portfolio Section Styles */
.portfolio-section {
    position: relative;
    overflow: hidden;
}

.portfolio-title {
    font-family: 'Humane', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.2;
}

.portfolio-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.portfolio-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.portfolio-carousel {
    overflow: hidden;
    border-radius: 24px;
}

.portfolio-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    position: relative;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover {
    transform: translateY(-8px);
}

.portfolio-card-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-card-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(114, 9, 183, 0.8) 0%, rgba(0, 212, 255, 0.6) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.view-project-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .view-project-btn {
    transform: scale(1);
}

.view-project-btn svg {
    color: #7209B7;
}

.portfolio-card-content {
    padding: 24px;
    background: var(--bg-surface);
    backdrop-filter: blur(10px);
}

.portfolio-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(114, 9, 183, 0.8);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-card-title {
    color: var(--text-primary);
    margin-top: 12px;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(114, 9, 183, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(114, 9, 183, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #7209B7;
    width: 32px;
    border-radius: 6px;
}

/* Portfolio Modal - Fullscreen */
.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    background: var(--bg-primary);
}

.portfolio-modal.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

#portfolioIframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Portfolio Detail Page Styles */
.portfolio-detail-page {
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

.portfolio-detail-container {
    width: 100%;
    min-height: 100vh;
}

/* Close Button */
.portfolio-close-btn {
    position: fixed;
    top: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(114, 9, 183, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.portfolio-close-btn:hover {
    background: rgba(114, 9, 183, 1);
    transform: rotate(90deg) scale(1.1);
}

/* Hero Section */
.portfolio-detail-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    position: relative;
}

.portfolio-detail-content {
    max-width: 800px;
    text-align: center;
    z-index: 2;
}

.portfolio-detail-title {
    font-family: 'Humane', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    margin: 24px 0;
    background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-detail-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-top: 16px;
}

.portfolio-detail-hero-image {
    margin-top: 60px;
    border-radius: 24px;
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-detail-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Project Info */
.portfolio-detail-info {
    padding: 80px 40px;
    background: var(--bg-surface);
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

/* .info-item h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-purple);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
} */

.info-item p {
    font-size: 1.125rem;
    color: var(--text-primary);
}

/* Project Description */
.portfolio-detail-description {
    padding: 120px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.description-content h2 {
    font-family: 'Humane', sans-serif;
    font-size: 4rem;
    font-weight: 200;
    color: var(--text-primary);
    margin: 60px 0 24px;
}

.description-content h2:first-child {
    margin-top: 0;
}

.description-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Gallery */
.portfolio-detail-gallery {
    padding: 80px 40px;
    background: var(--bg-surface);
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* CTA Section */
.portfolio-detail-cta {
    padding: 120px 40px;
    text-align: center;
}

.portfolio-detail-cta h2 {
    font-family: 'Humane', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 32px;
}

/* Testimonials Section Styles */
.testimonials-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background-image: url("../images/bledbg.svg");
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

.testimonials-scroll-container {
    position: relative;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 450px;
    min-width: 450px;
    background: var(--card-bg);
    backdrop-filter: blur(2px);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(114, 9, 183, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-company {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: capitalize;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7209B7 0%, #00D4FF 100%);
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.author-role {
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

/* Bento Grid Team Section Styles */
.bento-section {
    position: relative;
    overflow: hidden;
}

.bento-title {
    font-family: 'Humane', sans-serif;
    font-size: 5rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 280px);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-item {
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item:hover {
    transform: translateY(-4px);
}

/* Marquee Block - Spans full width at top */
.bento-marquee {
    grid-column: 1 / 4;
    grid-row: 1 / 2;
    background: linear-gradient(135deg, #1A0B2E 0%, #2D1B4E 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 12s linear infinite;
    will-change: transform;
}

.marquee-text {
    font-family: 'Humane', sans-serif;
    font-size: 10rem;
    font-weight: 300;
    color: #ffffff;
    white-space: nowrap;
    padding-right: 60px;
    text-transform: lowercase;
}

[data-theme="light"] .bento-marquee {
    background: linear-gradient(135deg, #1A0B2E 0%, #2D1B4E 100%);
}

[data-theme="light"] .marquee-text {
    color: #ffffff;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

/* Team Member Images - 3 equal boxes in row 2 */
.bento-team-image {
    position: relative;
    background: var(--bg-secondary);
    grid-row: 2 / 3;
}

.bento-team-image:nth-of-type(2) {
    grid-column: 1 / 2;
}

.bento-team-image:nth-of-type(3) {
    grid-column: 2 / 3;
}

.bento-team-image:nth-of-type(4) {
    grid-column: 3 / 4;
}

.bento-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-team-image:hover img {
    transform: scale(1.05);
}

/* Values Block - Bottom left, spans 2 columns */
.bento-values {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    background: linear-gradient(135deg, #00D4FF 0%, #00A8CC 100%);
    padding: 32px;
    display: flex;
    overflow: hidden;
    position: relative;
}

.bento-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    z-index: 0;
}

/* Value tags container with marquee animation */
.bento-values {
    display: flex;
    align-items: center;
}

.value-tags-wrapper {
    display: flex;
    animation: valueMarquee 20s linear infinite;
    will-change: transform;
}

.value-tag {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1A0B2E;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 16px;
    white-space: nowrap;
    flex-shrink: 0;
}

.value-tag:hover {
    transform: scale(1.05);
}

.value-tag span:first-child,
.value-tag span:last-child {
    font-size: 16px;
}

@keyframes valueMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Social Links Block - Bottom right */
.bento-social {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
    background: linear-gradient(135deg, #7209B7 0%, #5A07A0 100%);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.social-label {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Footer - Simple Design */
.footer-parallax {
    position: relative;
    background: var(--gradient-bg);
    padding: 80px 20px;
    margin-top: 100px;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.footer-header {
    margin-bottom: 40px;
}

.footer-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--text-primary);
    text-transform: uppercase;
    opacity: 0.8;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 20px;
    border-radius: 12px;
    position: relative;
}

.contact-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(114, 9, 183, 0.2), rgba(0, 212, 255, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:hover {
    transform: translateY(-4px);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: #7209B7;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.contact-item:hover svg {
    color: #00D4FF;
    transform: scale(1.1);
}

.contact-text {
    font-family: 'Humane', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    background: linear-gradient(135deg, #7209B7 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.footer-tagline {
    margin-bottom: 40px;
}

.footer-tagline p {
    font-size: 1.125rem;
    color: var(--text-primary);
    line-height: 1.8;
    font-weight: 300;
}

.highlight-purple {
    color: #7209B7;
    font-weight: 600;
}

.footer-copyright {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    font-size: 12px;
    color: var(--text-tertiary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Theme Toggle Button Styles */
.theme-toggle-btn {
    background: var(--navbar-bg);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    margin-left: 16px;
    position: relative;
    overflow: hidden;
}

.theme-toggle-btn:hover {
    background: var(--color-purple);
    color: #fff;
    transform: scale(1.1);
}

.theme-toggle-btn svg {
    position: absolute;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode: Show sun, hide moon */
.sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

/* Light mode: Show moon, hide sun */
[data-theme="light"] .sun-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

[data-theme="light"] .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}