:root {
    --magenta: #d100b4;
    --yellow: #f7e034;
    --dark-bg: #0d0d0d;
    --card-bg: #1a1a1a;
    --text-light: #f5f5f5;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Typography & Colors */
.text-magenta {
    color: var(--magenta) !important;
}

.text-yellow {
    color: var(--yellow) !important;
}

.bg-magenta {
    background-color: var(--magenta) !important;
}

.bg-yellow {
    background-color: var(--yellow) !important;
    color: #000;
}

.text-muted {
    color: #fff !important;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
}

.section-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    width: 50%;
    height: 3px;
    background: var(--magenta);
    position: absolute;
    bottom: -10px;
    left: 0;
}

/* Navbar */
.navbar {
    background-color: rgba(13, 13, 13, 0.98);
    border-bottom: 1px solid #222;
}

.navbar-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    color: var(--text-light) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--yellow) !important;
}

/* Buttons */
.btn-custom {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0;
    transition: 0.3s;
    border: 2px solid transparent;
}

.btn-magenta {
    background: var(--magenta);
    color: #fff;
}

.btn-magenta:hover {
    background: transparent;
    border-color: var(--magenta);
    color: var(--magenta);
}

.btn-outline-yellow {
    border-color: var(--yellow);
    color: var(--yellow);
}

.btn-outline-yellow:hover {
    background: var(--yellow);
    color: #000;
}

/* Page Headers */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    text-align: center;
}

/* Sections & Cards */
.content-section {
    padding: 80px 0;
}

.bg-alt {
    background-color: #121212;
}

.info-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-bottom: 4px solid transparent;
    transition: 0.4s;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--magenta);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Contact Form */
.form-control {
    background: #222;
    border: 1px solid #333;
    color: #fff;
    border-radius: 0;
    padding: 15px;
}

.form-control:focus {
    background: #222;
    border-color: var(--magenta);
    color: #fff;
    box-shadow: none;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.hover-border-magenta:hover {
    border-color: var(--magenta) !important;
    transform: translateY(-5px);
}

.hover-border-yellow:hover {
    border-color: var(--yellow) !important;
    transform: translateY(-5px);
}

.hover-white:hover {
    color: #ffffff !important;
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.transition {
    transition: all 0.3s ease;
    cursor: pointer;
}

.hover-yellow-bg:hover {
    background-color: var(--yellow) !important;
    color: #000 !important;
}

.transition-all {
    transition: all 0.4s ease;
}

.service-card-premium {
    cursor: pointer;
}

.service-card-premium:hover {
    transform: translateY(-8px);
    background-color: #161616 !important;
}

/* Glowing Border Effects on Hover */
.hover-glow-magenta:hover {
    border-color: var(--magenta) !important;
    box-shadow: 0 10px 30px rgba(209, 0, 180, 0.15);
}

.hover-glow-yellow:hover {
    border-color: var(--yellow) !important;
    box-shadow: 0 10px 30px rgba(247, 224, 52, 0.1);
}

.workflow-circle {
    width: 80px;
    height: 80px;
    transition: 0.3s;
}

.workflow-circle:hover {
    transform: scale(1.1);
    background-color: #1a1a1a !important;
}

.border-dashed {
    border-top-style: dashed !important;
}


.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--yellow);
    transform: translateX(6px);
    /* Smooth slide right on hover */
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #1a1a1a;
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.social-icon:hover {
    background-color: var(--magenta);
    color: #fff;
    border-color: var(--magenta);
    transform: translateY(-4px);
    /* Floating effect */
    box-shadow: 0 5px 15px rgba(209, 0, 180, 0.4);
}

.footer-mail:hover,
.footer-legal:hover {
    color: var(--magenta) !important;
}

/* 1. Marquee Animation */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: inline-block;
    animation: scrollMarquee 20s linear infinite;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Moves exactly half the width to loop seamlessly */
}

/* 2. Giant Email Link */
.giant-email-link {
    font-size: clamp(2rem, 5vw, 6rem);
    /* Scales perfectly from mobile to desktop */
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.giant-email-link:hover {
    color: var(--magenta);
    transform: translateX(20px);
    /* Slides right dramatically */
}

/* 3. Modern Pill Navigation */
.footer-pill {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-pill:hover {
    background-color: var(--yellow);
    color: #000;
    border-color: var(--yellow);
    transform: translateY(-3px);
}

/* 4. Minimalist Text Socials (Awwwards Trend) */
.footer-minimal-socials a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.footer-minimal-socials a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--magenta);
    transition: width 0.3s ease;
}

.footer-minimal-socials a:hover {
    color: var(--magenta);
}

.footer-minimal-socials a:hover::after {
    width: 100%;
}

/* 5. Massive Bottom Text */
.massive-brand-text {
    font-size: 15vw;
    /* Scales with the width of the screen */
    line-height: 0.75;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
    /* Outline effect */
    background-clip: text;
    transition: all 0.5s ease;
}

/* Subtle glow on hover of the footer area */
.footer-avant-garde:hover .massive-brand-text {
    -webkit-text-stroke: 1px rgba(209, 0, 180, 0.3);
    /* Turns pinkish outline */
}

/* Utility */
.hover-white:hover {
    color: #fff !important;
}

.pointer-events-none {
    pointer-events: none;
}

.user-select-none {
    user-select: none;
}

/* 1. Massive Hero Typography */
.hero-title-massive {
    font-size: clamp(4rem, 10vw, 12rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin: 0;
}

.text-outline-magenta {
    color: transparent;
    -webkit-text-stroke: 2px var(--magenta);
    position: relative;
    transition: all 0.4s ease;
    font-family: 'Space Mono';
}

.text-outline-magenta:hover {
    color: var(--magenta);
    -webkit-text-stroke: 0px;
    text-shadow: 0 0 30px rgba(209, 0, 180, 0.5);
}

.text-outline-yellow {
    color: transparent;
    -webkit-text-stroke: 2px var(--yellow);
    transition: all 0.4s ease;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.text-outline-yellow:hover {
    color: var(--yellow);
    -webkit-text-stroke: 0px;
    text-shadow: 0 0 30px rgba(247, 224, 52, 0.5);
}

/* 2. Rotating Badge Animation */
.rotating-badge {
    width: 150px;
    height: 150px;
    position: absolute;
    right: 10%;
    bottom: 10%;
    animation: spin 10s linear infinite;
    z-index: 10;
    pointer-events: none;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* 3. Manifesto Statement */
.manifesto-text {
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: -1px;
}

/* 4. Interactive Interactive Services List (Awwwards Trend) */
.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #fff;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-row-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.service-row-icon {
    font-size: 2rem;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.5s ease;
    color: #000;
    z-index: 2;
}

.service-row-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--magenta);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

/* Yellow alternate background */
.service-row.row-yellow .service-row-bg {
    background-color: var(--yellow);
}

/* Hover States for Service Rows */
.service-row:hover {
    padding-left: 2vw;
    padding-right: 2vw;
    border-bottom-color: transparent;
}

.service-row:hover .service-row-bg {
    transform: translateY(0);
}

.service-row:hover .service-row-title {
    color: #000;
    transform: translateX(20px);
}

.service-row:hover .service-row-icon {
    opacity: 1;
    transform: translateX(0);
}

/* 5. Pill Video Button */
.play-reel-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 30px 10px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-reel-circle {
    width: 40px;
    height: 40px;
    background: var(--magenta);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all 0.3s ease;
}

.play-reel-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--magenta);
    color: #fff;
    transform: scale(1.05);
}

.play-reel-btn:hover .play-reel-circle {
    background: var(--yellow);
    color: #000;
    transform: scale(1.1);
}

/* 6. Marquee Top Border */
.marquee-container-top {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    background: var(--magenta);
    padding: 15px 0;
    transform: rotate(-2deg);
    width: 105vw;
    margin-left: -2.5vw;
    margin-top: 100px;
    margin-bottom: 100px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Client Logo Wall Styling */
.massive-client-text {
    font-weight: 900;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    margin: 0;
    padding: 10px 20px;
    font-family: 'Space Mono';
}

.massive-client-text:hover {
    color: #fff;
    -webkit-text-stroke: 0px;
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* 1. Floating Animation */
.floating-artwork {
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* 2. Ambient Glowing Orbs */
/* .glow-orb-magenta {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(209, 0, 180, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(40px);
    top: 10%;
    right: 20%;
    z-index: 0;
    animation: pulse 8s infinite alternate;
}

.glow-orb-yellow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(247, 224, 52, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(40px);
    bottom: 10%;
    right: 5%;
    z-index: 0;
    animation: pulse 6s infinite alternate-reverse;
} */

@keyframes pulse {
    0% {
        transform: scale(1) opacity(0.5);
    }

    100% {
        transform: scale(1.3) opacity(1);
    }
}

/* 3. VFX Tracking UI Markers */
.vfx-ui-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    font-family: monospace;
    font-size: 0.75rem;
    letter-spacing: 2px;
    pointer-events: none;
}

.crosshair {
    width: 15px;
    height: 15px;
    position: absolute;
}

.crosshair::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.crosshair::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
}

.crosshair-tl {
    top: -20px;
    left: -20px;
}

.crosshair-tr {
    top: -20px;
    right: -20px;
}

.crosshair-bl {
    bottom: -20px;
    left: -20px;
}

.crosshair-br {
    bottom: -20px;
    right: -20px;
}

/* 4. 3D Viewport Grid Background */
.viewport-grid {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50vw;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

/* --- NEW TEAM SECTION CSS (Avant-Garde Style) --- */

.team-section-bg {
    position: relative;
    background-color: #050505;
    overflow: hidden;
}

/* Giant faint background text */
.team-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 0.8;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

/* Brutalist ID Card */
.team-card-modern {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    z-index: 1;
    backdrop-filter: blur(5px);
}

.team-img-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-bottom: -50px;
    /* Pulls the name up over the image */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-img-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Effects */
.team-card-magenta:hover {
    border-color: var(--magenta);
    box-shadow: 0 10px 40px rgba(209, 0, 180, 0.1);
    transform: translateY(-10px);
}

.team-card-yellow:hover {
    border-color: var(--yellow);
    box-shadow: 0 10px 40px rgba(247, 224, 52, 0.08);
    transform: translateY(-10px);
}

.team-card-modern:hover .team-img-modern {
    filter: grayscale(0%) contrast(1.1);
    transform: scale(1.05);
}

.team-name-massive {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.85;
    position: relative;
    z-index: 2;
    color: #fff;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
    transition: all 0.4s ease;
    letter-spacing: -1px;
    font-family: 'Space Mono';
}

.team-card-magenta:hover .team-name-massive {
    color: #fff;
    -webkit-text-stroke: 0px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

.team-card-yellow:hover .team-name-massive {
    color: #fff;
    -webkit-text-stroke: 0px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

/* Technical Corner UI */
.tech-corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid transparent;
    transition: 0.3s ease;
}

.tc-tl {
    top: 10px;
    left: 10px;
    border-top-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
}

.tc-tr {
    top: 10px;
    right: 10px;
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
}

.tc-bl {
    bottom: 10px;
    left: 10px;
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
}

.tc-br {
    bottom: 10px;
    right: 10px;
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
}

.team-card-magenta:hover .tech-corner {
    border-color: var(--magenta);
}

.team-card-yellow:hover .tech-corner {
    border-color: var(--yellow);
}