 /* Scroll Animation Styles */
        .fade-in-section {
            opacity: 1; /* Changed from 0 to 1 to show content by default */
            transform: translateY(0); /* Start in normal position */
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .fade-in-section.animated {
            opacity: 0;
            transform: translateY(30px);
        }
        
        .fade-in-section.visible {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }
        
        
        /* Stagger animation for child elements */
        .stagger-item {
            opacity: 1; /* Changed from 0 to 1 */
            transform: translateY(0);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .stagger-item.animated {
            opacity: 0;
            transform: translateY(20px);
        }
        
        .stagger-item.visible {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }
        
        /* Delayed animations */
        .stagger-item:nth-child(1) { transition-delay: 0.1s; }
        .stagger-item:nth-child(2) { transition-delay: 0.2s; }
        .stagger-item:nth-child(3) { transition-delay: 0.3s; }
        .stagger-item:nth-child(4) { transition-delay: 0.4s; }
        .stagger-item:nth-child(5) { transition-delay: 0.5s; }
        .stagger-item:nth-child(6) { transition-delay: 0.6s; }
        
        /* Scale animation for images */
        .scale-in {
            opacity: 1; /* Changed from 0 to 1 */
            transform: scale(1);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .scale-in.animated {
            opacity: 0;
            transform: scale(0.95);
        }
        
        .scale-in.visible {
            opacity: 1 !important;
            transform: scale(1) !important;
        }
        
        /* Slide animations from different directions */
        .slide-left {
            opacity: 1; /* Changed from 0 to 1 */
            transform: translateX(0);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .slide-left.animated {
            opacity: 0;
            transform: translateX(-30px);
        }
        
        .slide-left.visible {
            opacity: 1 !important;
            transform: translateX(0) !important;
        }
        
        .slide-right {
            opacity: 1; /* Changed from 0 to 1 */
            transform: translateX(0);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .slide-right.animated {
            opacity: 0;
            transform: translateX(30px);
        }
        
        .slide-right.visible {
            opacity: 1 !important;
            transform: translateX(0) !important;
        }
        


        .side-nav-item.active .side-nav-line { background: #6b3c5a; width: 30px; }
        .side-nav-item.active .side-nav-label { color: #6b3c5a; font-weight: 500; }
        
       
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #e2ede2 0%, #c8dcc8 50%, #e2ede2 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
            animation: glassShine 20s ease-in-out infinite;
            pointer-events: none;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            backdrop-filter: blur(1px);
            -webkit-backdrop-filter: blur(1px);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
            pointer-events: none;
        }
        
        @keyframes glassShine {
            0%, 100% {
                transform: translate(0, 0);
            }
            50% {
                transform: translate(50px, -50px);
            }
        }
        
        .hero-content {
            text-align: center;
            z-index: 2;
            padding: 0 20px;
        }
        
        .hero-title {
            font-size: 4.5rem;
            font-weight: 700;
            color: #141413;
            margin-bottom: 20px;
            letter-spacing: -2px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: #666;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        /* Laptop Mockup in Hero */
        .hero-mockup {
            margin-top: 60px;
            animation: fadeInUp 1s ease 0.4s both;
        }
        
        /* Content Sections */
        .content-section {
            padding: 100px 50px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #141413;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 20px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: #D2691E;
        }
        
        /* Role and Impact Section */
        .role-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        
        .role-card {
            background: #f8f8f8;
            padding: 20px;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .role-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .role-card h3 {
            font-size: 1.5rem;
            color: #141413;
            margin-bottom: 15px;
        }
        
        .role-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Tools Section */
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .tool-item {
            background: white;
            border: 2px solid #f0f0f0;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .tool-item:hover {
            border-color: #D2691E;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(210, 105, 30, 0.1);
        }
        
        .tool-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 15px;
            background: linear-gradient(135deg, #D2691E 0%, #E5A85C 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
        }
        
        .tool-name {
            font-size: 14px;
            color: #333;
            font-weight: 500;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Card border animation */
        @keyframes purpleBorderPulse {
            0% { border-color: white; }
            50% { border-color: #6b3c5a; }
            100% { border-color: white; }
        }
        
        @keyframes purpleBorderPulseGoal {
            0% { border-color: white; }
            50% { border-color: #6b3c5a; }
            100% { border-color: white; }
        }
        
        .animate-border {
            animation: purpleBorderPulse 2s ease-in-out;
        }
        
        .animate-border-goal {
            animation: purpleBorderPulseGoal 2s ease-in-out;
        }
        
        /* Sticky note hover effect */
        .sticky-note {
            transition: all 0.3s ease;
        }
        
        .sticky-note:hover {
            animation: wiggle 0.4s ease-in-out;
        }
        
        @keyframes wiggle {
            0%, 100% { transform: rotate(var(--rotation)) translateX(0); }
            25% { transform: rotate(var(--rotation)) translateX(-2px); }
            75% { transform: rotate(var(--rotation)) translateX(2px); }
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        
        @keyframes slideSparkle {
            0% { transform: translateX(0); }
            50% { transform: translateX(10px); }
            100% { transform: translateX(0); }
        }
        
        /* Outcome Impact Cards Hover Effect */
        .impact-card:hover {
            transform: translateY(-5px);
            border-top-width: 6px !important;
            box-shadow: 0 10px 30px rgba(107, 60, 90, 0.15);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .side-nav {
                display: none;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .content-section {
                padding: 60px 20px;
            }
        }
        
        /* Paper floating animation */
        @keyframes paperFloat {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-3px) rotate(0.5deg);
            }
            50% {
                transform: translateY(-2px) rotate(-0.3deg);
            }
            75% {
                transform: translateY(-4px) rotate(0.2deg);
            }
        }
        
        @keyframes paperFloat2 {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            30% {
                transform: translateY(-2px) rotate(-0.3deg);
            }
            60% {
                transform: translateY(-4px) rotate(0.4deg);
            }
            90% {
                transform: translateY(-1px) rotate(-0.2deg);
            }
        }
        
        /* Typewriter effect */
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
        
        .typewriter {
            overflow: hidden;
            white-space: nowrap;
            width: 0;
            animation: none;
        }
        
        .typewriter.active {
            animation: typing 2s steps(20, end) forwards;
        }
        
        
        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }