.elementor-19 .elementor-element.elementor-element-b4db172{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-e67885b */:root {
            --primary: #3A5F7D;
            --secondary: #F4E8D8;
            --accent: #F26827;
            --green: #305F37;
            --dark: #1E223C;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background: var(--white);
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
        }

        /* ========================================
           STICKY HEADER - OPTIMIZED
           ======================================== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 1000;
            background: 
                linear-gradient(rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)),
                url('https://rishiprabhakar.com/wp-content/uploads/2026/04/shutterstock_1008222754-1-scaled.jpg') center/cover no-repeat;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(58, 95, 125, 0.1);
            transition: all 0.3s ease;
        }

        header.scrolled {
            box-shadow: 0 5px 30px rgba(30, 34, 60, 0.1);
        }

        .header-container {
            max-width: 100%;
            width: 100%;
            margin: 0 auto;
            padding: 0.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            height: 45px;
            display: block;
        }

        .logo img {
            height: 100%;
            width: auto;
            display: block;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
            white-space: nowrap;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--accent);
        }

        nav a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        /* Mobile Menu */
        @media (max-width: 768px) {
            .header-container {
                padding: 0.5rem 1.5rem;
            }

            .logo {
                height: 38px;
            }

            .logo img {
                height: 100%;
            }

            .menu-toggle {
                display: block;
            }

            nav {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                padding: 1.5rem 1rem;
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s ease;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                max-height: calc(100vh - 80px);
                overflow-y: auto;
            }

            nav.active {
                transform: translateY(0);
                opacity: 1;
            }

            nav ul {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }

            nav a {
                font-size: 1rem;
                display: block;
                width: 100%;
                text-align: center;
                padding: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .logo {
                height: 35px;
            }
        }

        /* Typography - CONSISTENT SIZING */
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
            color: var(--dark);
        }

        h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        /* All section headings - consistent size */
        h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        /* All card titles - consistent size */
        h3 {
            font-size: clamp(1.4rem, 3vw, 1.8rem);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        /* All sub-headings - consistent size */
        h4 {
            font-size: 1.15rem;
            font-weight: 700;
        }

        /* All descriptions/paragraphs - consistent size */
        p {
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
        }

        /* Section Label - Professional minimal style */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1.5rem;
            padding: 0.5rem 1.2rem;
            background: transparent;
            border-left: 3px solid var(--accent);
            border-radius: 0;
        }

        /* Center section content by default */
        section > .container > div:first-child,
        section > .container > .reveal:first-child {
            text-align: center;
        }

        section h2 {
            text-align: center;
        }

        section > .container > div:first-child .section-label,
        section > .container > .reveal:first-child .section-label {
            margin-left: auto;
            margin-right: auto;
        }

        /* Override centering for About section - keep LEFT aligned */
        #about .about-content {
            text-align: left;
        }

        #about .about-content .section-label {
            margin-left: 0;
            margin-right: auto;
        }

        #about .about-content h2 {
            text-align: left;
        }

        #about .about-content p {
            text-align: left;
        }

        /* ========================================
           HERO SECTION
           ======================================== */
        #hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: 
                linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
                url('https://rishiprabhakar.com/wp-content/uploads/2026/04/shutterstock_1071710666-1-scaled.jpg') center/cover no-repeat;
            color: var(--white);
            position: relative;
            overflow: hidden;
            padding: 8rem 0 3rem;
        }

        /* Abstract decorative patterns - Brush stroke style */
        #hero::after {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -100px;
            width: 500px;
            height: 500px;
            border: 3px dashed rgba(242, 104, 39, 0.15);
            border-radius: 50%;
            pointer-events: none;
            animation: rotate 60s linear infinite;
        }

        #hero::before {
            content: '';
            position: absolute;
            top: 100px;
            left: -150px;
            width: 400px;
            height: 400px;
            border: 2px dashed rgba(242, 104, 39, 0.12);
            border-radius: 50%;
            pointer-events: none;
            animation: rotate 80s linear infinite reverse;
        }

        /* Additional circles for richer pattern */
        .hero-orb.orb-1::before {
            content: '';
            position: absolute;
            top: 50%;
            right: 10%;
            width: 300px;
            height: 300px;
            border: 2px dotted rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-orb.orb-2::after {
            content: '';
            position: absolute;
            bottom: 20%;
            left: 15%;
            width: 250px;
            height: 250px;
            border: 2px dotted rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Subtle animated gradient orbs */
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.15;
            animation: orbFloat 20s ease-in-out infinite;
        }

        .orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--accent), transparent);
            top: -250px;
            left: -150px;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, #F4E8D8, transparent);
            bottom: -200px;
            right: -150px;
            animation-delay: -10s;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(40px, -40px); }
        }

        .hero-content-center {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-content-center h1 {
            color: var(--white);
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
            text-align: center;
        }

        .hero-tagline {
            font-size: clamp(1.1rem, 3vw, 1.4rem);
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.7;
            text-align: center;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
        }

        /* CTA Buttons */
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 3rem;
            background: linear-gradient(135deg, var(--accent) 0%, #d67545 100%);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(242, 104, 39, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(242, 104, 39, 0.5);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 3rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: var(--accent);
            transform: translateY(-3px);
            color: var(--white);
        }

        /* Hero Stats */
        .hero-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .stat-item {
            padding: 1.5rem 2rem;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
            min-width: 160px;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 10px 30px rgba(232, 149, 111, 0.2);
        }

        .stat-number {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            font-family: 'Playfair Display', serif;
            color: var(--accent);
            display: block;
            margin-bottom: 0.25rem;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
        }

        /* ========================================
           SECTIONS - REDUCED PADDING BY HALF
           ======================================== */
        section {
            padding: 4rem 0;
            position: relative;
        }

        /* About */
        #about {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        /* Decorative circular patterns - Brush stroke style */
        #about::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 500px;
            height: 500px;
            border: 2px dashed rgba(242, 104, 39, 0.12);
            border-radius: 50%;
            pointer-events: none;
            animation: rotate 70s linear infinite;
        }

        #about::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 600px;
            height: 600px;
            border: 3px dashed rgba(48, 95, 55, 0.1);
            border-radius: 50%;
            pointer-events: none;
            animation: rotate 90s linear infinite reverse;
        }

        .about-grid::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 350px;
            height: 350px;
            border: 2px dotted rgba(242, 104, 39, 0.08);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .about-grid::after {
            content: '';
            position: absolute;
            top: 20%;
            right: 10%;
            width: 200px;
            height: 200px;
            border: 1px dotted rgba(48, 95, 55, 0.08);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            position: relative;
        }

        /* Left-align about content on desktop */
        .about-content {
            text-align: left;
        }

        .about-content .section-label {
            margin-left: 0;
            margin-right: auto;
        }

        .about-content h2 {
            text-align: left;
        }

        .about-image {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(30, 34, 60, 0.15);
            transition: all 0.4s ease;
            position: relative;
            max-width: 450px;
            margin: 0 auto;
        }

        /* RESTORED: Inside card effect - moving gradient */
        .about-image::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(232, 149, 111, 0.2), transparent);
            transform: rotate(45deg);
            animation: shimmer 4s infinite;
        }

        @keyframes shimmer {
            0%, 100% { transform: translateX(-100%) rotate(45deg); }
            50% { transform: translateX(100%) rotate(45deg); }
        }

        .about-image:hover {
            transform: translateY(-10px);
            box-shadow: 0 40px 80px rgba(232, 149, 111, 0.25);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.4s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-content h2 {
            position: relative;
            padding-bottom: 20px;
        }

        /* Left-aligned divider */
        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #E8956F, #d67d5a);
            border-radius: 2px;
        }

        .about-content p {
            color: rgba(30, 34, 60, 0.8);
            line-height: 1.9;
            text-align: left;
        }

        /* Highlight Cards - LEFT ALIGNED */
        .about-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .highlight-item {
            padding: 2rem;
            background: rgba(58, 95, 125, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(58, 95, 125, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-align: left;
            z-index: 2;
        }

        /* RESTORED: Inside effect - animated shine */
        .highlight-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(232, 149, 111, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .highlight-item:hover::before {
            left: 100%;
        }

        .highlight-item:hover {
            background: rgba(232, 149, 111, 0.05);
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(232, 149, 111, 0.12);
        }

        .highlight-text h4 {
            margin-bottom: 0.3rem;
            font-family: 'Inter', sans-serif;
            text-align: left;
        }

        .highlight-text p {
            margin: 0;
            color: rgba(30, 34, 60, 0.7);
            text-align: left;
            line-height: 1.4;
        }

        /* Work Section */
        #work {
            background: linear-gradient(135deg, rgba(242, 104, 39, 0.03) 0%, rgba(242, 104, 39, 0.05) 100%);
            position: relative;
            overflow: hidden;
        }

        /* Abstract curved patterns - Brush stroke style */
        #work::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -50px;
            width: 600px;
            height: 600px;
            border: 2px dashed rgba(48, 95, 55, 0.12);
            border-radius: 50%;
            pointer-events: none;
            animation: rotate 75s linear infinite;
        }

        #work::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -100px;
            width: 500px;
            height: 500px;
            border: 3px dashed rgba(242, 104, 39, 0.15);
            border-radius: 50%;
            pointer-events: none;
            animation: rotate 95s linear infinite reverse;
        }

        .work-grid::before {
            content: '';
            position: absolute;
            top: 30%;
            left: 50%;
            transform: translateX(-50%);
            width: 400px;
            height: 400px;
            border: 2px dotted rgba(48, 95, 55, 0.08);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .work-grid::after {
            content: '';
            position: absolute;
            bottom: 10%;
            right: 15%;
            width: 250px;
            height: 250px;
            border: 2px dotted rgba(242, 104, 39, 0.1);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .work-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
            position: relative;
        }

        /* Wrapper for centering last row */
        @supports (display: grid) {
            .work-grid {
                grid-template-columns: repeat(6, 1fr);
            }
            
            .work-card:nth-child(1),
            .work-card:nth-child(2),
            .work-card:nth-child(3) {
                grid-column: span 2;
            }
            
            /* Center last 2 cards */
            .work-card:nth-child(4) {
                grid-column: 2 / span 2;
            }
            
            .work-card:nth-child(5) {
                grid-column: 4 / span 2;
            }
        }

        .work-card {
            background: var(--white);
            border-radius: 12px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(58, 95, 125, 0.1);
            border-left: 4px solid transparent;
            position: relative;
            overflow: hidden;
            z-index: 2;
        }

        /* Professional top accent line */
        .work-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(135deg, #E8956F, #d67d5a);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .work-card:hover::before {
            transform: scaleX(1);
        }

        .work-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(30, 34, 60, 0.12);
            border-left-color: var(--accent);
        }

        .work-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            transition: color 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .work-card:hover h3 {
            color: var(--accent);
        }

        .work-card p {
            margin: 0;
            color: rgba(30, 34, 60, 0.75);
            position: relative;
            z-index: 1;
        }

        /* Projects Section */
        /* Ventures Section - Merged Projects & Initiatives */
        #ventures {
            background: 
                linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)),
                url('https://rishiprabhakar.com/wp-content/uploads/2026/04/shutterstock_1071710666-1-scaled.jpg') center/cover no-repeat;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        #ventures .section-label {
            background: rgba(255, 255, 255, 0.15);
            border-left-color: rgba(255, 255, 255, 0.6);
            color: var(--white);
        }

        #ventures h2 {
            color: var(--white);
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }

        /* Ventures Grid - 1H + 1H + 2V + 1H Layout */
        .ventures-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-top: 4rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Venture Cards - White Background with Content */
        .venture-card {
            background: var(--white);
            border-radius: 25px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        /* Horizontal Cards - Span 2 columns, 70% width, centered */
        .venture-card.horizontal {
            grid-column: span 2;
            min-height: 350px;
            max-width: 70%;
            margin-left: auto;
            margin-right: auto;
        }

        /* Vertical Cards - Span 1 column */
        .venture-card.vertical {
            grid-column: span 1;
            min-height: 450px;
        }

        /* Logo replaces title */
        .venture-logo {
            width: 180px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .venture-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        /* Venture Badge */
        .venture-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
            align-self: flex-start;
            position: relative;
            z-index: 1;
        }

        /* Venture Description */
        .venture-card p {
            color: rgba(30, 34, 60, 0.85);
            position: relative;
            z-index: 1;
            flex-grow: 1;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        /* Venture Stats */
        .venture-stats {
            display: flex;
            gap: 2.5rem;
            margin-top: auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(30, 34, 60, 0.1);
            position: relative;
            z-index: 1;
        }

        .venture-stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            display: block;
            font-family: 'Playfair Display', serif;
        }

        .venture-stat-label {
            font-size: 0.85rem;
            color: rgba(30, 34, 60, 0.7);
            margin-top: 0.3rem;
        }

        /* Hover Effects */
        .venture-card::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(45deg, 
                var(--accent), 
                var(--green), 
                var(--accent));
            background-size: 400% 400%;
            border-radius: 25px;
            z-index: 0;
            animation: gradientShift 6s ease infinite;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .venture-card:hover::before {
            opacity: 1;
        }

        .venture-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
        }

        /* Inner White Background Layer */
        .venture-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--white);
            border-radius: 25px;
            z-index: 0;
        }
            color: rgba(30, 34, 60, 0.8);
            position: relative;
            z-index: 1;
        }

        /* Section Subtitle */
        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 0.5rem;
            margin-bottom: 0;
            font-weight: 400;
        }

        /* Media Section */
        #media {
            background-color: #2a2a2a;
            background-image: url('https://rishiprabhakar.com/wp-content/uploads/2026/04/shutterstock_1049822024-1-scaled.jpg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: scroll;
            position: relative;
            color: var(--white);
        }

        #media::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.75);
            z-index: 0;
            pointer-events: none;
        }

        #media .container {
            position: relative;
            z-index: 1;
        }

        #media .section-label {
            background: rgba(255, 255, 255, 0.15);
            border-left-color: rgba(255, 255, 255, 0.6);
            color: var(--white);
        }

        #media h2, #media h3, #media p {
            color: var(--white);
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }

        .media-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }

        .media-card {
            background: rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .media-card:hover {
            transform: translateY(-10px);
            background: rgba(0, 0, 0, 0.45);
            border-color: var(--green);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
        }

        .media-card h3 {
            margin-bottom: 1rem;
        }

        .media-card p {
            margin: 0;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Legacy Section - CENTERED (Only this one!) */
        #legacy {
            background: rgba(242, 104, 39, 0.04);
            position: relative;
            overflow: hidden;
        }

        /* Brush stroke circles */
        #legacy::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 550px;
            height: 550px;
            border: 3px dashed rgba(242, 104, 39, 0.15);
            border-radius: 50%;
            pointer-events: none;
            animation: rotate 70s linear infinite;
        }

        #legacy::after {
            content: '';
            position: absolute;
            bottom: -120px;
            right: -120px;
            width: 600px;
            height: 600px;
            border: 2px dashed rgba(48, 95, 55, 0.12);
            border-radius: 50%;
            pointer-events: none;
            animation: rotate 90s linear infinite reverse;
        }

        .legacy-grid::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 400px;
            border: 2px dotted rgba(242, 104, 39, 0.1);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .legacy-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 5rem;
        }

        .legacy-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 5rem;
            margin-top: 5rem;
            position: relative;
        }

        .legacy-card {
            background: var(--white);
            border-radius: 25px;
            padding: 3rem 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            border-top: 5px solid var(--accent);
            box-shadow: 0 10px 30px rgba(30, 34, 60, 0.08);
            position: relative;
            z-index: 2;
        }

        .legacy-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 70px rgba(30, 34, 60, 0.18);
        }

        .legacy-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 2rem;
            transition: all 0.3s ease;
        }

        /* Father - Orange border */
        .legacy-card:nth-child(1) .legacy-image {
            border: 5px solid var(--accent);
            box-shadow: 0 15px 40px rgba(242, 104, 39, 0.3);
        }

        /* Mother - Green border */
        .legacy-card:nth-child(2) .legacy-image {
            border: 5px solid var(--green);
            box-shadow: 0 15px 40px rgba(48, 95, 55, 0.3);
        }

        .legacy-card:nth-child(1):hover .legacy-image {
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(242, 104, 39, 0.5);
        }

        .legacy-card:nth-child(2):hover .legacy-image {
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(48, 95, 55, 0.5);
        }

        .legacy-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .legacy-card h3 {
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .legacy-role {
            color: var(--accent);
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .legacy-card p {
            text-align: left;
            color: rgba(30, 34, 60, 0.8);
        }

        /* Vision Section - CENTERED */
        #vision {
            background: 
                linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)),
                url('https://rishiprabhakar.com/wp-content/uploads/2026/04/shutterstock_1008222754-1-scaled.jpg') center/cover no-repeat;
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Abstract decorative patterns - Brush stroke style */
        #vision::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 700px;
            height: 700px;
            border: 2px dashed rgba(242, 104, 39, 0.12);
            border-radius: 50%;
            pointer-events: none;
            animation: rotate 85s linear infinite;
        }

        #vision::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 500px;
            border: 3px dashed rgba(48, 95, 55, 0.15);
            border-radius: 50%;
            pointer-events: none;
            animation: rotate 100s linear infinite reverse;
        }

        .vision-content::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            border: 2px dotted rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            pointer-events: none;
        }

        .vision-content::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 250px;
            height: 250px;
            border: 2px dotted rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            pointer-events: none;
        }

        #vision .section-label {
            background: rgba(255, 255, 255, 0.15);
            border-left-color: rgba(255, 255, 255, 0.6);
            color: var(--white);
        }

        .vision-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            position: relative;
        }

        #vision h2, #vision p {
            color: var(--white);
            text-align: center;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }

        .vision-content p {
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.95);
        }

        .vision-quote {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            font-style: italic;
            font-family: 'Playfair Display', serif;
            margin: 3rem 0;
            padding: 2.5rem;
            border-left: 5px solid var(--accent);
            background: rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(15px);
            border-radius: 15px;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
        }

        /* Contact Section - CENTERED */
        #contact {
            background: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Brush stroke circles */
        #contact::before {
            content: '';
            position: absolute;
            top: -90px;
            right: -90px;
            width: 500px;
            height: 500px;
            border: 3px dashed rgba(242, 104, 39, 0.15);
            border-radius: 50%;
            pointer-events: none;
            animation: rotate 65s linear infinite;
        }

        #contact::after {
            content: '';
            position: absolute;
            bottom: -110px;
            left: -110px;
            width: 550px;
            height: 550px;
            border: 2px dashed rgba(48, 95, 55, 0.12);
            border-radius: 50%;
            pointer-events: none;
            animation: rotate 85s linear infinite reverse;
        }

        .social-grid::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 380px;
            height: 380px;
            border: 2px dotted rgba(242, 104, 39, 0.1);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .contact-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-wrapper .section-label {
            margin-left: auto;
            margin-right: auto;
        }

        .contact-wrapper h2 {
            text-align: center;
        }

        .contact-intro {
            color: rgba(30, 34, 60, 0.8);
            margin-bottom: 4rem;
            text-align: center;
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 3rem;
            position: relative;
        }

        .social-card {
            background: linear-gradient(135deg, #F4E8D8 0%, #e8dcc8 100%);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            text-decoration: none;
            display: block;
            position: relative;
            overflow: hidden;
            z-index: 2;
        }

        /* RESTORED: Shine effect */
        .social-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(232, 149, 111, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .social-card:hover::before {
            left: 100%;
        }

        .social-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 25px 60px rgba(232, 149, 111, 0.25);
        }

        .social-icon-circle {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--green), #245029);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 25px rgba(48, 95, 55, 0.3);
            transition: all 0.3s ease;
            color: var(--white);
            position: relative;
            z-index: 1;
        }

        .social-card:hover .social-icon-circle {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 15px 40px rgba(48, 95, 55, 0.6);
        }

        .social-card h4 {
            color: var(--dark);
            margin-bottom: 0.5rem;
            font-family: 'Inter', sans-serif;
            position: relative;
            z-index: 1;
        }

        .social-card p {
            color: rgba(30, 34, 60, 0.7);
            margin: 0;
            position: relative;
            z-index: 1;
        }

        /* ========================================
           FOOTER - MINIMAL & CLEAN
           ======================================== */
        footer {
            background: #F8F9FA;
            color: rgba(30, 34, 60, 0.8);
            padding: 2.5rem 0 1.5rem;
            border-top: 1px solid rgba(58, 95, 125, 0.1);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-content {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .footer-logo {
            margin-bottom: 2rem;
        }

        .footer-links {
            margin-bottom: 1.5rem;
        }

        .footer-links ul {
            list-style: none;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            max-width: 800px;
            margin: 0 auto;
        }

        .footer-links a {
            color: rgba(30, 34, 60, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
            font-weight: 500;
            white-space: nowrap;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(58, 95, 125, 0.1);
            padding-top: 1.5rem;
            text-align: center;
            color: rgba(30, 34, 60, 0.6);
            font-size: 0.8rem;
        }

        @media (max-width: 768px) {
            footer {
                padding: 2rem 0 1.5rem;
            }

            .footer-container {
                padding: 0 1.5rem;
            }

            .footer-logo {
                margin-bottom: 1.5rem;
            }

            .footer-logo img {
                height: 50px;
            }

            .footer-links ul {
                gap: 1.5rem;
                justify-content: center;
            }

            .footer-links a {
                font-size: 0.9rem;
            }

            .footer-bottom {
                font-size: 0.75rem;
                padding-top: 1rem;
            }
        }

        @media (max-width: 480px) {
            .footer-links ul {
                gap: 1rem;
            }

            .footer-links a {
                font-size: 0.85rem;
            }

            .footer-logo img {
                height: 45px;
            }

            .footer-bottom {
                font-size: 0.7rem;
            }
        }

        /* Scroll Reveal */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========================================
           MOBILE FIRST RESPONSIVE
           ======================================== */
        @media (max-width: 1200px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }

        @media (max-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .work-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            /* Reset grid to simple 2-column on tablet */
            @supports (display: grid) {
                .work-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
                
                .work-card:nth-child(1),
                .work-card:nth-child(2),
                .work-card:nth-child(3),
                .work-card:nth-child(4),
                .work-card:nth-child(5) {
                    grid-column: span 1;
                }
            }

            .legacy-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 2.5rem 0 !important;
            }

            /* Mobile-optimized circular patterns */
            #hero::before,
            #hero::after,
            #about::before,
            #about::after,
            #work::before,
            #work::after {
                opacity: 0.6;
            }

            /* Smaller circles visible on mobile */
            .hero-orb.orb-1::before {
                width: 200px;
                height: 200px;
                right: -50px;
                top: 30%;
            }

            .hero-orb.orb-2::after {
                width: 150px;
                height: 150px;
                left: -30px;
                bottom: 10%;
            }

            .about-grid::before {
                width: 250px;
                height: 250px;
            }

            .about-grid::after {
                width: 150px;
                height: 150px;
                right: -30px;
            }

            .work-grid::before {
                width: 300px;
                height: 300px;
            }

            .work-grid::after {
                width: 180px;
                height: 180px;
                right: -40px;
            }

            .container {
                padding: 0 1rem;
            }

            #hero {
                padding: 9rem 0 2.5rem;
            }

            /* Center hero content on mobile */
            .hero-content {
                text-align: center;
            }

            .hero-content h1 {
                text-align: center;
            }

            .hero-tagline {
                text-align: center;
            }

            .hero-badge {
                margin-left: auto;
                margin-right: auto;
            }

            /* Reorganize stats: 2 columns for first two, full width for third */
            .hero-stats {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }

            .stat-item {
                width: 100%;
            }

            .stat-item:nth-child(3) {
                grid-column: 1 / -1;
            }

            /* About section mobile reorder - image AFTER content */
            .about-grid {
                display: flex;
                flex-direction: column;
            }

            .about-content {
                order: 1;
                text-align: center;
            }

            .about-content .section-label {
                margin-left: auto;
                margin-right: auto;
            }

            .about-content h2 {
                text-align: center;
            }

            /* Center divider on mobile */
            .about-content h2::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .about-content p {
                text-align: center;
                font-size: 1.05rem;
            }

            .about-image {
                order: 2;
                margin-top: 2rem;
            }

            /* Highlight cards - left aligned on mobile */
            .about-highlights {
                grid-template-columns: 1fr;
                text-align: left;
            }

            .highlight-item {
                text-align: left;
            }

            .highlight-text {
                text-align: left;
            }

            .work-grid,
            .media-grid,
            .social-grid,
            .ventures-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            /* All venture cards stack as single column on mobile */
            .venture-card.horizontal,
            .venture-card.vertical {
                grid-column: span 1;
                max-width: 100%;
            }

            /* Reset all grid customizations on mobile */
            @supports (display: grid) {
                .work-grid {
                    grid-template-columns: 1fr;
                }
                
                .work-card:nth-child(1),
                .work-card:nth-child(2),
                .work-card:nth-child(3),
                .work-card:nth-child(4),
                .work-card:nth-child(5) {
                    grid-column: span 1;
                }
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 2rem 0 !important;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            .hero-tagline {
                font-size: 1rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            #hero {
                padding: 6.5rem 0 2rem;
            }

            .about-content p {
                font-size: 1rem;
            }
        }/* End custom CSS */